@salesforce/design-system-react
Version:
Salesforce Lightning Design System for React
23 lines (20 loc) • 650 B
JavaScript
/* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */
/* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */
// ### React
import React from 'react';
import PropTypes from 'prop-types';
import { CARD_FOOTER } from '../../../utilities/constants';
var CardFooter = function CardFooter(props) {
return /*#__PURE__*/React.createElement("div", {
className: "slds-card__footer"
}, props.children);
};
CardFooter.displayName = CARD_FOOTER;
CardFooter.propTypes = {
/**
* Elements to place in the footer.
*/
children: PropTypes.node
};
export default CardFooter;
//# sourceMappingURL=footer.js.map