Skip to content

Commit 67aaa71

Browse files
committed
Run formatter
1 parent 754e13b commit 67aaa71

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

packages/design-system/index.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import { ThemeProvider } from './providers/theme';
66
type DesignSystemProviderProperties = ThemeProviderProps;
77

88
export const DesignSystemProvider = ({
9-
children,
10-
...properties
9+
children,
10+
...properties
1111
}: DesignSystemProviderProperties) => (
12-
<ThemeProvider {...properties}>
13-
<TooltipProvider>{children}</TooltipProvider>
14-
<Toaster />
15-
</ThemeProvider>
12+
<ThemeProvider {...properties}>
13+
<TooltipProvider>{children}</TooltipProvider>
14+
<Toaster />
15+
</ThemeProvider>
1616
);

packages/design-system/lib/fonts.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { GeistMono } from 'geist/font/mono';
33
import { GeistSans } from 'geist/font/sans';
44

55
export const fonts = cn(
6-
GeistSans.variable,
7-
GeistMono.variable,
8-
'touch-manipulation font-sans antialiased'
6+
GeistSans.variable,
7+
GeistMono.variable,
8+
'touch-manipulation font-sans antialiased'
99
);
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/** @type {import('postcss-load-config').Config} */
22
const config = {
3-
plugins: {
4-
'@tailwindcss/postcss': {},
5-
},
3+
plugins: {
4+
'@tailwindcss/postcss': {},
5+
},
66
};
77

88
export default config;

packages/design-system/providers/theme.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ import type { ThemeProviderProps } from 'next-themes';
22
import { ThemeProvider as NextThemeProvider } from 'next-themes';
33

44
export const ThemeProvider = ({
5-
children,
6-
...properties
5+
children,
6+
...properties
77
}: ThemeProviderProps) => (
8-
<NextThemeProvider
9-
attribute="class"
10-
defaultTheme="system"
11-
enableSystem
12-
disableTransitionOnChange
13-
{...properties}
14-
>
15-
{children}
16-
</NextThemeProvider>
8+
<NextThemeProvider
9+
attribute="class"
10+
defaultTheme="system"
11+
disableTransitionOnChange
12+
enableSystem
13+
{...properties}
14+
>
15+
{children}
16+
</NextThemeProvider>
1717
);

0 commit comments

Comments
 (0)