@empoleon/spotlight
Version:
Command center components for react and Empoleon
17 lines (16 loc) • 643 B
TypeScript
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '@empoleon/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("@empoleon/core").EmpoleonComponent<{
props: SpotlightEmptyProps;
ref: HTMLDivElement;
stylesNames: SpotlightEmptyStylesNames;
compound: true;
}>;