@empoleon/spotlight
Version:
Command center components for react and Empoleon
22 lines (21 loc) • 862 B
TypeScript
import { JSX } from 'solid-js';
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '@empoleon/core';
export type SpotlightActionsGroupStylesNames = 'actionsGroup';
export interface SpotlightActionsGroupProps extends BoxProps, CompoundStylesApiProps<SpotlightActionsGroupFactory>, ElementProps<'div'> {
/** `Spotlight.Action` components */
children?: JSX.Element;
/** Group label */
label?: JSX.Element;
}
export type SpotlightActionsGroupFactory = Factory<{
props: SpotlightActionsGroupProps;
ref: HTMLDivElement;
stylesNames: SpotlightActionsGroupStylesNames;
compound: true;
}>;
export declare const SpotlightActionsGroup: import("@empoleon/core").EmpoleonComponent<{
props: SpotlightActionsGroupProps;
ref: HTMLDivElement;
stylesNames: SpotlightActionsGroupStylesNames;
compound: true;
}>;