xsolla-uikit
v2.15.3
Published
Xsolla UIKit
Downloads
253
Readme
Xsolla UI Kit
An enterprise-class UI design language and React-based implementation.
Usage
1. Installation
yarn add xsolla-uikit
2. Use Xsolla UI Kit components
import {Button} from 'xsolla-uikit';
export default () => (
<Button type="button">Button</Button>
);
(Optional) Import on Demand
We strongly recommend using babel-plugin-import, which can convert the following code to the 'xsolla-uikit/lib/xxx' way:
import {Button} from 'xsolla-uikit';
// Will become `import Button from 'xsolla-uikit/lib/button'`
Development
For development instructions read Contributing guide