UNPKG

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