@hhgtech/hhg-components
Version:
Hello Health Group common components
21 lines (20 loc) • 647 B
TypeScript
import React from 'react';
export type Props = {
size?: 'small' | 'large';
label: string;
name: string;
value: string;
checked?: boolean;
className?: string;
isDisabled?: boolean;
onChange: (v: string) => void;
dataEventCategory?: string;
dataEventAction?: string;
dataEventLabel?: string;
type?: string;
};
/**
* @deprecated Consider to use import { Radio } from '@mantine/core'
*/
declare const Radio: ({ size, label, name, checked, value, className, isDisabled, onChange, dataEventCategory, dataEventAction, dataEventLabel, }: Props) => React.JSX.Element;
export { Radio };