Skip to content

chafed-rc/sweet-buttons

Repository files navigation

Sweet Buttons

npm version License: MIT

A collection of sweet buttons for your web projects.

Installation

You can install Sweet Buttons using npm:

npm install sweet-buttons

Usage

To use sweet button , simply import 'Button' from sweet-buttons , it's that simple !

import {Button} from sweet-buttons

const MyButton = () => {
    return(
        <>
            <Button> Click Me! </Button>
        </>
    );
}