UNPKG

baseui

Version:

A React Component library implementing the Base design language

14 lines (13 loc) 744 B
import { StyledGrid, StyledCell } from './styled-components'; import Grid from './grid'; import Cell from './cell'; import type { CSSLengthUnit } from './types'; export { StyledGrid, StyledCell, Grid, Cell }; export * from './constants'; export declare const Unstable_StyledGrid: import("styletron-react").StyletronComponent<"div", import("./types").StyledGridProps>; export declare const Unstable_StyledCell: import("styletron-react").StyletronComponent<"div", import("./types").StyledCellProps>; export declare const Unstable_Grid: typeof Grid; export declare const Unstable_Cell: typeof Cell; export * from './types'; /** @deprecated use CSSLengthUnit instead. To be removed in future versions.*/ export type CSSLengthUnitT = CSSLengthUnit;