UNPKG

@totalsoft/rocket-ui

Version:

A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.

14 lines (13 loc) 554 B
import React from 'react'; import { AccordionProps } from './types'; /** * * The accordion component allows the user to show and hide sections of related content on a page. * * Props of the [Material-UI Accordion](https://mui.com/material-ui/api/accordion/), * [Material-UI AccordionDetails](https://mui.com/material-ui/api/accordion-details/) * and [Material-UI AccordionSummary](https://mui.com/material-ui/api/accordion-summary/) components are also available. * */ declare const Accordion: React.FC<AccordionProps>; export default Accordion;