Skip to content

Commit

Permalink
style : children 없으면 gap 없도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SeieunYoo committed Jun 7, 2024
1 parent 6defba6 commit 0e819a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wow-ui/src/components/Checkbox/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const Checkbox = forwardRef<HTMLInputElement, CheckboxProps>(
cursor={disabled ? "none" : "pointer"}
display="flex"
flexDirection={position === "vertical" ? "column-reverse" : "row"}
gap="xs"
gap={children ? "xs" : "0px"}
htmlFor={id}
pointerEvents={disabled ? "none" : "auto"}
width="fit-content"
Expand Down

0 comments on commit 0e819a0

Please sign in to comment.