Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
module.exports.Label = function Label(props) {
var variant = props.variant || {};
var className = styles.Label + (variant.important ? ' ' + styles.Label__important : '') + (variant.shadow ? ' ' + styles.Label__shadow : '');
return React.createElement("div", reconcileProps(props, className));
};
module.exports.Label = function Label(props) {
var variant = props.variant || {};
var className = styles.Label + (variant.important ? ' ' + styles.Label__important : '');
return React.createElement("div", reconcileProps(props, className));
};