preskok/ui

Preskok Icon

The official Preskok brand icon component.

Installation

pnpm dlx @preskok-org/ui@latest add preskok-icon

Usage

import { PreskokIcon } from "@/registry/preskok/ui/preskok-ui/preskok-icon"
 
export function PreskokIconDemo() {
  return <PreskokIcon className="size-12" />
}

Props

PropTypeDefaultDescription
classNamestring-Additional CSS classes for sizing

Examples

The icon scales based on the size classes you provide:

<PreskokIcon className="size-8" />   // Small (32px)
<PreskokIcon className="size-12" />  // Medium (48px)
<PreskokIcon className="size-16" />  // Large (64px)
<PreskokIcon className="size-24" />  // Extra Large (96px)