UNPKG

gi-custom-components-test

Version:
6 lines (5 loc) 365 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: { color: fontColor, backgroundColor }, children: allCaps ? label.toUpperCase() : label })); };