A Customizable Material floating button menu implementation made with styled-component & react.
npm install react-floating-btn-menuA Material floating button menu implementation made with styled-component & react
Inspired by react-material-floating-button and react-floating-button-menu with added labels to buttons.
> npm install react-floating-btn-menu --save
See the project page

You can customize opening direction, speed, and styles of each button via props. Other options will be added soon
``javascript
import { FloatingMenu, MainButton, ChildButton } from 'react-floating-button-menu/build';
import MdAdd from 'react-icons/lib/md/add';
import MdClose from 'react-icons/lib/md/close';
...
iconActive={MdClose}
iconColor="white"
backgroundColor="black"
/>
iconColor="black"
order={1}
backgroundColor="white"
label ="Add"
/>
iconColor="black"
order={2}
backgroundColor="white"
label="Add another"
/>
...
`
sh
git clone https://github.com/ifndefdeadmau5/react-floating-btn-menu.git
cd react-floating-button-menu
npm install
cd docs
npm install
npm start
``