1.1.3 • Published 6 years ago

hyper-ui-components v1.1.3

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

UI-components

Install

npm install --save ui-components

Button

import React, { Component } from 'react'
import { Button } from 'ui-components'

import MyComponent from 'ui-components'

class Example extends Component {
  render () {
    return (
      <Button
        mod='blue small'
        strong
        onClick={ console.log('click') }
      >
        Button text
      </Button>
    )
  }
}