benefit
v2.2.1
Published
Utility CSS library that provides a set of low-level, configurable, ready-to-use styles.
Downloads
13
Maintainers
Readme
Installation
yarn add benefit
Import and use the createBenefit
function to create your utility classes
import { createBenefit } from "benefit"
const { styleWith } = createBenefit()
Use styleWith(...)
to pass in utility classes
<div class={styleWith("p-4 bg-white text-blue-700")}>
...
</div>