UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

19 lines (18 loc) 734 B
import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '../../../core'; export type EmptyStateActionsStylesNames = 'actions'; export interface EmptyStateActionsProps extends BoxProps, CompoundStylesApiProps<EmptyStateActionsFactory>, ElementProps<'div'> { /** Action buttons or controls */ children?: React.ReactNode; } export type EmptyStateActionsFactory = Factory<{ props: EmptyStateActionsProps; ref: HTMLDivElement; stylesNames: EmptyStateActionsStylesNames; compound: true; }>; export declare const EmptyStateActions: import("../../..").MantineComponent<{ props: EmptyStateActionsProps; ref: HTMLDivElement; stylesNames: EmptyStateActionsStylesNames; compound: true; }>;