
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
react-motion-float-button
Advanced tools
A simple React component floating button library which can be customized by developers.
npm install react-motion-float-button --save
or
yarn add react-motion-float-button
you can easily use icons in button by installing emotion-icons
npm install emotion-icons --save
or
yarn add emotion-icons
You can customize opening direction, size, colors of buttons via props. Other motions and options will be added soon
import {
Direction,
FloatMenuItemButton,
FloatingGroup,
Size,
} from "react-motion-float-button";
you can add emotion-icons and use various icons by importing only you need
import { Twitter } from "@emotion-icons/simple-icons";
import { Facebook, Instagram, Share } from "@emotion-icons/remix-fill";
also can customize icons, colors and define functions
const handleButton = () => {
console.log("you clicked first icon!");
};
return (
<>
<FloatingGroup size={Size.REGULAR} direction={Direction.TOP} spacing={100}>
<FloatMenuItemButton
icon={<Twitter size="50%" />}
buttonColor="#00ACEE"
onClick={handleButton}
/>
<FloatMenuItemButton
icon={<Instagram size="60%" />}
buttonColor="#4f5bd5"
/>
<FloatMenuItemButton
icon={<Facebook size="20%" />}
buttonColor="#3B5998"
/>
<FloatMenuItemButton icon={<Share size="50%" />} buttonColor="#16dbc2" />
</FloatingGroup>
</>
);
| Prop | Type | Description |
|---|---|---|
| size | String | Button size; REGULAR is 56px, SMALL is 40px |
| Direction | String | spread direction; TOP, BOTTOM, LEFT, RIGHT |
| Spacing | Number | margin of button container; default is 20 |
| Prop | Type | Description |
|---|---|---|
| icon | Component | icon component |
| buttonColor | String | each icon's color |
4 FE Developers 🧞♂️
FAQs
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.