1.0.1 • Published 6 years ago

witty-ui v1.0.1

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

witty-ui

NPM version

UI components for modern apps

UI Components

  • Switch
  • FormRow

Install

yarn add witty-ui

OR

npm install witty-ui --save

Usage

Switch

// Switch

import { Switch } from 'witty-ui'

render () {
  return (<Switch onLabel='Yes' offLabel='No' />)
}

FormRow

// FormRow

import { FormRow, Switch } from 'witty-ui'

render () {
  return (
    <FormRow label='Pick Up at Store' col={{label: 6, field: 16}}>
      <Switch onLabel='Yes' offLabel='No' />
    </FormRow>)
}