A set of React UI components that supports Rhino's design language
npm install rhinoui
import React, { Component } from 'react'
import { Box, Button } from 'rhinoui'
class Example extends Component {
render() {
return (
<Box flexDirection='row'>
<Button icon='like' iconColor='red' />
<Button icon='close' iconColor='green' />
<Button icon='comment' iconColor='blue' />
</Box>
)
}
}
MIT © oahmaro