Icons

Dev Icons

Development and technology brand icons including GitHub, Tailwind CSS, App Store, and Google Play

Loading...
pnpm dlx @sikka/naseem add dev-icons
npx @sikka/naseem add dev-icons
yarn dlx @sikka/naseem add dev-icons
bunx --bun @sikka/naseem add dev-icons

Usage

Import dev icons from the dev-icons barrel:

import { GitHub, Tailwind, AppStore, GooglePlay } from "@/components/naseem-ui/icons/dev-icons"

export default function Example() {
  return (
    <div className="flex gap-4">
      <GitHub className="h-8 w-8" />
      <Microsoft className="h-8 w-8" />
      <AppStore className="h-8 w-8" />
      <GooglePlay className="h-8 w-8" />
    </div>
  )
}

Available Dev Icons

IconComponentImport
GitHubGitHub@/components/naseem-ui/icons/dev-icons
Tailwind CSSTailwind@/components/naseem-ui/icons/dev-icons
App StoreAppStore@/components/naseem-ui/icons/dev-icons
Google PlayGooglePlay@/components/naseem-ui/icons/dev-icons

Props

All icon components accept standard SVG props:

PropTypeDescription
classNamestringCSS classes for styling (size, color, etc.)
styleReact.CSSPropertiesInline styles

File Structure

components/naseem-ui/icons/
├── dev-icons.tsx       # Dev icons barrel (GitHub, Tailwind, App Store, Google Play)
├── github.tsx          # Re-exports from dev-icons
├── app-store.tsx       # Re-exports from dev-icons
├── google-play.tsx     # Re-exports from dev-icons

On this page