File tree Expand file tree Collapse file tree 4 files changed +23
-23
lines changed
Expand file tree Collapse file tree 4 files changed +23
-23
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ import { ThemeProvider } from './providers/theme';
66type DesignSystemProviderProperties = ThemeProviderProps ;
77
88export 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) ;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { GeistMono } from 'geist/font/mono';
33import { GeistSans } from 'geist/font/sans' ;
44
55export 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) ;
Original file line number Diff line number Diff line change 11/** @type {import('postcss-load-config').Config } */
22const config = {
3- plugins : {
4- '@tailwindcss/postcss' : { } ,
5- } ,
3+ plugins : {
4+ '@tailwindcss/postcss' : { } ,
5+ } ,
66} ;
77
88export default config ;
Original file line number Diff line number Diff line change @@ -2,16 +2,16 @@ import type { ThemeProviderProps } from 'next-themes';
22import { ThemeProvider as NextThemeProvider } from 'next-themes' ;
33
44export 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) ;
You can’t perform that action at this time.
0 commit comments