UNPKG

@naturacosmeticos/natds-web

Version:

A collection of components from Natura Design System for React websites and webapps

21 lines (20 loc) 486 B
import { CardActionAreaProps } from '@material-ui/core/CardActionArea'; /** * CardActionArea Props */ export interface ICardActionAreaProps extends CardActionAreaProps { /** * The content of the component. * * @optional * @type node */ children?: CardActionAreaProps['children']; /** * Override or extend the styles applied to the component. * * @optional * @type object */ classes?: CardActionAreaProps['classes']; }