UNPKG

@coconut-software/ui

Version:

React components for faster and easier web development.

10 lines (9 loc) 312 B
import type { PropsWithChildren } from 'react'; interface RadioLabelProps { /** * Additional descriptive text to display below the label */ helperText?: string; } declare function Label({ children, helperText, }: PropsWithChildren<RadioLabelProps>): JSX.Element; export default Label;