/** * Icon Name * @category category-name * * TEMPLATE FILE - Copy this to create a new icon definition * Filename: icon-name.ts (kebab-case) * Export name: iconName (camelCase) */ import type { IconDefinition } from '../types'; export const iconName: IconDefinition = { name: 'icon-name', // kebab-case, matches filename category: 'navigation', // navigation|actions|media|communication|data|security|tech|files|status|social description: 'Brief description of the icon', tags: ['tag1', 'tag2', 'tag3'], svg: ` `, // Optional: Add variants // variants: { // solid: `...`, // duotone: `...`, // glitch: `...`, // }, }; export default iconName;