🕵️‍♂️

Obscura

The Icons You've Been Missing

Unique Icons for Modern Apps

A minimal React icon library with unique, rare, and niche icons that other libraries miss. Perfect for AI, SaaS dashboards, developer workflows, and modern UI needs.

npm install obscura-icons
22
Unique Icons
7.7kB
Package Size
100%
TypeScript
Tree
Shakable

Available Icons

Usage Example

import { AiBrain, FeatureFlag, MrrChart } from 'obscura-icons';

function App() {
  return (
    <div>
      <AiBrain size={32} color="#3B82F6" />
      <FeatureFlag size={24} />
      <MrrChart size={28} color="#F59E0B" />
    </div>
  );
}