import { createVariant } from "@shopify/restyle"; import type { Theme } from "@themes/Theme"; export const cardVariants = createVariant({ themeKey: "cardVariants", }); export const buttonVariants = createVariant({ themeKey: "buttonVariants", }); export const textVariants = createVariant({ themeKey: "textVariants", defaults: { fontSize: 16, fontWeight: "normal", color: "gray", }, });