npm.io
1.0.1 • Published 8 years ago

witty-ui

Licence
ISC
Version
1.0.1
Deps
6
Size
123 kB
Vulns
0
Weekly
0

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>)
}