11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
import '@emotion/react';
|
|
|
|
import { lightTheme } from '../src/app.theme';
|
|
|
|
declare module '@emotion/react' {
|
|
export interface Theme {
|
|
colors: typeof lightTheme.colors,
|
|
shadows: typeof lightTheme.shadows
|
|
}
|
|
}
|