frontend-kit
v0.0.2
Published
Small, framework-agnostic frontend utilities for Mosa UI.
Downloads
211
Readme
Frontend Kit
Small, framework-agnostic frontend utilities for Mosa UI.
frontend-kit is the small, dependency-free utility layer for Mosa UI.
npm i frontend-kitimport { cx } from "frontend-kit";
const className = cx("button", isActive && "button--active", disabled && "is-disabled");API
| Export | Description |
| --- | --- |
| cx(...values) | Joins string class names and ignores false, null, and undefined. |
| ClassValue | Type accepted by cx. |
