Skip to content

Commit c3e703d

Browse files
Fix/dropdown: Flexbox 수정사항 반영 (#37)
* fix: flexbox props 수정 반영 * fix: 불필요한 import 삭제
1 parent 14da6b2 commit c3e703d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Dropdown/index.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { css } from '@emotion/react';
33
import styled from '@emotion/styled';
44
import { DefaultProps } from '@utils/types/DefaultProps';
55
import { DefaultPropsWithChildren } from '@utils/types/DefaultPropsWithChildren';
6-
import React, { MouseEvent, MouseEventHandler, ReactNode, useRef } from 'react';
6+
import { MouseEvent, MouseEventHandler, ReactNode, useRef } from 'react';
77
import { IconType } from 'react-icons/lib';
88

99
type DropdownAlign = 'left' | 'right' | 'center';
@@ -59,7 +59,7 @@ const DropdownItem = ({
5959
</Flexbox>
6060
)}
6161
<Flexbox
62-
direction="column"
62+
flexDirection="column"
6363
gap=".3rem"
6464
alignItems="center"
6565
css={css`

0 commit comments

Comments
 (0)