UNPKG

@material-ui/lab

Version:

Material-UI Lab - Incubator for Material-UI React components.

25 lines (21 loc) 538 B
import * as React from 'react'; import { StandardProps } from '@material-ui/core'; export interface AlertTitleProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>, AlertTitleClassKey> { /** * The content of the component. */ children?: React.ReactNode; } export type AlertTitleClassKey = 'root'; /** * * Demos: * * - [Alert](https://mui.com/components/alert/) * * API: * * - [AlertTitle API](https://mui.com/api/alert-title/) */ export default function AlertTitle(props: AlertTitleProps): JSX.Element;