UNPKG

wix-style-react

Version:
23 lines (21 loc) 807 B
import React from 'react'; import { st, classes } from './AccordionSectionItem.st.css'; import Text from '../../Text'; import { WixStyleReactContext } from '../../WixStyleReactProvider/context'; function accordionSectionItem(_ref) { var title = _ref.title; return /*#__PURE__*/React.createElement(WixStyleReactContext.Consumer, null, function (_ref2) { var reducedSpacingAndImprovedLayout = _ref2.reducedSpacingAndImprovedLayout; return /*#__PURE__*/React.createElement("div", { className: st(classes.root, { reducedSpacingAndImprovedLayout: reducedSpacingAndImprovedLayout }) }, /*#__PURE__*/React.createElement(Text, { skin: "standard", weight: "bold", size: "small", ellipsis: true }, title)); }); } export default accordionSectionItem;