Create background image component
This commit is contained in:
parent
e41d0e4e3e
commit
a3a0a015be
|
@ -0,0 +1,9 @@
|
|||
import { styled } from "tamagui";
|
||||
|
||||
const BackgroundImage = styled("div", {
|
||||
boxShadow: "inset 100px 0px 100px white",
|
||||
width: "650px",
|
||||
height: "100vh",
|
||||
});
|
||||
|
||||
export { BackgroundImage };
|
|
@ -0,0 +1 @@
|
|||
export { BackgroundImage } from "./BackgroundImage";
|
Loading…
Reference in New Issue