mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-06 21:53:57 -05:00
20 lines
340 B
TypeScript
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}
|
|
/>
|
|
);
|
|
}
|