SonWan UI is a modular UI component library based on figma design to build your next React Web Application.
SonWan is a user interface (UI) library for React projects. It provides a set of components and styling to enhance the user experience of your application. SonWan UI also offers support for React Native, allowing you to develop mobile applications with a consistent look and feel.
To install SonWan UI into your React project, follow these steps:
cd your-project-directory
npm install sonwan-ui
or yarn add sonwan-ui
import 'sonwan-ui/dist/index.css';
import { Button, Card, Input } from 'sonwan-ui';
import React from 'react';
const App = () => {
return (
<div>
<Button>Click me</Button>
<Card>
<Input placeholder="Enter your name" />
</Card>
</div>
);
};
export default App;
SonWan UI is a user interface library designed for React projects. It provides an easy installation process, pre-styled components, and a set of JavaScript components to enhance the user experience of your application. SonWan UI also offers support for React Native, allowing you to create consistent UIs across web and mobile platforms.