https://github.com/guoyunhe/mui-icons-bootstrap
Bootstrap icons as MUI SvgIcon components
https://github.com/guoyunhe/mui-icons-bootstrap
Last synced: 3 months ago
JSON representation
Bootstrap icons as MUI SvgIcon components
- Host: GitHub
- URL: https://github.com/guoyunhe/mui-icons-bootstrap
- Owner: guoyunhe
- License: gpl-3.0
- Created: 2022-07-02T08:56:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-05T10:26:02.000Z (over 1 year ago)
- Last Synced: 2025-02-12T02:34:37.296Z (4 months ago)
- Language: TypeScript
- Size: 1.78 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# mui-icons-bootstrap
Bootstrap icons as MUI SvgIcon components
## Install
```bash
npm install --save mui-icons-bootstrap
```## Usage
```jsx
import { Button } from '@mui/material';
import { ArrowDown } from 'mui-icons-bootstrap';function MyApp() {
return (
Click Me
);
}
```## Explore
See https://icons.getbootstrap.com/
The component name consists of pascal-case of icon name. For example, the icon `arrow-down` relates to component `ArrowDown`.
For icon names starting with numbers, the component name will start with 'The'. For example, the icon `123` relates to component `The123`.