@mantine/spotlight
Version:
Command center components for react and Mantine
17 lines (16 loc) • 640 B
TypeScript
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '@mantine/core';
export type SpotlightEmptyStylesNames = 'empty';
export interface SpotlightEmptyProps extends BoxProps, CompoundStylesApiProps<SpotlightEmptyFactory>, ElementProps<'div'> {
}
export type SpotlightEmptyFactory = Factory<{
props: SpotlightEmptyProps;
ref: HTMLDivElement;
stylesNames: SpotlightEmptyStylesNames;
compound: true;
}>;
export declare const SpotlightEmpty: import("@mantine/core").MantineComponent<{
props: SpotlightEmptyProps;
ref: HTMLDivElement;
stylesNames: SpotlightEmptyStylesNames;
compound: true;
}>;