UNPKG

707 BTypeScriptView Raw
1import * as React from 'react';
2import { StyledComponentProps } from '@material-ui/core/styles';
3
4export interface CssBaselineProps extends StyledComponentProps<never> {
5 /**
6 * You can wrap a node.
7 */
8 children?: React.ReactNode;
9}
10
11/**
12 * @deprecated The name of this type is misleading. `CssBaseline` implements no class at all.
13 */
14export type CssBaselineClassKey = '@global';
15
16/**
17 * Kickstart an elegant, consistent, and simple baseline to build upon.
18 * Demos:
19 *
20 * - [Css Baseline](https://material-ui.com/components/css-baseline/)
21 *
22 * API:
23 *
24 * - [CssBaseline API](https://material-ui.com/api/css-baseline/)
25 */
26export default function CssBaseline(props: CssBaselineProps): JSX.Element;