Skip to content
This repository was archived by the owner on Mar 8, 2025. It is now read-only.

Commit a76e8fd

Browse files
authored
chore: unconscious commit (#8)
2 parents 4bb6a6c + 7cd6d0d commit a76e8fd

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export * from './src/hook/usePalette';
2323
export * from './src/provider/DesignProvider';
2424
export * from './src/server/styles/DesignToken';
2525
export * from './src/server/styles/palette';
26-
export * from './src/server/styles/Theme';
26+
export * from './src/styles/Theme';
2727
export * from './src/component/base/Img';
2828
export * from './src/component/base/Link';
2929
export * from './src/component/dialog/AppAlertDialog';

src/server/styles/Theme.ts renamed to src/styles/Theme.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use-client';
2+
13
import type {
24
ComponentStyleConfig,
35
StyleFunctionProps,
@@ -8,8 +10,8 @@ import { extendTheme, withDefaultColorScheme } from '@chakra-ui/react';
810
import { mode } from '@chakra-ui/theme-tools';
911
import type { Dict } from '@chakra-ui/utils';
1012

11-
import { DT } from './DesignToken';
12-
import { darkPalette, lightPalette, palette } from './palette';
13+
import { DT } from '../server/styles/DesignToken';
14+
import { darkPalette, lightPalette, palette } from '../server/styles/palette';
1315

1416
const config: ThemeConfig = {
1517
initialColorMode: 'dark',

0 commit comments

Comments
 (0)