An open API service indexing awesome lists of open source software.

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

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`.