New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

l3ui

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

l3ui

A modern, accessible React component library with TypeScript support

latest
Source
npmnpm
Version
0.1.4
Version published
Maintainers
1
Created
Source

l3ui

A modern, accessible React component library with TypeScript support.

npm version License: MIT

Features

  • 🚀 Modern: Built with React 18+ and TypeScript.
  • 🎨 Beautiful: Pre-styled components with a premium feel.
  • 🌙 Dark Mode: Native dark mode support.
  • 📦 Zero Config: Styles are injected automatically - no extra CSS imports needed.
  • 🧩 Tree Shakeable: Import only what you need.

Installation

npm install l3ui
# or
pnpm add l3ui
# or
yarn add l3ui

Usage

Basic Example

import { Button } from "l3ui";

function App() {
  return (
    <Button variant="primary" onClick={() => alert("Clicked!")}>
      Hello World
    </Button>
  );
}

Using Hooks

import { useCopyToClipboard, Button } from "l3ui";

function CopyButton() {
  const { copy, isCopied } = useCopyToClipboard();

  return (
    <Button onClick={() => copy("Hello!")}>
      {isCopied ? "Copied!" : "Copy Text"}
    </Button>
  );
}

Documentation

For full documentation, component examples, and API references, visit our Documentation Site.

License

MIT © Bishal Babu Bohara

Keywords

react

FAQs

Package last updated on 21 Nov 2025

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