Skip to content

Commit d04f493

Browse files
RookieANDclaude
andcommitted
fix: 아이콘 import 경로를 소문자 폴더명으로 수정
- app/icons/page.tsx의 import 경로 수정 - IconBase를 사용하는 아이콘 컴포넌트의 import 경로 수정 - type import를 명시적으로 분리 Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 36a0903 commit d04f493

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

app/icons/page.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { ArrowLeftIcon } from '#/components/ArrowLeftIcon';
2-
import { ChevronRightIcon } from '#/components/ChevronRightIcon';
3-
import { CircleIcon } from '#/components/CircleIcon';
4-
import { CrownIcon } from '#/components/CrownIcon';
5-
import { HeartIcon } from '#/components/HeartIcon';
6-
import { StarIcon } from '#/components/StarIcon';
7-
import { XIcon } from '#/components/XIcon';
1+
import { ArrowLeftIcon } from '#/components/arrowLeftIcon';
2+
import { ChevronRightIcon } from '#/components/chevronRightIcon';
3+
import { CircleIcon } from '#/components/circleIcon';
4+
import { CrownIcon } from '#/components/crownIcon';
5+
import { HeartIcon } from '#/components/heartIcon';
6+
import { StarIcon } from '#/components/starIcon';
7+
import { XIcon } from '#/components/xIcon';
88

99
type IconGridItemProps = {
1010
name: string;

src/components/chevronRightIcon/ChevronRightIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IconBase, IconBaseProps } from "../IconBase";
1+
import { IconBase, type IconBaseProps } from "../iconBase";
22

33
export type ChevronRightIconProps = Omit<IconBaseProps, "children">;
44

src/components/circleIcon/CircleIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IconBase, IconBaseProps } from "../IconBase";
1+
import { IconBase, type IconBaseProps } from "../iconBase";
22

33
export type CircleIconProps = Omit<IconBaseProps, "children">;
44

src/components/xIcon/XIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { IconBase, IconBaseProps } from "../IconBase";
1+
import { IconBase, type IconBaseProps } from "../iconBase";
22

33
export type XIconProps = Omit<IconBaseProps, "children">;
44

0 commit comments

Comments
 (0)