UNPKG

robust-react-ui

Version:

A React component library, built with a focus on accessibility, extensibility and reusability.

11 lines (10 loc) 260 B
import React from 'react'; export interface IGridProps { children: React.ReactNode; /** * Vertical horizontal spacing between grid items * @default s */ gap?: 'xxs' | 'xs' | 's' | 'm' | 'l'; type?: 'fixed' | 'fluid'; }