From 4731f8b3f7ecbd8da8cab6051b407cb5526b8a9d Mon Sep 17 00:00:00 2001 From: esthel Date: Sat, 2 Dec 2023 23:15:15 +0900 Subject: [PATCH] =?UTF-8?q?add:=20theme=20=EC=9E=90=EB=8F=99=EC=99=84?= =?UTF-8?q?=EC=84=B1=EC=9D=84=20=EC=9C=84=ED=95=9C=20type=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/src/styled.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 front/src/styled.d.ts diff --git a/front/src/styled.d.ts b/front/src/styled.d.ts new file mode 100644 index 0000000..59e6b45 --- /dev/null +++ b/front/src/styled.d.ts @@ -0,0 +1,8 @@ +import 'styled-components'; +import theme from './utils/theme'; + +type ThemeType = typeof theme; + +declare module 'styled-components' { + export interface DefaultTheme extends ThemeType {} +}