Skip to content

Commit

Permalink
chore: 자잘한 수정사항 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
ghdtjgus76 committed Jun 14, 2024
1 parent 07d2b08 commit eeb3f7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/wow-ui/src/components/MultiGroup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export interface MultiGroupProps<T extends VariantType> {

const MultiGroup = <T extends VariantType>({
position,
gap: gapProp,
gap,
children,
name,
defaultValue,
Expand Down Expand Up @@ -89,7 +89,7 @@ const MultiGroup = <T extends VariantType>({
return (
<Flex
direction={position === "horizontal" ? "row" : "column"}
gap={gapProp ? gapProp : "xs"}
gap={gap ? gap : "xs"}
width="fit-content"
{...rest}
>
Expand Down

0 comments on commit eeb3f7b

Please sign in to comment.