From bace721769f9219f9df3b45f254dda98023c946d Mon Sep 17 00:00:00 2001 From: Han Yeong-woo Date: Tue, 19 Sep 2023 18:49:46 +0900 Subject: [PATCH] refactor: structure related with svg --- apps/portfolio/src/components/Header.astro | 4 ++-- apps/portfolio/src/components/WorkCard.astro | 2 +- apps/portfolio/src/components/pages/index/About.astro | 8 ++++---- .../components/{ => svgs}/icons/EnvelopeSimpleIcon.astro | 2 +- .../src/components/{ => svgs}/icons/GitHubIcon.astro | 2 +- .../{ => svgs}/icons/PencilSimpleLineIcon.astro | 2 +- .../src/components/{ => svgs}/icons/TechIcon.astro | 2 +- .../src/{ => components/svgs/icons}/icon-path.ts | 0 apps/portfolio/src/components/{icons => svgs}/types.ts | 0 9 files changed, 11 insertions(+), 11 deletions(-) rename apps/portfolio/src/components/{ => svgs}/icons/EnvelopeSimpleIcon.astro (90%) rename apps/portfolio/src/components/{ => svgs}/icons/GitHubIcon.astro (97%) rename apps/portfolio/src/components/{ => svgs}/icons/PencilSimpleLineIcon.astro (91%) rename apps/portfolio/src/components/{ => svgs}/icons/TechIcon.astro (78%) rename apps/portfolio/src/{ => components/svgs/icons}/icon-path.ts (100%) rename apps/portfolio/src/components/{icons => svgs}/types.ts (100%) diff --git a/apps/portfolio/src/components/Header.astro b/apps/portfolio/src/components/Header.astro index 9a0a499..0b9b349 100644 --- a/apps/portfolio/src/components/Header.astro +++ b/apps/portfolio/src/components/Header.astro @@ -1,8 +1,8 @@ --- import Links from '../core/links.js'; -import { listIconPath } from '../icon-path.js'; import Button from './Button.astro'; import InternalLink from './InternalLink.astro'; +import { listIconPath } from './svgs/icons/icon-path.js'; export type { Props as HeaderProps }; @@ -69,7 +69,7 @@ const NAV_ID = 'nav-menu';