UNPKG

603 BTypeScriptView Raw
1import * as React from 'react';
2import { StandardProps } from '..';
3
4export type ScopedCssBaselineClassKey = 'root';
5
6export interface ScopedCssBaselineProps
7 extends StandardProps<React.HTMLAttributes<HTMLDivElement>, ScopedCssBaselineClassKey> {
8 /**
9 * The content of the component.
10 */
11 children?: React.ReactNode;
12}
13
14/**
15 *
16 * Demos:
17 *
18 * - [Css Baseline](https://material-ui.com/components/css-baseline/)
19 *
20 * API:
21 *
22 * - [ScopedCssBaseline API](https://material-ui.com/api/scoped-css-baseline/)
23 */
24export default function ScopedCssBaseline(props: ScopedCssBaselineProps): JSX.Element;