mirror of
https://bitbucket.org/Mattrixwv/mattrixwvreactcomponents.git
synced 2025-12-07 14:13:58 -05:00
20 lines
341 B
TypeScript
20 lines
341 B
TypeScript
import type { RadioButtonProps } from "$/types/Input";
|
|
import clsx from "clsx";
|
|
import RadioButton from "./RadioButton";
|
|
|
|
|
|
export default function MoltenRadioButton({
|
|
className,
|
|
...props
|
|
}: RadioButtonProps){
|
|
return (
|
|
<RadioButton
|
|
className={clsx(
|
|
"group-data-checked:bg-orange-600",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|