@rarcifa/cronos-design-system
Version:
A typescript react component library following the Cronos branding standards
16 lines (15 loc) • 367 B
TypeScript
import { ReactNode } from 'react';
export interface GridProps {
/**
* Children components to be rendered inside the component.
*/
children: ReactNode;
/**
* Optional number for columns. By default this is 3.
*/
columns?: number;
/**
* Optional boolean for inline display.
*/
isInline?: boolean;
}