@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
15 lines • 595 B
TypeScript
import React from 'react';
import { DefaultProps, MantineNumberSize } from '../../theme';
export interface ColProps extends DefaultProps, React.ComponentPropsWithoutRef<'div'> {
span: number;
columns?: number;
offset?: number;
gutter?: MantineNumberSize;
grow?: boolean;
}
export declare function isValidSpan(span: number): boolean;
export declare function Col({ themeOverride, children, span, gutter, offset, grow, style, columns, className, ...others }: ColProps): JSX.Element;
export declare namespace Col {
var displayName: string;
}
//# sourceMappingURL=Col.d.ts.map