0.1.3 • Published 2 years ago

lili-sky v0.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Lili Sky

Install

npm install lili-sky
# or
yarn add lili-sky
# or
pnpm add lili-sky

Example

import { Unicorn } from 'lili-sky'
// OR in nodeJS ( commonJS module )
const { Unicorn } = require('lili-sky')

const myUnicorn = new Unicorn()

myUnicorn.sayHelloTo('jason') // '🦄 Hello jason !'
import { classNames } from 'lili-sky'

classNames('foo', 'boo') // 'foo boo'
classNames({ foo: true, boo: false }) // 'foo'
classNames([true && 'foo', 'boo']) // 'foo boo'

const foo = () => {
  return <div className={classNames({ foo: true, boo: false })} />
}
0.1.3

2 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago