@mantine/spotlight
Version:
Command center components for react and Mantine
17 lines (16 loc) • 650 B
TypeScript
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '@mantine/core';
export type SpotlightFooterStylesNames = 'footer';
export interface SpotlightFooterProps extends BoxProps, CompoundStylesApiProps<SpotlightFooterFactory>, ElementProps<'div'> {
}
export type SpotlightFooterFactory = Factory<{
props: SpotlightFooterProps;
ref: HTMLDivElement;
stylesNames: SpotlightFooterStylesNames;
compound: true;
}>;
export declare const SpotlightFooter: import("@mantine/core").MantineComponent<{
props: SpotlightFooterProps;
ref: HTMLDivElement;
stylesNames: SpotlightFooterStylesNames;
compound: true;
}>;