From 49f25a91a311f7a18e1d6b51c1db0074120f3e36 Mon Sep 17 00:00:00 2001 From: seungboshim Date: Sun, 1 Dec 2024 11:53:41 +0900 Subject: [PATCH 1/7] =?UTF-8?q?feat:=20Header=20=EC=BB=B4=ED=8F=AC?= =?UTF-8?q?=EB=84=8C=ED=8A=B8=20=EA=B5=AC=ED=98=84(DURI-320)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/ui/src/assets/Doori.tsx | 9 ++- packages/ui/src/assets/Favicon.tsx | 33 +++++++++++ packages/ui/src/assets/Logo.tsx | 16 ++++++ packages/ui/src/assets/Magnifier.tsx | 6 +- packages/ui/src/assets/Notification.tsx | 10 ++-- packages/ui/src/assets/index.tsx | 1 + packages/ui/src/assets/svgs/Doori.svg | 3 + packages/ui/src/assets/svgs/Notification.svg | 6 ++ packages/ui/src/components/Header/Header.tsx | 57 +++++++++++++++++++ packages/ui/src/components/Header/index.tsx | 1 + packages/ui/src/components/index.tsx | 1 + .../src/stories/components/Header.stories.tsx | 50 ++++++++++++++++ 12 files changed, 181 insertions(+), 12 deletions(-) create mode 100644 packages/ui/src/assets/Favicon.tsx create mode 100644 packages/ui/src/assets/Logo.tsx create mode 100644 packages/ui/src/assets/svgs/Doori.svg create mode 100644 packages/ui/src/assets/svgs/Notification.svg create mode 100644 packages/ui/src/components/Header/Header.tsx create mode 100644 packages/ui/src/components/Header/index.tsx create mode 100644 packages/ui/src/stories/components/Header.stories.tsx diff --git a/packages/ui/src/assets/Doori.tsx b/packages/ui/src/assets/Doori.tsx index 7879a326..2b56ab63 100644 --- a/packages/ui/src/assets/Doori.tsx +++ b/packages/ui/src/assets/Doori.tsx @@ -2,14 +2,13 @@ import * as React from 'react'; const SvgDoori = (props: React.SVGProps) => ( - ); diff --git a/packages/ui/src/assets/Favicon.tsx b/packages/ui/src/assets/Favicon.tsx new file mode 100644 index 00000000..4ffd27e0 --- /dev/null +++ b/packages/ui/src/assets/Favicon.tsx @@ -0,0 +1,33 @@ +import * as React from 'react'; +const SvgFavicon = (props) => ( + + + + + + + + + + + +); +export default SvgFavicon; diff --git a/packages/ui/src/assets/Logo.tsx b/packages/ui/src/assets/Logo.tsx new file mode 100644 index 00000000..36d5bac5 --- /dev/null +++ b/packages/ui/src/assets/Logo.tsx @@ -0,0 +1,16 @@ +import * as React from 'react'; +const SvgLogo = (props) => ( + + + + +); +export default SvgLogo; diff --git a/packages/ui/src/assets/Magnifier.tsx b/packages/ui/src/assets/Magnifier.tsx index 640835c3..d2fed3a5 100644 --- a/packages/ui/src/assets/Magnifier.tsx +++ b/packages/ui/src/assets/Magnifier.tsx @@ -2,13 +2,13 @@ import * as React from 'react'; const SvgMagnifier = (props: React.SVGProps) => ( diff --git a/packages/ui/src/assets/Notification.tsx b/packages/ui/src/assets/Notification.tsx index 3d0fdbe6..4a3ae069 100644 --- a/packages/ui/src/assets/Notification.tsx +++ b/packages/ui/src/assets/Notification.tsx @@ -2,14 +2,16 @@ import * as React from 'react'; const SvgNotification = (props: React.SVGProps) => ( + + ); export default SvgNotification; diff --git a/packages/ui/src/assets/index.tsx b/packages/ui/src/assets/index.tsx index 7204f9ed..a1d0a77c 100644 --- a/packages/ui/src/assets/index.tsx +++ b/packages/ui/src/assets/index.tsx @@ -55,6 +55,7 @@ export { default as AiStyleBanner } from './AiStyleBanner'; export { default as AlertStar } from './AlertStar'; export { default as NaverLogo } from './NaverLogo'; export { default as SpeechBallon } from './SpeechBallon'; +export { default as Doori } from './Doori'; import Add from './Add'; import AddNew from './AddNew'; diff --git a/packages/ui/src/assets/svgs/Doori.svg b/packages/ui/src/assets/svgs/Doori.svg new file mode 100644 index 00000000..5f2f8609 --- /dev/null +++ b/packages/ui/src/assets/svgs/Doori.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/ui/src/assets/svgs/Notification.svg b/packages/ui/src/assets/svgs/Notification.svg new file mode 100644 index 00000000..32b38cec --- /dev/null +++ b/packages/ui/src/assets/svgs/Notification.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/packages/ui/src/components/Header/Header.tsx b/packages/ui/src/components/Header/Header.tsx new file mode 100644 index 00000000..4ab84ee9 --- /dev/null +++ b/packages/ui/src/components/Header/Header.tsx @@ -0,0 +1,57 @@ +import { Doori,Flex, Magnifier, Notification, theme } from "@duri-fe/ui"; +import styled from "@emotion/styled"; + +interface HeaderProps { + logoColor: string; + iconColor: string; + searchIcon?: boolean; + badge?: boolean; + + onClickLogo?: () => void; + onClickSearch?: () => void; + onClickNotification?: () => void; +} + +export const Header = ({ + logoColor, + iconColor, + searchIcon, + badge, + onClickLogo, + onClickSearch, + onClickNotification, +}: HeaderProps) => { + return ( + + + + + {searchIcon && onClickSearch && + + } + + + {badge && } + + + + ) +} + +const IconContainer = styled(Flex)` + width: fit-content; +` + +const NotificationContainer = styled.button` + position: relative; +` + +const NotificationBadge = styled(Flex)` + position: absolute; + top: 0px; + right: 0px; +`; \ No newline at end of file diff --git a/packages/ui/src/components/Header/index.tsx b/packages/ui/src/components/Header/index.tsx new file mode 100644 index 00000000..826fbb9c --- /dev/null +++ b/packages/ui/src/components/Header/index.tsx @@ -0,0 +1 @@ +export { Header } from './Header'; \ No newline at end of file diff --git a/packages/ui/src/components/index.tsx b/packages/ui/src/components/index.tsx index 2e7c3be2..05e534cb 100644 --- a/packages/ui/src/components/index.tsx +++ b/packages/ui/src/components/index.tsx @@ -11,3 +11,4 @@ export * from './Image'; export * from './Hr'; export * from './Tag'; +export * from './Header'; diff --git a/packages/ui/src/stories/components/Header.stories.tsx b/packages/ui/src/stories/components/Header.stories.tsx new file mode 100644 index 00000000..9a03c721 --- /dev/null +++ b/packages/ui/src/stories/components/Header.stories.tsx @@ -0,0 +1,50 @@ +import { Header, theme } from '@duri-fe/ui'; +import type { Meta, StoryObj } from '@storybook/react'; + +type Story = StoryObj; + +/** + * `StatusBar` 컴포넌트의 스토리북 정의입니다. + */ +const meta: Meta = { + title: 'components/Header', + component: Header, + tags: ['autodocs'], + argTypes: { + logoColor: { control: 'color' }, + iconColor: { control: 'color' }, + searchIcon: { control: 'boolean' }, + badge: { control: 'boolean' }, + onClickLogo: { action: 'onClickLogo' }, + onClickSearch: { action: 'onClickSearch' }, + onClickNotification: { action: 'onClickNotification' }, + }, +}; + +export default meta; + +/** + * `DuriDefaultHeader`는 `Header` 컴포넌트의 고객 스토리입니다. + */ +export const DuriDefaultHeader: Story = { + args: { + logoColor: theme.palette.Black, + iconColor: theme.palette.Normal700, + searchIcon: true, + onClickLogo: () => console.log('홈화면 라우팅'), + onClickSearch: () => console.log('검색창 열기'), + onClickNotification: () => console.log('알림창 열기'), + } +}; + +/** + * `SalonDefaultHeader`는 `Header` 컴포넌트의 미용사 스토리입니다. + */ +export const SalonDefaultHeader: Story = { + args: { + logoColor: theme.palette.Black, + iconColor: theme.palette.White, + onClickLogo: () => console.log('홈화면 라우팅'), + onClickNotification: () => console.log('알림창 열기'), + } +}; \ No newline at end of file From 5b13478ccb83e3505b785b0250971c9e7f0f7488 Mon Sep 17 00:00:00 2001 From: seungboshim Date: Sun, 1 Dec 2024 12:21:33 +0900 Subject: [PATCH 2/7] =?UTF-8?q?feat:=20storybook=20preview=20global=20css?= =?UTF-8?q?=20=EC=A0=81=EC=9A=A9(DURI-320)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .storybook/{preview.js => preview.jsx} | 14 ++++++++++++++ 1 file changed, 14 insertions(+) rename .storybook/{preview.js => preview.jsx} (52%) diff --git a/.storybook/preview.js b/.storybook/preview.jsx similarity index 52% rename from .storybook/preview.js rename to .storybook/preview.jsx index 1f1fcd68..14fb4db0 100644 --- a/.storybook/preview.js +++ b/.storybook/preview.jsx @@ -1,3 +1,9 @@ +import React from 'react'; +import { Global } from '@emotion/react'; +import { globalStyle } from '../packages/ui/src/styles/GlobalStyles'; +import { ThemeProvider } from '@emotion/react'; +import { theme } from '../packages/ui/src/styles/theme'; + /** @type { import('@storybook/react').Preview } */ const preview = { parameters: { @@ -17,6 +23,14 @@ const preview = { ], }, }, + decorators: [ + (Story) => ( + + + + + ), + ], }; export default preview; From fd7216b6e8ae8a57bd12cdf7634dafc1d6571cc1 Mon Sep 17 00:00:00 2001 From: seungboshim Date: Sun, 1 Dec 2024 17:50:44 +0900 Subject: [PATCH 3/7] =?UTF-8?q?feat:=20Card=20=EC=BB=B4=ED=8F=AC=EB=84=8C?= =?UTF-8?q?=ED=8A=B8=20=EA=B5=AC=ED=98=84(DURI-318)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/ui/src/components/Card/Card.tsx | 31 ++++++++++++ packages/ui/src/components/Card/index.tsx | 1 + packages/ui/src/components/index.tsx | 1 + .../src/stories/components/Card.stories.tsx | 50 +++++++++++++++++++ .../src/stories/components/Header.stories.tsx | 2 +- 5 files changed, 84 insertions(+), 1 deletion(-) create mode 100644 packages/ui/src/components/Card/Card.tsx create mode 100644 packages/ui/src/components/Card/index.tsx create mode 100644 packages/ui/src/stories/components/Card.stories.tsx diff --git a/packages/ui/src/components/Card/Card.tsx b/packages/ui/src/components/Card/Card.tsx new file mode 100644 index 00000000..dc5eb770 --- /dev/null +++ b/packages/ui/src/components/Card/Card.tsx @@ -0,0 +1,31 @@ +import { Flex, theme } from "@duri-fe/ui" +import styled from "@emotion/styled" + +interface CardProps { + height: string, + borderRadius: number, + shadow?: 'small' | 'large', + children: React.ReactNode, +} + +export const Card = ({ + height, + borderRadius, + shadow = 'small', + children, +}: CardProps) => { + return ( + + {children} + + ) +} + +const CardContainer = styled(Flex)` + box-shadow: ${({ shadow }) => ( + shadow === 'small' + ? '0px 0px 4px 0px rgba(0, 0, 0, 0.10)' + : '0px 0px 10px 0px rgba(0, 0, 0, 0.10)' + )}; + background-color: ${theme.palette.White}; +`; \ No newline at end of file diff --git a/packages/ui/src/components/Card/index.tsx b/packages/ui/src/components/Card/index.tsx new file mode 100644 index 00000000..9aa55b4b --- /dev/null +++ b/packages/ui/src/components/Card/index.tsx @@ -0,0 +1 @@ +export { Card } from "./Card"; \ No newline at end of file diff --git a/packages/ui/src/components/index.tsx b/packages/ui/src/components/index.tsx index 05e534cb..eeb4e586 100644 --- a/packages/ui/src/components/index.tsx +++ b/packages/ui/src/components/index.tsx @@ -12,3 +12,4 @@ export * from './Image'; export * from './Hr'; export * from './Tag'; export * from './Header'; +export * from './Card'; diff --git a/packages/ui/src/stories/components/Card.stories.tsx b/packages/ui/src/stories/components/Card.stories.tsx new file mode 100644 index 00000000..1fec8851 --- /dev/null +++ b/packages/ui/src/stories/components/Card.stories.tsx @@ -0,0 +1,50 @@ +import { Card, Flex } from '@duri-fe/ui'; +import type { Meta, StoryFn } from '@storybook/react'; + +/** + * `Card` 컴포넌트의 스토리북 정의입니다. + */ +const meta: Meta = { + title: 'components/Card', + component: Card, + tags: ['autodocs'], + argTypes: { + height: { control: 'number' }, + borderRadius: { control: 'number' }, + shadow: { control: 'select', options: ['small', 'large'] }, + }, +}; + +export default meta; + +const DuriDefaultTemplate: StoryFn = (args) => ( + + 내부 요소 + +) + +/** + * `DuriDefaultCard`는 고객 메인홈에 쓰이는 `Card` 스토리입니다. + */ +export const DuriDefaultCard = DuriDefaultTemplate; +DuriDefaultCard.args = { + height: 172, + borderRadius: 12, + shadow: 'small', +}; + + +const SalonDefaultTemplate: StoryFn = (args) => ( + + 내부 요소 + +) +/** + * `SalonDefaultCard`는 미용사 메인홈에 쓰이는 `Card` 스토리입니다. + */ +export const SalonDefaultCard = SalonDefaultTemplate; +SalonDefaultCard.args = { + height: 200, + borderRadius: 16, + shadow: 'large', +}; \ No newline at end of file diff --git a/packages/ui/src/stories/components/Header.stories.tsx b/packages/ui/src/stories/components/Header.stories.tsx index 9a03c721..f6656ed3 100644 --- a/packages/ui/src/stories/components/Header.stories.tsx +++ b/packages/ui/src/stories/components/Header.stories.tsx @@ -4,7 +4,7 @@ import type { Meta, StoryObj } from '@storybook/react'; type Story = StoryObj; /** - * `StatusBar` 컴포넌트의 스토리북 정의입니다. + * `Header` 컴포넌트의 스토리북 정의입니다. */ const meta: Meta = { title: 'components/Header', From 87c1c06c990a87836c2117aa7ba6626e32451349 Mon Sep 17 00:00:00 2001 From: seungboshim Date: Mon, 2 Dec 2024 01:40:36 +0900 Subject: [PATCH 4/7] =?UTF-8?q?feat:=20=EB=AF=B8=EC=9A=A9=EC=82=AC=20?= =?UTF-8?q?=ED=99=88=20=EC=83=81=EB=8B=A8=20ui=20=EA=B5=AC=ED=98=84(DURI-1?= =?UTF-8?q?91)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/salon/src/pages/Home.tsx | 52 ++++++++++++++++---- packages/ui/src/assets/Pencil.tsx | 15 ++++++ packages/ui/src/assets/index.tsx | 1 + packages/ui/src/assets/svgs/Doori.svg | 3 -- packages/ui/src/assets/svgs/Notification.svg | 6 --- packages/ui/src/components/Header/Header.tsx | 8 +-- 6 files changed, 64 insertions(+), 21 deletions(-) create mode 100644 packages/ui/src/assets/Pencil.tsx delete mode 100644 packages/ui/src/assets/svgs/Doori.svg delete mode 100644 packages/ui/src/assets/svgs/Notification.svg diff --git a/apps/salon/src/pages/Home.tsx b/apps/salon/src/pages/Home.tsx index c64c8bb4..9ea1ba90 100644 --- a/apps/salon/src/pages/Home.tsx +++ b/apps/salon/src/pages/Home.tsx @@ -1,16 +1,50 @@ -import { DuriNavbar, MobileLayout } from '@duri-fe/ui'; +import { DuriNavbar, Flex, Header, MobileLayout, Pencil, Text, theme } from '@duri-fe/ui'; +import styled from '@emotion/styled'; const Home = () => { return ( - <> - -

Home

-

Home

-

Home

- - - + + +
+ + + + 댕댕샵 + + + 경기도 성남시 + + + + + 댕댕샵 점주님 안녕하세용용용용용용용용 + + + + + + ); }; +const HomeHeaderContainer = styled(Flex)` + position: relative; + background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 0%, #111 100%); +`; + +const TextContainer = styled(Flex)` + height: fit-content; + width: fit-content; +`; + +const ShopNotice = styled(Flex)` + height: fit-content; + width: calc(100% - 40px); + border-radius: 0 12px 12px 12px; + flex-grow: 1; + position: absolute; + bottom: -25px; + left: 20px; +`; + export default Home; diff --git a/packages/ui/src/assets/Pencil.tsx b/packages/ui/src/assets/Pencil.tsx new file mode 100644 index 00000000..166f0ccd --- /dev/null +++ b/packages/ui/src/assets/Pencil.tsx @@ -0,0 +1,15 @@ +import * as React from 'react'; +const SvgPencil = (props) => ( + + + +); +export default SvgPencil; diff --git a/packages/ui/src/assets/index.tsx b/packages/ui/src/assets/index.tsx index a1d0a77c..365d55d8 100644 --- a/packages/ui/src/assets/index.tsx +++ b/packages/ui/src/assets/index.tsx @@ -56,6 +56,7 @@ export { default as AlertStar } from './AlertStar'; export { default as NaverLogo } from './NaverLogo'; export { default as SpeechBallon } from './SpeechBallon'; export { default as Doori } from './Doori'; +export { default as Pencil } from './Pencil'; import Add from './Add'; import AddNew from './AddNew'; diff --git a/packages/ui/src/assets/svgs/Doori.svg b/packages/ui/src/assets/svgs/Doori.svg deleted file mode 100644 index 5f2f8609..00000000 --- a/packages/ui/src/assets/svgs/Doori.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/packages/ui/src/assets/svgs/Notification.svg b/packages/ui/src/assets/svgs/Notification.svg deleted file mode 100644 index 32b38cec..00000000 --- a/packages/ui/src/assets/svgs/Notification.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/packages/ui/src/components/Header/Header.tsx b/packages/ui/src/components/Header/Header.tsx index 4ab84ee9..d6985397 100644 --- a/packages/ui/src/components/Header/Header.tsx +++ b/packages/ui/src/components/Header/Header.tsx @@ -1,6 +1,8 @@ -import { Doori,Flex, Magnifier, Notification, theme } from "@duri-fe/ui"; +import { Doori, Flex, Magnifier, Notification, theme } from "@duri-fe/ui"; import styled from "@emotion/styled"; +import { HeightFitFlex } from "../FlexBox/Flex"; + interface HeaderProps { logoColor: string; iconColor: string; @@ -22,7 +24,7 @@ export const Header = ({ onClickNotification, }: HeaderProps) => { return ( - + @@ -38,7 +40,7 @@ export const Header = ({ {badge && } - + ) } From 13ed274e76e96f60ec89891efd39ecf0c3c6a1dc Mon Sep 17 00:00:00 2001 From: seungboshim Date: Mon, 2 Dec 2024 01:41:56 +0900 Subject: [PATCH 5/7] =?UTF-8?q?fix:=20svg=20props=20=EC=88=98=EC=A0=95(DUR?= =?UTF-8?q?I-191)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/ui/src/assets/Pencil.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/assets/Pencil.tsx b/packages/ui/src/assets/Pencil.tsx index 166f0ccd..e51954b4 100644 --- a/packages/ui/src/assets/Pencil.tsx +++ b/packages/ui/src/assets/Pencil.tsx @@ -1,5 +1,5 @@ import * as React from 'react'; -const SvgPencil = (props) => ( +const SvgPencil = (props: React.SVGProps) => ( Date: Mon, 2 Dec 2024 16:46:27 +0900 Subject: [PATCH 6/7] =?UTF-8?q?feat:=20=EB=A7=A4=EC=9E=A5=EC=82=AC?= =?UTF-8?q?=EC=A7=84=20=EA=B7=B8=EB=9E=98=EB=94=94=EC=96=B8=ED=8A=B8(DURI-?= =?UTF-8?q?191)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/salon/src/pages/Home.tsx | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/apps/salon/src/pages/Home.tsx b/apps/salon/src/pages/Home.tsx index 9ea1ba90..4b55561c 100644 --- a/apps/salon/src/pages/Home.tsx +++ b/apps/salon/src/pages/Home.tsx @@ -16,9 +16,9 @@ const Home = () => { - + 댕댕샵 점주님 안녕하세용용용용용용용용 - + @@ -29,22 +29,42 @@ const Home = () => { const HomeHeaderContainer = styled(Flex)` position: relative; - background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 0%, #111 100%); + background-size: cover; + background-position: center; + + &::before { + content: ''; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + height: 70%; + background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 0%, #111 100%); + } `; const TextContainer = styled(Flex)` height: fit-content; width: fit-content; + z-index: 2; `; const ShopNotice = styled(Flex)` height: fit-content; width: calc(100% - 40px); border-radius: 0 12px 12px 12px; - flex-grow: 1; position: absolute; bottom: -25px; left: 20px; + overflow: hidden; +`; + +const ShopNoticeText = styled(Text)` + width: 100%; + justify-content: start; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; `; export default Home; From 1319426eac724bd16441768f2a8fc41c47051e15 Mon Sep 17 00:00:00 2001 From: seungboshim Date: Tue, 3 Dec 2024 14:00:02 +0900 Subject: [PATCH 7/7] fix: resolve pr comments(DURI-191) --- apps/salon/src/pages/Home.tsx | 5 ++--- packages/ui/src/assets/Favicon.tsx | 33 ------------------------------ packages/ui/src/assets/Logo.tsx | 16 --------------- packages/ui/src/assets/index.tsx | 1 - 4 files changed, 2 insertions(+), 53 deletions(-) delete mode 100644 packages/ui/src/assets/Favicon.tsx delete mode 100644 packages/ui/src/assets/Logo.tsx diff --git a/apps/salon/src/pages/Home.tsx b/apps/salon/src/pages/Home.tsx index 4b55561c..3b252445 100644 --- a/apps/salon/src/pages/Home.tsx +++ b/apps/salon/src/pages/Home.tsx @@ -1,4 +1,4 @@ -import { DuriNavbar, Flex, Header, MobileLayout, Pencil, Text, theme } from '@duri-fe/ui'; +import { DuriNavbar, Flex, Header, HeightFitFlex, MobileLayout, Pencil, Text, theme } from '@duri-fe/ui'; import styled from '@emotion/styled'; const Home = () => { @@ -49,8 +49,7 @@ const TextContainer = styled(Flex)` z-index: 2; `; -const ShopNotice = styled(Flex)` - height: fit-content; +const ShopNotice = styled(HeightFitFlex)` width: calc(100% - 40px); border-radius: 0 12px 12px 12px; position: absolute; diff --git a/packages/ui/src/assets/Favicon.tsx b/packages/ui/src/assets/Favicon.tsx deleted file mode 100644 index 4ffd27e0..00000000 --- a/packages/ui/src/assets/Favicon.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import * as React from 'react'; -const SvgFavicon = (props) => ( - - - - - - - - - - - -); -export default SvgFavicon; diff --git a/packages/ui/src/assets/Logo.tsx b/packages/ui/src/assets/Logo.tsx deleted file mode 100644 index 36d5bac5..00000000 --- a/packages/ui/src/assets/Logo.tsx +++ /dev/null @@ -1,16 +0,0 @@ -import * as React from 'react'; -const SvgLogo = (props) => ( - - - - -); -export default SvgLogo; diff --git a/packages/ui/src/assets/index.tsx b/packages/ui/src/assets/index.tsx index 365d55d8..30e78d1f 100644 --- a/packages/ui/src/assets/index.tsx +++ b/packages/ui/src/assets/index.tsx @@ -55,7 +55,6 @@ export { default as AiStyleBanner } from './AiStyleBanner'; export { default as AlertStar } from './AlertStar'; export { default as NaverLogo } from './NaverLogo'; export { default as SpeechBallon } from './SpeechBallon'; -export { default as Doori } from './Doori'; export { default as Pencil } from './Pencil'; import Add from './Add';