From de4e42f64a15e82c1f96361910a34c27cf1c484b Mon Sep 17 00:00:00 2001 From: GuDoYoon Date: Mon, 9 Dec 2024 00:25:00 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Refactor(#83):=20=EC=8A=A4?= =?UTF-8?q?=ED=83=80=EC=9D=BC=20=ED=8C=8C=EC=9D=BCCosmeticItem=ED=83=80?= =?UTF-8?q?=EC=9E=85=20=EC=B0=B8=EC=A1=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/store/ui/styles.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/features/store/ui/styles.ts b/src/features/store/ui/styles.ts index 0c81632..ad7497c 100644 --- a/src/features/store/ui/styles.ts +++ b/src/features/store/ui/styles.ts @@ -1,7 +1,7 @@ -import Item from '@/types/CosmeticItem '; +import CosmeticItem from '@type/CosmeticItem '; import styled, { css } from 'styled-components'; -export const ItemContainer = styled.ul<{ $category: Item['category'] }>` +export const ItemContainer = styled.ul<{ $category: CosmeticItem['category'] }>` margin: 18px 0 27px 0; display: grid; grid-template-columns: repeat(4, 144px); @@ -59,7 +59,7 @@ export const ItemLabel = styled.label` font: inherit; `; -export const ItemImage = styled.img<{ $category: Item['category'] }>` +export const ItemImage = styled.img<{ $category: CosmeticItem['category'] }>` width: 125px; height: 70px; ${({ $category }) =>