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

20 lines
340 B
TypeScript

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