Create background image component

This commit is contained in:
RadoslavDimchev 2023-07-21 20:19:16 +03:00
parent e41d0e4e3e
commit a3a0a015be
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import { styled } from "tamagui";
const BackgroundImage = styled("div", {
boxShadow: "inset 100px 0px 100px white",
width: "650px",
height: "100vh",
});
export { BackgroundImage };

View File

@ -0,0 +1 @@
export { BackgroundImage } from "./BackgroundImage";