Socket
Socket
Sign inDemoInstall

react-bootstrap-buttons

Package Overview
Dependencies
7
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-bootstrap-buttons

React Bootstrap buttons.


Version published
Weekly downloads
107
decreased by-44.27%
Maintainers
1
Install size
337 kB
Created
Weekly downloads
 

Readme

Source

react-bootstrap-buttons build status Coverage Status

NPM

React Bootstrap buttons.

Demo: https://cheton.github.io/react-bootstrap-buttons

Installation

  1. Install react-bootstrap-buttons:
npm install --save react-bootstrap-buttons
  1. Import react-bootstrap-buttons and its styles in your application as follows:
import { Button, ButtonGroup, ButtonToolbar } from 'react-bootstrap-buttons';

// Be sure to include styles at some point, probably during your bootstraping
import 'react-bootstrap-buttons/dist/react-bootstrap-buttons.css';

Create a Buttons component inside your common components directory:

components/
  Buttons/
    index.js

components/Buttons/index.js

import 'react-bootstrap-buttons/dist/react-bootstrap-buttons.css';

export { Button, ButtonGroup, ButtonToolbar } from 'react-bootstrap-buttons';

Then, import Button component in your code:

import { Button } from 'app/components/Buttons';

Examples

Examples for each component can be seen in the documentation.

Here are some online demos of each component:

API

Properties

Button
NameTypeDefaultDescription
tagFunction or String'button'Pass in a component to override default button element.
typeOne of:
'button'
'reset'
'submit'
'button'Specifies the type of button.
lgBooleanLarge button.
mdBooleanMedium button.
smBooleanSmall button.
xsBooleanExtra small button.
btnStyleOne of:
'default'
'primary'
'secondary'
'danger'
'warning'
'info'
'success'
'light'
'dark'
'link'
'default'Component visual or contextual style variants.
outlineBooleanfalseSpecifies whether to remove background image and color on a button.
blockBooleanfalseSpecifies whether to span the full width of a parent.
activeBooleanfalseSpecifies whether to add active effect to a button.
hoverBooleanfalseSpecifies whether to add hover effect to a button.
focusBooleanflaseSpecifies whether to add focus effect to a button.
disabledBooleanflaseSpecifies whether a button should be disabled or not.
ButtonGroup
NameTypeDefaultDescription
lgBooleanLarge button group.
mdBooleanMedium button group.
smBooleanSmall button group.
xsBooleanExtra small button group.
btnStyleOne of:
'default'
'primary'
'secondary'
'danger'
'warning'
'info'
'success'
'light'
'dark'
'link'
Component visual or contextual style variants.
verticalBooleanfalseSpecifies whether a button group should be aligned vertically or not.
ButtonToolbar
NameTypeDefaultDescription

License

MIT

Keywords

FAQs

Last updated on 21 Jul 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc