wix-style-react
Version:
wix-style-react
10 lines • 539 B
JavaScript
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