@mantine/dates
Version:
Calendars, date and time pickers based on Mantine components
19 lines (18 loc) • 755 B
TypeScript
import { BoxProps, ElementProps, Factory, MantineSize, StylesApiProps } from '@mantine/core';
export type LevelsGroupStylesNames = 'levelsGroup';
export interface LevelsGroupProps extends BoxProps, StylesApiProps<LevelsGroupFactory>, ElementProps<'div'> {
__staticSelector?: string;
size?: MantineSize;
/** Determines whether the group should take the full width of its container @default false */
fullWidth?: boolean;
}
export type LevelsGroupFactory = Factory<{
props: LevelsGroupProps;
ref: HTMLDivElement;
stylesNames: LevelsGroupStylesNames;
}>;
export declare const LevelsGroup: import("@mantine/core").MantineComponent<{
props: LevelsGroupProps;
ref: HTMLDivElement;
stylesNames: LevelsGroupStylesNames;
}>;