UNPKG

@material-ui/core

Version:

React components that implement Google's Material Design.

25 lines (21 loc) 653 B
import * as React from 'react'; import { StandardProps } from '..'; export interface ExpansionPanelDetailsProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>, ExpansionPanelDetailsClassKey> { /** * The content of the expansion panel details. */ children?: React.ReactNode; } export type ExpansionPanelDetailsClassKey = 'root'; /** * * Demos: * * - [Expansion Panels](https://material-ui.com/components/expansion-panels/) * * API: * * - [ExpansionPanelDetails API](https://material-ui.com/api/expansion-panel-details/) */ export default function ExpansionPanelDetails(props: ExpansionPanelDetailsProps): JSX.Element;