UNPKG

@itgold/grandbazar-ui-kit

Version:

Grandbazar.io UI component library: React, Typescript, Tailwind, Rollup, Storybook, Jest.

12 lines (9 loc) 215 B
import { createContext } from 'react'; export type TCardContext = { theme: 'dark' | 'light'; isLink: boolean; }; export const CardContext = createContext<TCardContext>({ theme: 'light', isLink: false, });