UNPKG

mfss-custom-components

Version:

Instalar

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