vimpelcom-design-system-b2b
v0.2.16
Published
<div align="center">
Downloads
7
Readme
React components according to Beeline Design System for quickly development.
Installation
UI library is available as an npm package.
// with npm
npm install vimpelcom-design-system-b2b
Usage
Here is a quick example to get you started, it's all you need:
import React from 'react';
import ReactDOM from 'react-dom';
import {Button} from 'vimpelcom-design-system-b2b';
function App() {
return (
<Button purpose="filter" variant="primary" label="Hello World">
);
}
ReactDOM.render(<App />, document.querySelector('#app'));
Availiable Components
import {Button, Select, Input, Switch, Wrapper} from 'vimpelcom-design-system-b2b';