UNPKG

@it-corp/vpbank-spotlight

Version:

Command center components for react and VPbank components

22 lines (21 loc) 876 B
import React from "react"; import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from "@it-corp/vpbank-core"; export type SpotlightActionsGroupStylesNames = "actionsGroup"; export interface SpotlightActionsGroupProps extends BoxProps, CompoundStylesApiProps<SpotlightActionsGroupFactory>, ElementProps<"div"> { /** `Spotlight.Action` components */ children?: React.ReactNode; /** Group label */ label?: React.ReactNode; } export type SpotlightActionsGroupFactory = Factory<{ props: SpotlightActionsGroupProps; ref: HTMLDivElement; stylesNames: SpotlightActionsGroupStylesNames; compound: true; }>; export declare const SpotlightActionsGroup: import("@it-corp/vpbank-core").MantineComponent<{ props: SpotlightActionsGroupProps; ref: HTMLDivElement; stylesNames: SpotlightActionsGroupStylesNames; compound: true; }>;