/ReactUILibrary

Beautiful and lightweight UI component for ReactJS developers.

Primary LanguageTypeScript

ReactUILibrary - buttons

Beautiful and lightweight UI component for ReactJS developers. This UI library will speed up your app development.

License issues forks stars

Live StoryBook DEMO: https://reactuilibrary.netlify.app/

Live DEMO: https://o7s75t.csb.app/

Live CodeSandbox DEMO: https://codesandbox.io/s/buttonreactuikit-o7s75t

⭐️ Star this repo

If this uilibrary helps you build your Apps faster - please star this project, every star matters! It really motivates me.

🧭 Table of contents

🚀 Quick Start

💿 Installation

npm i @mohitkothari/buttons

or

yarn add @mohitkothari/buttons

🧰 Usage

import { Button } from "@mohitkothari/buttons";

const App = () => (
    <>
        <Button label="Submit" size="small" backgroundColor="#00d2d3" textColor="#fff" />
    </>
);