mirror of
https://github.com/alexanderschau/react-bootstrap-icons
synced 2024-12-05 01:42:01 +01:00
.github/workflows | ||
src | ||
.eslintrc | ||
.gitignore | ||
.prettierignore | ||
.prettierrc | ||
CODE_OF_CONDUCT.md | ||
hero.png | ||
LICENSE.md | ||
package.json | ||
README.md | ||
run-build.sh | ||
tsconfig.json | ||
yarn.lock |
Bootstrap Icons React Component
This package contains a simple React Component, which implements the latest version of Bootstrap Icons into React.
Install
To add the package to your existing React project just type in one of the following commands:
npm i @reacticons/bootstrap-icons
or
yarn add @reacticons/bootstrap-icons
Usage
import React from 'react';
import Icon from '@reacticons/bootstrap-icons';
export const Component = () => (
<>
<Icon name="award" />
</>
);
Supported Icons
This package supports all Bootstrap Icons of the matching version. To see a full list of them, you can take a look at the official Bootstrap Icons website.
Hint
By the way, the <Icon>
Component has the same attributes as a typical <div>
element.
License
MIT
This package is based on the open source Bootstrap Icons project.