UNPKG

@orfeas126/box-ui-elements

Version:
14 lines (13 loc) 454 B
import * as React from 'react'; import './RadioButton.scss'; export interface RadioButtonProps { description?: React.ReactNode; hideLabel?: boolean; isDisabled?: boolean; isSelected?: boolean; label: React.ReactNode; name?: string; value: string; } declare const RadioButton: ({ isDisabled, isSelected, description, hideLabel, label, name, value, ...rest }: RadioButtonProps) => React.JSX.Element; export default RadioButton;