@react-beauty/ui-empty-state
Version:
ui-empty-state
6 lines (5 loc) • 316 B
TypeScript
import { HTMLAttributes } from 'react';
export interface EmptyStateDescriptionProps extends HTMLAttributes<HTMLHeadingElement> {
children: string;
}
export declare const EmptyStateDescription: import('react').ForwardRefExoticComponent<EmptyStateDescriptionProps & import('react').RefAttributes<HTMLDivElement>>;