0.0.1 • Published 6 years ago

callcenter2_react_components v0.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

React Microvoz Icons Pack

Include microvoz components in your React projects easly with callcenter2_react_components.

Installation

npm install callcenter2_react_components --save

Usage

Import the component that you need.

import { SelectCmp } from 'callcenter2_react_components';

class Home extends React.Component {
    render() {
        const options = [{ id: 1, name: "option 1" }, { id: 2, name: "option 2" }]
        return <SelectCmp values={options} />
    }
}

Components

Currently supported components are:

  • ButtonCmp -- Props: style, disabled, className, title, onClick
  • SelectCmp -- Props: style, disabled, className, values, placeholder, onChange
0.0.1

6 years ago