From 04a939484b4d6426fa85c059c6621301fbda1385 Mon Sep 17 00:00:00 2001 From: baegofda Date: Wed, 29 Nov 2023 13:37:35 +0900 Subject: [PATCH] =?UTF-8?q?(#0)=20Icon=20import=20Path=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/components/Checkbox/index.tsx | 2 +- src/core/components/Drawer/index.tsx | 2 +- src/core/components/Input/InputPassword/index.tsx | 2 +- src/core/components/Input/InputSearch/index.tsx | 2 +- src/core/components/Input/InputTextField/index.tsx | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/core/components/Checkbox/index.tsx b/src/core/components/Checkbox/index.tsx index fec7040..82f021a 100644 --- a/src/core/components/Checkbox/index.tsx +++ b/src/core/components/Checkbox/index.tsx @@ -1,7 +1,7 @@ import clsx from "clsx"; import { forwardRef, useId } from "react"; -import { CheckCircle, CheckSquare } from "@phosphor-icons/react/dist/ssr"; +import { CheckCircle, CheckSquare } from "@phosphor-icons/react"; import Typography from "../Typography"; import { CHECKBOX_SVG_SIZE, SVG_SIZE } from "./constants"; import { CheckboxProps } from "./types"; diff --git a/src/core/components/Drawer/index.tsx b/src/core/components/Drawer/index.tsx index 81f2db5..414c8eb 100644 --- a/src/core/components/Drawer/index.tsx +++ b/src/core/components/Drawer/index.tsx @@ -1,7 +1,7 @@ import clsx from "clsx"; import { PropsWithChildren, forwardRef } from "react"; -import { X } from "@phosphor-icons/react/dist/ssr"; +import { X } from "@phosphor-icons/react"; import ModalBase from "../Modal/ModalBase"; import Section from "../Section"; import Typography from "../Typography"; diff --git a/src/core/components/Input/InputPassword/index.tsx b/src/core/components/Input/InputPassword/index.tsx index a42eda3..8bb22c3 100644 --- a/src/core/components/Input/InputPassword/index.tsx +++ b/src/core/components/Input/InputPassword/index.tsx @@ -2,7 +2,7 @@ import clsx from "clsx"; import { forwardRef, useId, useState } from "react"; import { useInput } from "@/core/components/Input/hooks/useInput"; -import { Eye, EyeSlash } from "@phosphor-icons/react/dist/ssr"; +import { Eye, EyeSlash } from "@phosphor-icons/react"; import InputBase from "../InputBase"; import { InputPasswordProps } from "./types"; diff --git a/src/core/components/Input/InputSearch/index.tsx b/src/core/components/Input/InputSearch/index.tsx index dc77bd9..05d28e2 100644 --- a/src/core/components/Input/InputSearch/index.tsx +++ b/src/core/components/Input/InputSearch/index.tsx @@ -2,7 +2,7 @@ import clsx from "clsx"; import { forwardRef, useId, useRef } from "react"; import { useInput } from "@/core/components/Input/hooks/useInput"; -import { MagnifyingGlass } from "@phosphor-icons/react/dist/ssr"; +import { MagnifyingGlass } from "@phosphor-icons/react"; import InputBase from "../InputBase"; import { InputSearchProps } from "./types"; diff --git a/src/core/components/Input/InputTextField/index.tsx b/src/core/components/Input/InputTextField/index.tsx index df2f3ff..7c9b8c9 100644 --- a/src/core/components/Input/InputTextField/index.tsx +++ b/src/core/components/Input/InputTextField/index.tsx @@ -2,7 +2,7 @@ import clsx from "clsx"; import { forwardRef, useId } from "react"; import { useInput } from "@/core/components/Input/hooks/useInput"; -import { XCircle } from "@phosphor-icons/react/dist/ssr"; +import { XCircle } from "@phosphor-icons/react"; import InputBase from "../InputBase"; import { InputTextFieldProps } from "./types";