Skip to content

Commit

Permalink
Refactor: 불필요한 type 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
pp449 committed Apr 9, 2023
1 parent 2d272c7 commit f499fdb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/FooterTab/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ type IconKind =
| 'menu'
| 'arrowBack';

type IconContainerProps = {
onClick: () => void;
};

const PRIMARY_COLOR = '#71BC5C'; // 해당 상수는 추후 color 파일이 만들어지면 대체될 예정
const BLACK_COLOR = 'black';

Expand Down Expand Up @@ -67,7 +63,7 @@ const Footer = styled.div`
background: white;
`;

const IconContainer = styled.div<IconContainerProps>`
const IconContainer = styled.div`
width: 100%;
text-align: center;
&: hover {
Expand Down

0 comments on commit f499fdb

Please sign in to comment.