1.11.4 • Published 20 days ago

react-bootstrap-icons v1.11.4

Weekly downloads
14,962
License
MIT
Repository
github
Last release
20 days 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-uploaderstrapi-plugin-slate@infinitebrahmanuniverse/nolb-react-bohuiggy-appka-loginka-productpageka-receiptsweetmodalscomponents-bullseyecaroumesh-backup@everything-registry/sub-chunk-2542hiveguard-frontendjupyterlab_unianalytics_dashboardka-login-package-reactlhcb-ntuple-wizardlhcb-ntuple-wizard-bugfixkozmycz-workflowlc-vranklc-selectionboxlc-informationboxlc-donutmaftest-buttoninupcoinupco-packageinupco-test-packagelightbox.js-reactkiva-protocol-ui-kitformbuilderbyaniket1formbuilderbyaniket10formbuilderbyaniket11formbuilderbyaniket12formbuilderbyaniket13formbuilderbyaniket14formbuilderbyaniket15formbuilderbyaniket17formbuilderbyaniket51formbuilderbyaniket6formbuilderbyaniket7formbuilderbyaniket8formbuilderbyaniket9formbuilderbyaniket18formbuilderbyaniket19formbuilderbyaniket2formbuilderbyaniket20formbuilderbyaniket21formbuilderbyaniket3formbuilderbyaniket4formbuilderbyaniket5formbuilderbyaniket50ev-sdkformbuilderbyaniketformbuilderbyaniket25formbuilderbyaniket26formbuilderbyaniket27formbuilderbyaniket30formbuilderbyaniket31formbuilderbyaniket32formbuilderbyaniket33formbuilderbyaniket34formbuilderbyaniket35formbuilderbyaniket36formbuilderbyaniket37formbuilderbyaniket38formbuilderbyaniket39formbuilderbyaniket40formbuilderbyaniket41formbuilderbyaniket42formbuilderbyaniket47formbuilderbyaniket43formbuilderbyaniket44formbuilderbyaniket45formbuilderbyaniket46facilitypackageexampleee_frontgaguru-clibgdg-clibgdg-component-libraryordering-uiordering-ui-adminordering-ui-admin-externalordering-ui-externalpackage-ugpdi_testing_compperinc-ui-reactperinc-ui-react-packagela-flowerita@dci-edtech/formica@dci-edtech/formicauikinto-adminnice-simple-captcha
1.11.4

20 days ago

1.11.3

3 months ago

1.10.3

1 year ago

1.10.2

1 year ago

1.9.1

2 years ago

1.8.4

2 years ago

1.8.3

2 years ago

1.8.2

2 years ago

1.8.1

2 years ago

1.7.2

2 years ago

1.6.1

3 years ago

1.5.0

3 years ago

1.4.1

3 years ago

1.4.0

3 years ago

1.3.0

3 years ago

1.2.3

3 years ago

1.2.0

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.1.0

4 years ago

1.0.0

4 years ago

1.0.3-alpha5

4 years ago

1.0.3-alpha4

4 years ago

1.0.2-alpha4

4 years ago

1.0.2-alpha3

4 years ago

1.0.1-alpha3

4 years ago

1.0.0-alpha3

4 years ago

1.0.0-alpha2

4 years ago

1.0.1-alpha

4 years ago

1.0.0-alpha

4 years ago