{"id":13816138,"url":"https://github.com/aichbauer/styled-bootstrap-components","last_synced_at":"2025-04-04T20:15:37.329Z","repository":{"id":30492627,"uuid":"124130097","full_name":"aichbauer/styled-bootstrap-components","owner":"aichbauer","description":"The bootstrap components made with styled-components 💅","archived":false,"fork":false,"pushed_at":"2023-01-04T01:22:33.000Z","size":7820,"stargazers_count":212,"open_issues_count":119,"forks_count":26,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-28T19:11:52.519Z","etag":null,"topics":["bootstrap","css","design-system","grid","javascript","layout","react","react-components","styled-bootstrap-components","styled-components","theme","ui"],"latest_commit_sha":null,"homepage":"https://aichbauer.github.io/styled-bootstrap-components/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aichbauer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-03-06T19:48:13.000Z","updated_at":"2024-10-11T19:31:58.000Z","dependencies_parsed_at":"2023-01-14T17:15:26.039Z","dependency_job_id":null,"html_url":"https://github.com/aichbauer/styled-bootstrap-components","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aichbauer%2Fstyled-bootstrap-components","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aichbauer%2Fstyled-bootstrap-components/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aichbauer%2Fstyled-bootstrap-components/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aichbauer%2Fstyled-bootstrap-components/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aichbauer","download_url":"https://codeload.github.com/aichbauer/styled-bootstrap-components/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246988564,"owners_count":20865291,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap","css","design-system","grid","javascript","layout","react","react-components","styled-bootstrap-components","styled-components","theme","ui"],"created_at":"2024-08-04T05:00:35.579Z","updated_at":"2025-04-04T20:15:37.298Z","avatar_url":"https://github.com/aichbauer.png","language":"JavaScript","readme":"# styled-bootstrap-components\n\n[![npm](https://img.shields.io/npm/v/styled-bootstrap-components.svg?style=flat-square)](https://www.npmjs.com/package/styled-bootstrap-components)\n[![Travis branch](https://img.shields.io/travis/aichbauer/styled-bootstrap-components/master.svg?style=flat-square)](https://travis-ci.org/aichbauer/styled-bootstrap-components)\n[![Codecov branch](https://img.shields.io/codecov/c/github/aichbauer/styled-bootstrap-components/master.svg?style=flat-square)](https://codecov.io/gh/aichbauer/styled-bootstrap-components)\n[![storybook](https://img.shields.io/badge/docs%20with-storybook-f1618c.svg?style=flat-square)](https://aichbauer.github.io/styled-bootstrap-components)\n[![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg?style=flat-square)](https://lernajs.io/)\n\n\u003e The [bootstrap](https://getbootstrap.com) components made with [styled-components](https://styled-components.com).\n\n## Table of Contents\n\n* [Documentation](https://aichbauer.github.io/styled-bootstrap-components)\n* [Why?](#why)\n* [Installation](#installation)\n* [Usage](#Usage)\n* [Components](#components)\n* [Related](#related)\n* [License](#license)\n\n## Why?\n\n* I wanted to use [bootstrap](https://getbootstrap.com) with [React](https://reactjs.org/) for **fast prototypes**, or as an 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. To work with ease with any other library or framework these components are built with [styled-components](https://styled-components.com).\n* I wanted to learn a bit more on how CSS works and on how to build a CSS UI Library from scratch, mostly but not only by reading the [bootstrap CSS code](https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.css) and the [MDN web docs](https://developer.mozilla.org/en-US/docs/Web/CSS). \n* I wanted to learn how to manage and maintain a monorepo with multiple packages based on [lerna](https://lernajs.io/).\n\n## Installation\n\nYou can install all bootstrap components with...\n\n\u003e Note: every component has a peer dependency on `styled-components` \u003e v4. To use these components you also need to `npm i styled-components -S`.\n\n```sh\n$ npm i styled-bootstrap-components -S\n```\n\nor\n\n```sh\n$ yarn add styled-bootstrap-components\n```\n\nor you can install just the components that you need by following the installation guides in the [components section](#components).\n\n## Usage\n\nFor detailed information (also on how to customize these components) take a look at the [documentation](https://aichbauer.github.io/styled-bootstrap-components).\n\nTo see which components are available take a look at the [components section](#components).\n\n```jsx\n// whatever components you need\nimport { Button } from 'styled-bootstrap-components';\n\nexport const myComponent = (props) =\u003e (\n  \u003cButton\u003eHello, World!\u003c/Button\u003e\n);\n```\n\n## Components\n\nFor detailed information take a look at the [documentation](https://aichbauer.github.io/styled-bootstrap-components).\n\n* [Alert Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-alert-component#readme)\n* [Badge Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-badge-component#readme)\n* [Base Components](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-base-components#readme)\n* [Breadcrumb Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-breadcrumb-component#readme)\n* [Button Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-button-component#readme)\n* [Card Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-card-component#readme)\n* [Container Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-container-component#readme)\n* [Dropdown Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-dropdown-component#readme)\n* [Form Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-form-component#readme)\n* [Grid Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-grid-system-component#readme)\n* [Jumbotron Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-jumbotron-component#readme)\n* [Listgroup Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-listgroup-component#readme)\n* [Modal Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-modal-component#readme)\n* [Nav Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-nav-component#readme)\n* [Navbar Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-navbar-component#readme)\n* [Popover Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-popover-component#readme)\n* [Table Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-table-component#readme)\n* [Tooltip Component](https://github.com/aichbauer/styled-bootstrap-components/tree/master/packages/styled-tooltip-component#readme)\n\n## Related\n\n* [bootstrap](https://getbootstrap.com)\n* [styled-components](https://styled-components.com)\n\n## License\n\nMIT © Lukas Aichbauer\n","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faichbauer%2Fstyled-bootstrap-components","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faichbauer%2Fstyled-bootstrap-components","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faichbauer%2Fstyled-bootstrap-components/lists"}