UNPKG

payzli-ui

Version:

A custom react components library

13 lines (12 loc) 320 B
export interface IRadioProps { label?: string | React.ReactNode; value: string; onClick: (event: React.MouseEvent<HTMLInputElement>) => void; name?: string; id?: string; disabled?: boolean; checked?: boolean; size?: "sm" | "md"; children?: React.ReactNode; labelClass?: string; }