Tocas UI 2 components built with react
npm install --save react-tocas
<link rel="stylesheet" href="//cdn.rawgit.com/TeaMeow/TocasUI/master/dist/tocas.min.css">
import Button from 'react-tocas/lib/Button';
// or this way:
// import { Button } from 'react-tocas';
let App = () => (
<div>
<Button info onClick={() => alert('World')}>
Hello
</Button>
</div>
);