box-ui-elements-mlh
Version:
14 lines (13 loc) • 448 B
TypeScript
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) => JSX.Element;
export default RadioButton;