UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

12 lines (11 loc) 447 B
import { PropsWithChildren } from 'react'; interface HelperTextProps { invalid?: boolean; } /** * The HelperText component is an abstraction for hiding the helper text * when the field is invalid. Ark UI assumes people want the helper text * to always be visible, so this is a workaround for that. */ export declare function HelperText(props: PropsWithChildren<HelperTextProps>): import("react/jsx-runtime").JSX.Element | null; export {};