UNPKG

@uva-glass/component-library

Version:

React components UvA

17 lines (16 loc) 834 B
import { PropsWithChildren } from 'react'; type spacing = '0' | '025' | '050' | '075' | '100' | '125' | '150' | '175' | '200' | '250' | '300' | '350'; export interface GridRowProps { /** The horizontal padding between columns. */ gutter?: spacing; /** The vertical padding (at the bottom) between rows. */ marginBottom?: spacing; /** The vertical padding (at the top) between rows. */ marginTop?: spacing; } /** Represents a component for a grid. */ export declare const GridRow: { ({ gutter, marginBottom, marginTop, children, }: PropsWithChildren<GridRowProps>): import("react/jsx-runtime").JSX.Element; Column: ({ size, mediumSize, startPositon, mediumStartPosition, position, children, }: PropsWithChildren<import('./Column').ColumnProps>) => import("react/jsx-runtime").JSX.Element; }; export {};