styled-bootstrap-components
v4.0.0
Published
The bootstrap components created with styled-components
Downloads
374
Maintainers
Readme
styled-bootstrap-components
The bootstrap components made with styled-components.
I wanted to use bootstrap with React for fast prototypes, or as entrypoint for my own UI Component Library, or if I needed just one bootstrap component for my application, now I can simply install that specific component. This repository uses lerna to maintain mumltiple packages.
Installation
npm install --save styled-bootstrap-components
npm install --save styled-components@^4.1.3 react@^16.7.0 # Peer dependencies
or you can install just the components that you need by following the installation guides in the components section.
Usage
For detailed information (also on how to customize this components) take a look at the documentation.
To see which components are available take a look at the components section.
// whatever components you need
import { Button } from 'styled-bootstrap-components';
export const myComponent = (props) => (
<Button>Hello, World!</Button>
);
Components
For detailed information take a look at the documentation.
- Alert Component
- Badge Component
- Base Components
- Breadcrumb Component
- Button Component
- Card Component
- Container Component
- Dropdown Component
- Form Component
- Grid Component
- Jumbotron Component
- Listgroup Component
- Modal Component
- Nav Component
- Navbar Component
- Popover Component
- Table Component
- Tooltip Component
License
MIT © Lukas Aichbauer