@gobistories/gobi-web-integration
Version:
This library will let you put your Gobi stories on your site.
14 lines (13 loc) • 579 B
TypeScript
export interface CardsContainerProps {
$wrap: boolean;
scroll: boolean;
justify: 'start' | 'end' | 'center' | 'left' | 'right' | 'space-around' | 'space-between';
gap: string;
cardSize: number;
}
export declare const CardsPadding: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
cardSize: number;
$wrap: boolean;
scroll: boolean;
}, never>;
export declare const CardsContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, CardsContainerProps, never>;