10 lines
131 B
TypeScript
10 lines
131 B
TypeScript
|
import '@emotion/react'
|
||
|
|
||
|
declare module '@emotion/react' {
|
||
|
export interface Theme {
|
||
|
colors: {
|
||
|
main: string
|
||
|
}
|
||
|
}
|
||
|
}
|