@mui/styled-engine-sc
Version:
styled() API wrapper package for styled-components.
10 lines (7 loc) • 305 B
TypeScript
import * as React from 'react';
import { CSSObject, InterpolationFunction } from 'styled-components';
export interface GlobalStylesProps {
defaultTheme?: object;
styles: string | CSSObject | InterpolationFunction<any>;
}
export default function Global(props: GlobalStylesProps): React.ReactElement;