ObjectUIObjectUI

Icon

Display icons from the Lucide icon library

Examples

Basic Icon

Icon Sizes

Colored Icons

Schema

interface IconSchema {
  type: 'icon';
  name: string;              // Lucide icon name (kebab-case)
  size?: number | 'sm' | 'md' | 'lg' | 'xl';
  color?: string;            // Tailwind color class
  className?: string;
}

On this page