Socket
Book a DemoInstallSign in
Socket

@foomo/ui

Package Overview
Dependencies
Maintainers
4
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@foomo/ui

latest
npmnpm
Version
0.0.4
Version published
Maintainers
4
Created
Source

@foomo/ui

A modern React component library built with Tailwind CSS v4, TypeScript, and Radix UI primitives.

Features

  • 🎨 Built with Tailwind CSS v4
  • 🔧 Full TypeScript support
  • 📦 Tree-shakeable - import only what you need
  • 🎯 No barrel exports - better performance
  • 🌗 Dark mode support
  • ♿ Accessible components via Radix UI

Installation

npm install @foomo/ui

Usage

Import the CSS file once in your app:

// In your app's entry file (e.g., App.tsx or main.tsx)
import "@foomo/ui/ui.css";

Import components individually:

import { Button } from "@foomo/ui/components/button";
import { cn } from "@foomo/ui/lib/utils";

function App() {
  return (
    <div>
      <Button variant="outline" size="lg">
        Get Started
      </Button>

      <Button variant="destructive" className={cn("mt-4")}>
        Delete Item
      </Button>
    </div>
  );
}

Development

# Install dependencies
bun install

# Start Storybook
bun run storybook

# Build the library
bun run build

FAQs

Package last updated on 18 Aug 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