UNPKG

nj10-custom-components

Version:
10 lines (9 loc) 425 B
import { jsx as _jsx } from "react/jsx-runtime"; import './MyLabel.css'; export const MyLabel = ({ label, size = 'normal', allCaps = false, color, fontColor, backgroundColor = 'transparent' }) => { return (_jsx("span", { className: `${size} ${color} label`, style: { textTransform: (allCaps) ? 'uppercase' : 'none', color: fontColor, backgroundColor }, children: label })); };