diff --git a/src/components/Card.tsx b/src/components/Card.tsx new file mode 100644 index 0000000..9981d40 --- /dev/null +++ b/src/components/Card.tsx @@ -0,0 +1,11 @@ +import { type BoxProps, type VariantProps, createRestyleComponent } from "@shopify/restyle"; +import type { Theme } from "@themes/Theme"; +import { cardVariants } from "@themes/Variants"; +import Box from "./bases/Box"; + +const Card = createRestyleComponent & BoxProps, Theme>( + [cardVariants], + Box, +); + +export default Card;