UNPKG

@spaced-out/ui-design-system

Version:
20 lines 701 B
import * as React from 'react'; export type RowProps = { className?: string; children?: React.ReactNode; span?: number; offset?: number; gridType?: 'small' | 'medium' | 'large' | 'autoFill' | 'autoFit'; repeatTracks?: string; }; export declare const Row: ({ className, children, span, gridType, repeatTracks, }: RowProps) => React.JSX.Element; export type ColProps = { className?: string; children?: React.ReactNode; span?: number; offset?: number; gridColumnStart?: number; gridColumnEnd?: number; }; export declare const Col: ({ className, children, gridColumnStart, gridColumnEnd, }: ColProps) => React.JSX.Element; //# sourceMappingURL=Grid.d.ts.map