Welcome to Solid Bits - a modern UI component library built for SolidJS with UnoCSS. It's a faithful port of the popular React Bits library, bringing beautiful animations and interactive components to the SolidJS ecosystem.
Get up and running with Solid Bits in minutes:
npm install solid-bitsOr if you prefer pnpm:
pnpm add solid-bitsImport and use components in your SolidJS application:
import { GlassIconsUno } from 'solid-bits';
export default function App() {
const items = [
{ label: "Home", icon: <HomeIcon /> },
{ label: "About", icon: <AboutIcon /> }
];
return (
<GlassIconsUno items={items} />
);
}Solid Bits offers two styling approaches:
Vanilla CSS with custom properties for maximum control
Atomic utility classes for rapid development