The Icons You've Been Missing
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
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>
);
}