UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

19 lines (18 loc) 777 B
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '../../../core'; export type EmptyStateDescriptionStylesNames = 'description'; export interface EmptyStateDescriptionProps extends BoxProps, CompoundStylesApiProps<EmptyStateDescriptionFactory>, ElementProps<'p'> { /** Description content */ children?: React.ReactNode; } export type EmptyStateDescriptionFactory = Factory<{ props: EmptyStateDescriptionProps; ref: HTMLParagraphElement; stylesNames: EmptyStateDescriptionStylesNames; compound: true; }>; export declare const EmptyStateDescription: import("../../..").MantineComponent<{ props: EmptyStateDescriptionProps; ref: HTMLParagraphElement; stylesNames: EmptyStateDescriptionStylesNames; compound: true; }>;