Files
MattrixwvReactComponents/lib/component/input/radio/LightRadioButton.tsx

20 lines
350 B
TypeScript

import type { RadioButtonProps } from "$/types/InputTypes";
import clsx from "clsx";
import RadioButton from "./RadioButton";
export default function LightRadioButton({
className,
...props
}: Readonly<RadioButtonProps>){
return (
<RadioButton
className={clsx(
"group-data-checked:bg-light",
className
)}
{...props}
/>
);
}