UNPKG

@masaischool/lotus

Version:

Masai UI component library designed to work seamlessly with Chakra UI

12 lines (11 loc) 482 B
import React from 'react'; export interface Props { label?: string | React.ReactElement; support_label?: string; value?: string; size?: 'regular' | 'large'; disabled?: boolean; extraReactElement?: React.ReactElement; extraReactElementValueOnClick?: (value: string) => void; } export declare const RadioButton: ({ label, support_label, value, size, disabled, extraReactElement, extraReactElementValueOnClick, ...props }: Props) => JSX.Element;