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.

20 lines 558 B
import React from 'react'; import PropTypes from 'prop-types'; import MuiCardActions from './CardActionsStyles'; const CardActions = props => { return React.createElement(MuiCardActions, { ...props }); }; CardActions.propTypes = { /** * If 'true', the card footer will be filled with a grayish color * @default false */ filled: PropTypes.bool, /** * Align actions. * @default 'left' */ align: PropTypes.oneOf(['left', 'right', 'center']) }; export default CardActions; //# sourceMappingURL=CardActions.js.map