Skip to content

Commit

Permalink
(#0) Icon import Path 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
baegofda committed Nov 29, 2023
1 parent 7aaa0c8 commit 04a9394
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/core/components/Checkbox/index.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion src/core/components/Drawer/index.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion src/core/components/Input/InputPassword/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
2 changes: 1 addition & 1 deletion src/core/components/Input/InputSearch/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
2 changes: 1 addition & 1 deletion src/core/components/Input/InputTextField/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down

0 comments on commit 04a9394

Please sign in to comment.