Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cool-react-floating-button

Package Overview
Dependencies
Maintainers
0
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cool-react-floating-button

Customizable, animated and modern floating button with multiple options and backdrop

  • 0.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
22
decreased by-87.5%
Maintainers
0
Weekly downloads
 
Created
Source

A lightweight, animated floating button component for React, perfect for modern UI's. Easily customizable with multiple options, backdrop darkening, and Tailwind styling support.

Key Features

  • Smooth Animations: Eye-catching open/close animations.
  • Customizable: Tailwind-compatible for seamless integration with your styling.
  • Multiple Options: Supports multiple action buttons in a flexible menu.
  • Backdrop Darkening: Optional overlay for focused interactions.

Installation

Install with npm

npm i cool-react-floating-button

Usage

Import

import {
    FloatingButton,
    FloatingButtonIcon,
    FloatingButtonOptionContainer,
    FloatingButtonOption,
    FloatingButtonOptionIcon,
    FloatingButtonOptionLabel,
} from "cool-react-floating-button";

Use in app

import React, { useState } from "react";
import { Plus, User } from "lucide-react";

function App() {
    const [open, setOpen] = useState(false);

    return (
        <FloatingButton open={open} setFloatBtnOpen={setOpen}>
            <FloatingButtonIcon>
                <Plus />
            </FloatingButtonIcon>
            <FloatingButtonOptionContainer>
                <FloatingButtonOption onClick={() => alert("Department clicked!")}>
                    <FloatingButtonOptionIcon>
                        <User />
                    </FloatingButtonOptionIcon>
                    <FloatingButtonOptionLabel>Department</FloatingButtonOptionLabel>
                </FloatingButtonOption>
                <FloatingButtonOption onClick={() => alert("Coordinator clicked!")}>
                    <FloatingButtonOptionIcon>
                        <User />
                    </FloatingButtonOptionIcon>
                    <FloatingButtonOptionLabel>Coordinator</FloatingButtonOptionLabel>
                </FloatingButtonOption>
            </FloatingButtonOptionContainer>
        </FloatingButton>
    );
}
export default App;

Keywords

FAQs

Package last updated on 13 Nov 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc