npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

tabler-icons-solid-ssr

v1.0.7

Published

All 4964+ Tabler icons (outline + filled) for SolidJS/SolidStart with full SSR support

Readme

🎨 tabler-icons-solid-ssr

CREATED 100% WITH CLAUDE.AI (What a shame! 🫣)

Complete Tabler Icons library optimized for SolidJS and SolidStart with full SSR support.

✨ Features

  • Full SSR: Works perfectly with SolidStart
  • 🎯 Tree-shakeable: Imports only the icons you use
  • 📦 No dependencies: Only a peer dependency on solid-js
  • 🔄 Always up-to-date: Icons synced with the official Tabler repository
  • 💪 TypeScript: Full types included
  • Performance: Native JSX, no runtime overhead
  • 🎨 ~4964 icons: ALL variants (outline + filled)

📦 Installation

npm install tabler-icons-solid-ssr

🚀 Basic Usage

import {
  IconHome, // Outline (default)
  IconHomeFilled, // Filled
  IconUser,
  IconUserFilled,
  IconSettings,
  IconBrandGithub,
  IconBrandGithubFilled,
} from "tabler-icons-solid-ssr";

function App() {
  return (
    <div>
      {/* Outline icon (stroke) */}
      <IconHome />

      {/* Filled icon */}
      <IconHomeFilled color="blue" />

      {/* With custom props */}
      <IconUser size={32} color="red" />

      {/* With CSS classes */}
      <IconSettings class="text-gray-500 hover:text-gray-700" />

      {/* Brand icon */}
      <IconBrandGithub size={24} />
    </div>
  );
}

🎨 Available Props

All icons accept the following props:

| Prop | Type | Default | Description | | ---------- | ------------------ | ---------------- | ----------------------- | | size | number \| string | 24 | Icon size in pixels | | color | string | "currentColor" | Stroke/fill color | | class | string | undefined | Custom CSS classes | | ...props | SVGAttributes | - | Any valid SVG attribute |

📊 Available Icons

This library contains ALL Tabler Icons (~4964 icons):

Variants:

🔲 Outline (Stroke)

Icons with outlines, ideal for modern and clean interfaces.

import { IconHome, IconUser, IconSettings } from 'tabler-icons-solid-ssr';

<IconHome />
<IconUser />
<IconSettings />

⬛ Filled

Filled icons, perfect for active states or stronger emphasis.

import { IconHomeFilled, IconUserFilled, IconSettingsFilled } from 'tabler-icons-solid-ssr';

<IconHomeFilled />
<IconUserFilled />
<IconSettingsFilled />

Naming:

  • Outline: Icon{Name} (ex: IconBrandGithub)
  • Filled: Icon{Name}Filled (ex: IconBrandGithubFilled)

💡 Usage Examples

With SolidStart (SSR)

// routes/index.tsx
import {
  IconBrandGithub,
  IconStar,
  IconStarFilled,
} from "tabler-icons-solid-ssr";

export default function Home() {
  return (
    <div>
      <h1>My SolidStart App</h1>

      <button class="flex items-center gap-2">
        <IconBrandGithub size={20} />
        View on GitHub
      </button>

      <div class="flex gap-1">
        <IconStarFilled color="gold" size={24} />
        <IconStarFilled color="gold" size={24} />
        <IconStarFilled color="gold" size={24} />
        <IconStar color="gold" size={24} />
        <IconStar color="gold" size={24} />
      </div>
    </div>
  );
}

Toggle Between Outline and Filled

import { IconHeart, IconHeartFilled } from "tabler-icons-solid-ssr";
import { createSignal } from "solid-js";

function LikeButton() {
  const [liked, setLiked] = createSignal(false);

  return (
    <button onClick={() => setLiked(!liked())}>
      {liked() ? (
        <IconHeartFilled color="red" size={24} />
      ) : (
        <IconHeart color="gray" size={24} />
      )}
    </button>
  );
}

With Tailwind CSS

import { IconSearch, IconUser, IconSettings } from "tabler-icons-solid-ssr";

function Navigation() {
  return (
    <nav class="flex gap-4">
      <IconSearch
        class="text-gray-400 hover:text-gray-600 cursor-pointer"
        size={20}
      />
      <IconUser
        class="text-gray-400 hover:text-gray-600 cursor-pointer"
        size={20}
      />
      <IconSettings
        class="text-gray-400 hover:text-gray-600 cursor-pointer"
        size={20}
      />
    </nav>
  );
}

Responsive Sizes

import { IconHome } from "tabler-icons-solid-ssr";

function ResponsiveIcon() {
  return (
    <div>
      <IconHome size={16} class="md:hidden" /> {/* Mobile */}
      <IconHome size={24} class="hidden md:block" /> {/* Desktop */}
    </div>
  );
}

🔍 How to Find Icons

All icons follow the official Tabler Icons naming convention. To see all available icons:

  1. Visit: https://tabler.io/icons
  2. Find the desired icon (e.g., "brand-github")
  3. Use PascalCase: IconBrandGithub (outline) or IconBrandGithubFilled (filled)

⚡ Why this library?

Problem with @tabler/icons-solid

The official @tabler/icons-solid library uses the internal h() function to create elements, which causes SSR issues with SolidStart:

// ❌ Official library - SSR ERROR
import { IconHome } from "@tabler/icons-solid";
// Error: h() is not defined during SSR

Solution: tabler-icons-solid-ssr

This library generates pure SolidJS components using native JSX, fully compatible with SSR:

// ✅ This library - WORKS with SSR
import { IconHome } from "tabler-icons-solid-ssr";
// Works perfectly on both server and client!

🔄 Automatic Updates

This library is updated automatically every week via GitHub Actions, ensuring you always have the latest Tabler Icons.

📄 License

MIT

🤝 Contributing

Contributions are welcome! This is an open-source project.

🔗 Links

  • Tabler Icons – Browse all available icons
  • SolidJS – Reactive framework
  • SolidStart – Meta-framework for SolidJS

⭐ Show your support

If this library was useful, consider giving it a star on GitHub!


Made with ❤️/A.I for the SolidJS community