1.0.7 • Published 7 years ago

adjustable-react-ui-button v1.0.7

Weekly downloads
4
License
ISC
Repository
github
Last release
7 years ago

AdjustableButton

This repo is a simple UI button that can be set to a certain size based on how many columns the user decides. This component if part of the ComponentBase Library of reusable component.

npm:

npm install adjustable-react-ui-button --save

To run the demo simply:

npm run build-demo
npm run demo

Usage

  <AdjustableButton
    handleClick={() => { console.log('passed check func');}}
    columns={4}
    value="example button"
    />

The above example shows the component being used to render a button capable of being set inline as four columns. However the component does not automatically assume that the user wants any button to be inline. That is why we have included the option of adding personalized styling classes to the component, so that the user and make that definition for themselves. To do so:

  <AdjustableButton
    handleClick={() => { console.log('passed check func');}}
    columns={4}
    value="example button"
    addedClassName="whatever style definitions you want"
    />

As you may notice the handleClick function above takes in a give function to be used as the onClick for the AdjustableButton. In the example we use a simple console.log call back. You can pass whatever function you'd like.

Another option in AdjustableButton is to set the value or text of the Button. simply pass in whatever string you want to be set as the button text and it will automatically adjust to the appropriate size.

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago