feat: add size in checkbox

This commit is contained in:
p-sw 2024-05-29 23:11:09 +09:00
parent 01817388c2
commit 9e4e53ee51
2 changed files with 38 additions and 2 deletions

View File

@ -12,21 +12,30 @@ const checkboxColors = {
};
const [checkboxVariant, resolveCheckboxVariantProps] = vcn({
base: `inline-block rounded-md p-1 size-6 ${checkboxColors.checkmark} ${checkboxColors.background.disabled} has-[input[type="checkbox"]:disabled]:cursor-not-allowed transition-colors duration-75 ease-in-out`,
base: `inline-block rounded-md ${checkboxColors.checkmark} ${checkboxColors.background.disabled} has-[input[type="checkbox"]:disabled]:cursor-not-allowed transition-colors duration-75 ease-in-out`,
variants: {
checked: {
true: `${checkboxColors.background.checked}`,
false: `${checkboxColors.background.default}`,
},
size: {
base: "size-[1em] p-0 [&>svg]:size-[1em]",
md: "size-[1.5em] p-0.5 [&>svg]:size-[1.25em]",
lg: "size-[1.75em] p-1 [&>svg]:size-[1.25em]",
},
},
defaults: {
checked: false,
size: "md",
},
});
interface CheckboxProps
extends VariantProps<typeof checkboxVariant>,
Omit<React.ComponentPropsWithoutRef<"input">, "type" | "className"> {}
Omit<
React.ComponentPropsWithoutRef<"input">,
"type" | "className" | "size"
> {}
const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>(
(props, ref) => {

View File

@ -57,3 +57,30 @@ export const Disabled = () => {
</Label>
);
};
export const BaseSize = () => {
return (
<Label direction="horizontal">
<Checkbox size="base" />
<span>Base</span>
</Label>
);
};
export const MediumSize = () => {
return (
<Label direction="horizontal">
<Checkbox size="md" />
<span>Medium</span>
</Label>
);
};
export const LargeSize = () => {
return (
<Label direction="horizontal">
<Checkbox size="lg" />
<span>Large</span>
</Label>
);
};