@mui/styled-engine-sc
Version:
styled() API wrapper package for styled-components.
8 lines • 404 B
TypeScript
import type * as React from 'react';
import { type CSSObject, type StyleFunction } from 'styled-components';
export interface GlobalStylesProps<Theme extends object = {}> {
defaultTheme?: object | undefined;
styles: string | CSSObject | StyleFunction<Theme>;
}
declare const GlobalStyles: <Theme extends object = {}>(props: GlobalStylesProps<Theme>) => React.JSX.Element;
export default GlobalStyles;