gwen
v0.14.0
Published
A utility-first CSS library designed for brevity
Downloads
32
Readme
Table of contents
Installation
To install the latest version:
npm install --save gwen
yarn add gwen
TypeScript versions
[email protected] is compatible with TypeScript 3.7+.
You must use "strict": true
in your tsconfig.json
! Otherwise you may get unexpected type errors.
Usage
import { Gwen } from 'gwen';
const gwen = new Gwen();
function Component() {
return <p className={gwen.fontSize(14).color('blue').class}>Hello there</p>;
}
Changelog
| version | release notes | | -------- | --------------- | | [email protected] | Initial release |