import { InputHTMLAttributes, forwardRef } from 'react';
import cx from 'clsx';
import styles from './radio.module.scss';
type Props = InputHTMLAttributes & {
label: string;
};
const Radio = forwardRef(({ label, className, ...attrs }, ref) => {
const { disabled } = attrs;
return (
);
});
export { Radio };
export type { Props as RadioProps };