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

20 lines
342 B
TypeScript

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