@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.
11 lines (10 loc) • 540 B
TypeScript
import React from 'react';
import { CardProps } from './types';
/**
* Cards are surfaces that display content and actions on a single topic.
* They should be easy to scan for relevant and actionable information. Elements, like text and images, should be placed on them in a way that clearly indicates hierarchy.
*
* Props of the [Material-UI Card](https://mui.com/material-ui/api/card/) and [Paper](https://mui.com/material-ui/api/paper/) components are also available.
*/
declare const Card: React.FC<CardProps>;
export default Card;