UNPKG

wix-style-react

Version:
10 lines 539 B
import React from 'react'; import { dataHooks } from '../../constants'; import { st, classes } from './InlineLabelWrapper.st.css'; const InlineLabelWrapper = ({ children, suffix, charCount, labelPlacement, labelSize, }) => (React.createElement("div", { "data-hook": dataHooks.labelIndicators, className: st(classes.root, { inlineWithSuffix: Boolean(suffix || charCount !== undefined), labelPlacement, labelSize, }) }, children)); export default InlineLabelWrapper; //# sourceMappingURL=InlineLabelWrapper.js.map