1.11.0 • Published 6 months ago

mui-icons-bootstrap v1.11.0

Weekly downloads
-
License
ISC
Repository
github
Last release
6 months ago

mui-icons-bootstrap

Bootstrap icons as MUI SvgIcon components

Install

npm install --save mui-icons-bootstrap

Usage

import { Button } from '@mui/material';
import { ArrowDown } from 'mui-icons-bootstrap';

function MyApp() {
  return (
    <div>
      <Button>
        Click Me <ArrowDown />
      </Button>
    </div>
  );
}

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.