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.

8 lines (7 loc) 313 B
import React from 'react'; import { CollapseCardProps } from './types'; /** * A Collapse Card is basically a 'smarter' Card component that allows users to toggle the display of content by expanding or collapsing the card. */ declare const CollapseCard: React.FC<CollapseCardProps>; export default CollapseCard;