UNPKG

@coconut-software/ui

Version:

React components for faster and easier web development.

7 lines (6 loc) 231 B
import type { PropsWithChildren } from 'react'; interface RadioLabelProps { helperText?: string; } declare function Label({ children, helperText, }: PropsWithChildren<RadioLabelProps>): JSX.Element; export default Label;