7 lines
No EOL
289 B
TypeScript
7 lines
No EOL
289 B
TypeScript
import * as React from 'react';
|
|
import { Interpolation } from '@emotion/react';
|
|
export interface GlobalStylesProps<Theme = {}> {
|
|
defaultTheme?: object;
|
|
styles: Interpolation<Theme>;
|
|
}
|
|
export default function GlobalStyles<Theme = {}>(props: GlobalStylesProps<Theme>): React.JSX.Element; |