Skip to content

Commit

Permalink
refactor: 변경된 타입에 맞게 수정(Icon 컴포넌트 name)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kjiw0n committed Nov 30, 2024
1 parent b2acfb8 commit e4a7724
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/components/common/v2/TextBox/DumpingAreaBtn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { useState } from 'react';
import Icon from '../../Icon';
import Button from '../button/Button';

import Icn from '@/assets/svg/V2';
import { theme } from '@/styles/theme';

const STATE = {
Expand Down Expand Up @@ -69,13 +68,7 @@ function DumpingAreaBtn() {
</div>
</DumpingAreaWrapper>
{(state === STATE.TYPING || state === STATE.FIELD) && (
<Button
type="outlined-primary"
size="small"
disabled={false}
label="마감 기간/시간"
leftIcon={<Icn.IcnPlus />}
/>
<Button type="outlined-primary" size="small" disabled={false} label="마감 기간/시간" leftIcon="IcnPlus" />
)}
</DumpingAreaContainer>
);
Expand Down

0 comments on commit e4a7724

Please sign in to comment.