UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

19 lines (18 loc) 746 B
import type { GridCssVariables, GridFactory, GridProps, GridStylesNames } from './Grid'; import type { GridContextValue } from './Grid.context'; import type { GridColProps } from './GridCol/GridCol'; export { Grid } from './Grid'; export { GridCol } from './GridCol/GridCol'; export { useGridContext } from './Grid.context'; export type { GridCssVariables, GridFactory, GridProps, GridStylesNames, GridColProps, GridContextValue, }; export declare namespace Grid { type Props = GridProps; type Factory = GridFactory; type StylesNames = GridStylesNames; type CssVariables = GridCssVariables; type ColProps = GridColProps; type ContextValue = GridContextValue; namespace Col { type Props = GridColProps; } }