UNPKG

ls-custom-components

Version:
6 lines (5 loc) 308 B
import { jsx as _jsx } from "react/jsx-runtime"; import './MyLabel.css'; export const MyLabel = ({ label, size = 'normal', allCaps = false, color, fontColor }) => { return (_jsx("span", { className: `${size} ${color}`, style: { color: fontColor }, children: allCaps ? label.toUpperCase() : label })); };