@mantine/spotlight
Version:
Command center components for react and Mantine
17 lines (16 loc) • 721 B
TypeScript
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '@mantine/core';
export type SpotlightActionsListStylesNames = 'actionsList' | 'actionsListInner';
export interface SpotlightActionsListProps extends BoxProps, CompoundStylesApiProps<SpotlightActionsListFactory>, ElementProps<'div'> {
}
export type SpotlightActionsListFactory = Factory<{
props: SpotlightActionsListProps;
ref: HTMLDivElement;
stylesNames: SpotlightActionsListStylesNames;
compound: true;
}>;
export declare const SpotlightActionsList: import("@mantine/core").MantineComponent<{
props: SpotlightActionsListProps;
ref: HTMLDivElement;
stylesNames: SpotlightActionsListStylesNames;
compound: true;
}>;