UNPKG

@devopness/ui-react

Version:

Devopness Design System React Components - Painless essential DevOps to everyone

19 lines (18 loc) 499 B
type FormLoadingProps = { /** Optional aria-label for accessibility */ ariaLabel?: string; }; /** * FormLoading * * Displays a structured skeleton UI for forms. * Includes placeholders for title, paragraphs, a separator line, and buttons. * * @example * ```tsx * <FormLoading ariaLabel="Loading form data" /> * ``` */ declare const FormLoading: ({ ariaLabel }: FormLoadingProps) => import("react/jsx-runtime").JSX.Element; export { FormLoading }; export type { FormLoadingProps };