UNPKG

@it-corp/vpbank-spotlight

Version:

Command center components for react and VPbank components

17 lines (16 loc) 735 B
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from "@it-corp/vpbank-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("@it-corp/vpbank-core").MantineComponent<{ props: SpotlightActionsListProps; ref: HTMLDivElement; stylesNames: SpotlightActionsListStylesNames; compound: true; }>;