@naturacosmeticos/natds-web
Version:
A collection of components from Natura Design System for React websites and webapps
26 lines (25 loc) • 667 B
TypeScript
import * as React from 'react';
import { CardContentProps } from '@material-ui/core/CardContent';
export interface ICardContentProps extends CardContentProps {
/**
* The content of the component.
*
* @optional
* @type node
*/
children?: CardContentProps['children'];
/**
* Override or extend the styles applied to the component.
*
* @optional
* @type object
*/
classes?: CardContentProps['classes'];
/**
* The component used for the root node. Either a string to use a DOM element or a component.
*
* @component "div"
* @type element
*/
component?: React.ReactNode;
}