1.11.5 • Published 5 months ago

react-bootstrap-icons v1.11.5

Weekly downloads
14,962
License
MIT
Repository
github
Last release
5 months ago

React Bootstrap Icons

The brand new Bootstrap Icons library to use as React components.

Currently v1.11.3, over 2000 icons!

bootstrap-icons

Installation

npm install react-bootstrap-icons --save

or

yarn add react-bootstrap-icons

Usage

import { ArrowRight } from 'react-bootstrap-icons';

export default function App() {
  return <ArrowRight />;
}

Icons can be configured with inline props:

<ArrowRight color="royalblue" size={96} />

You can pass whatever props you want:

<ArrowRight className="ml-4" />

You can also include the whole icon pack:

import * as Icon from 'react-bootstrap-icons';

export default function App() {
  return <Icon.ArrowRight />;
}

The icon names are the PascalCase version of the original name. For those icons whose name begins with a number, the Icon prefix will be used. Examples: arrow-rightArrowRight, 1-circleIcon1Circle.

You can also create an Icon component and pass it the icon name as a prop:

import * as icons from 'react-bootstrap-icons';

interface IconProps extends icons.IconProps {
  // Cannot use "name" as it is a valid SVG attribute
  // "iconName", "filename", "icon" will do it instead
  iconName: keyof typeof icons;
}

export const Icon = ({ iconName, ...props }: IconProps) => {
  const BootstrapIcon = icons[iconName];
  return <BootstrapIcon {...props} />;
}
import { Icon } from './Icon';

export default function App() {
  return (
    <Icon
      iconName="Stopwatch"
      color="royalblue"
      size={96}
      className="align-top"
    />
  );
}

IconProps

NameTypeDescription
color?stringcolor of the icon
size?string | numbersize of the icon (width and height)
title?stringprovides an accessible, short-text description
className?stringbi bi-{icon-name} and add your own classes

Figma Plugin

You can install it from the Figma app: Bootstrap Icons Plugin for Figma

More options

Other ways to use Boostrap icons: https://icons.getbootstrap.com/#usage

License

  • react-bootstrap-icons are open-sourced (MIT)
  • Bootstrap Icons are open-sourced (MIT).

Collaborators

fmlxcustom-common-uireact-locked-input@caesuraco/react-music-scorereact-crud-providerreact-bootstrap5@j3a/strapi-plugin-slatesinopia_editor@marjo-luc/jobs-dps-jupyter-extension@maap-jupyterlab/jobs-dps-jupyter-extensionreact-bootstrap-origamireact-origami-uploader@infinitebrahmanuniverse/nolb-react-bohuiggy-appka-loginka-productpageka-receiptsweetmodalscomponents-bullseyecaroumesh-backup@everything-registry/sub-chunk-2542chat-bot-v1tariff-app-frontworkflow_raywhittesterloop-frontendtesting-zilis-component-librarytest-wizard-app-daanswf-visualizer@cmdk/react-ui-toolkit@cmdk/stage-toolkit@drakkar-org/fin-uijarvis-kb-reactiot-react-gridka-login-package-reactjupyterlab_unianalytics_dashboardkinto-adminkiva-protocol-ui-kitlc-informationboxlc-donutlc-selectionboxlc-vrankla-floweritaformbuilderbyaniket1formbuilderbyaniket10formbuilderbyaniket11formbuilderbyaniket12formbuilderbyaniket13formbuilderbyaniket14formbuilderbyaniket15formbuilderbyaniket17formbuilderbyaniket51formbuilderbyaniket6formbuilderbyaniket7formbuilderbyaniket8formbuilderbyaniket9formbuilderbyaniket18formbuilderbyaniket19formbuilderbyaniket2formbuilderbyaniket20formbuilderbyaniket21formbuilderbyaniket3formbuilderbyaniket4formbuilderbyaniket5formbuilderbyaniket50priorieditabletablepollination-widgetssunny-component-library2trolza33trolza34@airjam/react-calendar@airjam/react-calendar-ci@appquality/appquality-design-system@appquality/tryber-streamplayer@asup/tree-of-nodes@ashu_endless/dataform@ask-christee/ui-response@archsense/orakul-ui@astrakraft/default-theme@bgabor997/meow-components@datumllc/questionnaire-client@datumllc/questionnaire-client-lib@davidgs/react-google-calendar@dci-edtech/formica@dci-edtech/formicauiyoshimitsu-toast-libraryweb-internalunivalley-osuois-grantinguoisfrontenduo-granting-appuo-presence-appuo_project_components@iangiffen/dropdown@holmesdev/sync@huongda-group/lexical-file-manager@fresler/fresler-table@fmfi-uk-1-ain-412/formalization-checker@influenzanet/case-web-app-core@iqss/dataverse-design-system@m7kra/react-utils@maap-jupyterlab/dps-jupyter-extension
1.11.5

5 months ago

1.11.4

1 year ago

1.11.3

1 year ago

1.10.3

2 years ago

1.10.2

2 years ago

1.9.1

3 years ago

1.8.4

3 years ago

1.8.3

3 years ago

1.8.2

3 years ago

1.8.1

3 years ago

1.7.2

3 years ago

1.6.1

4 years ago

1.5.0

4 years ago

1.4.1

4 years ago

1.4.0

4 years ago

1.3.0

4 years ago

1.2.3

4 years ago

1.2.0

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.1.0

4 years ago

1.0.0

5 years ago

1.0.3-alpha5

5 years ago

1.0.3-alpha4

5 years ago

1.0.2-alpha4

5 years ago

1.0.2-alpha3

5 years ago

1.0.1-alpha3

5 years ago

1.0.0-alpha3

5 years ago

1.0.0-alpha2

5 years ago

1.0.1-alpha

5 years ago

1.0.0-alpha

5 years ago