UNPKG

@amsterdam/design-system-react

Version:

All React components from the Amsterdam Design System. Use it to compose pages in your website or application.

9 lines (8 loc) 417 B
/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { GridColumnNumber, GridColumnNumbers } from './Grid'; import type { GridCellProps } from './GridCell'; export declare const addGridClass: (prefix: string, value?: GridColumnNumber | GridColumnNumbers | "all") => string[]; export declare const gridCellClasses: (colSpan?: GridCellProps["span"], colStart?: GridCellProps["start"]) => string[];