react-custom-gradient-button
v1.1.7
Published
A fully flexible React-powered gradient button component
Maintainers
Readme
react-custom-gradient-button
Introduction
react-custom-gradient-button is a very light custom gradient button component for the react.
The main purpose of this library implement custom gradient buttons easily.
Examples
with props
<GradientButton
color="white"
start="#aa076b"
middle="#61045f"
end="#aa076b"
borderRadius="0.5rem"
width="5rem"
height="2rem"
onClick={() => {
console.log('!Clicked');
}}
>
Click Me
</GradientButton>without style props
<GradientButton
onClick={() => {
console.log('!Clicked');
}}
>
Click Me
</GradientButton>Installation
npm
npm install react-custom-gradient-buttonyarn
yarn add react-custom-gradient-buttonAPI
| Prop | Type | Description |
| -------------- | -------- | --------------------------------------------------------- |
| className | string | custom classes can be added. |
| color | string | button text color. |
| start | string | left background color of button. |
| middle | string | middle background color of button may initilize with "" . |
| end | string | end background color of button. |
| borderRadius | string | end background color of button. |
| width | string | width of button. |
| height | string | height of button. |
| ...props | func | you can add also custom props like onClick |
License
Copyright (c) 2022 Emre Çil.
