UNPKG

@itgold/grandbazar-ui-kit

Version:

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

8 lines (7 loc) 239 B
import { ReactNode } from 'react'; export type TCardsGridProps = { children: ReactNode; cardsWidth: number; gap: number; }; export declare function CardsGrid({ children, gap, cardsWidth }: TCardsGridProps): React.ReactElement;