UNPKG

chayns-components

Version:

A set of beautiful React components for developing chayns® applications.

20 lines (19 loc) 551 B
import classnames from 'clsx'; import PropTypes from 'prop-types'; import React from 'react'; const AbstractList = _ref => { let { className, children } = _ref; return /*#__PURE__*/React.createElement("div", { className: classnames('cc__list', className) }, children); }; AbstractList.propTypes = { className: PropTypes.string, children: PropTypes.oneOfType([PropTypes.node, PropTypes.arrayOf(PropTypes.node)]) }; AbstractList.displayName = 'AbstractList'; export default AbstractList; //# sourceMappingURL=AbstractList.js.map