wix-style-react
Version:
wix-style-react
8 lines • 378 B
JavaScript
import React from 'react';
import { dataHooks } from '../../constants';
import { st, classes } from './Asterisk.st.css';
const Asterisk = ({ labelSize }) => (React.createElement("div", { "aria-hidden": true, "data-hook": dataHooks.asterisk, className: st(classes.root, {
labelSize,
}), children: "*" }));
export default Asterisk;
//# sourceMappingURL=Asterisk.js.map