Radio Button and Checkbox Created

This commit is contained in:
2025-07-30 23:10:17 -04:00
parent cb8c2c23be
commit f6f77c9d42
29 changed files with 892 additions and 18 deletions

View File

@@ -0,0 +1,19 @@
import type { RadioButtonProps } from "$/types/Input";
import clsx from "clsx";
import RadioButton from "./RadioButton";
export default function SecondaryRadioButton({
className,
...props
}: RadioButtonProps){
return (
<RadioButton
className={clsx(
"group-data-checked:bg-neutral-600",
className
)}
{...props}
/>
);
}