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

untitledui-js

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

untitledui-js

latest
Source
npmnpm
Version
2.2.232
Version published
Weekly downloads
2.8K
-27.35%
Maintainers
1
Weekly downloads
 
Created
Source

Untitled UI Logo

The Official Javascript Library for Untitled UI Icons
Full SVG Support for React, Vue, Solid, Qwik

Overview

Official JavaScript implementation of Untitled UI icons. Features:

  • Full SVG specification support
  • Framework packages: React (17+), Vue 3, SolidJS, Qwik
  • TypeScript-first
  • Tree-shaking
  • Semantic versioning

Official Documentation

Installation

# Base package
npm install untitledui-js

# React + Motion
npm install untitledui-js motion

Unified API

// React/Solid/Qwik
<Icon size={24} color="currentColor" />

<!-- Vue -->
<icon :size="24" color="var(--primary)" />

React Motion

import { motion } from "motion/react";

<Icon
  animation={{
    motion: motion,
    attributes: {
      svg: { whileHover: { scale: 1.1 } },
      path: { transition: { duration: 0.5 } },
    },
  }}
/>;

Core Features

SVG Compliance

All icons support standard SVG attributes:

  • viewBox, fill, stroke
  • Class/style overrides
  • Accessibility attributes (aria-*, role)

Compatibility

FrameworkVersion
React17+
Vue3+
Solid & Qwik1+

License

MIT © 2023 Untitled UI

Full License

Keywords

react

FAQs

Package last updated on 05 Mar 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