mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 19:00:56 +00:00
17 lines
631 B
TypeScript
17 lines
631 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;
|
|
}
|
|
export type LevelsGroupFactory = Factory<{
|
|
props: LevelsGroupProps;
|
|
ref: HTMLDivElement;
|
|
stylesNames: LevelsGroupStylesNames;
|
|
}>;
|
|
export declare const LevelsGroup: import("@mantine/core").MantineComponent<{
|
|
props: LevelsGroupProps;
|
|
ref: HTMLDivElement;
|
|
stylesNames: LevelsGroupStylesNames;
|
|
}>;
|