bro.landing/@types/emotion.d.ts
2024-07-25 22:14:20 +03:00

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
}
}