lengband-ui is a React.js UI library with a simple API.
lengband-ui is not a CSS framework. Instead, the focus is on interactive components that require Javascript. You should be able to use lengband-ui with any page layout, structure, or CSS framework.
https://lengband.github.io/lengband-ui/
IE 10+ (due to Flexbox support).
npm install lengband-ui --save
import React from 'react';
import { Button, Icon } from 'lengband-ui';
import 'lengband-ui/dist/index.css';
function App() {
return (
<div className="App">
<Button>learn react</Button>
<Icon icon='arrow-down' theme='danger' />
</div>
);
}
export default App;
lengband-ui is open source and released under the MIT Licence.