UNPKG

@spaced-out/ui-design-system

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