import React from 'react'; export interface IconProps { width?: number; height?: number; color?: string; [key: string]: any; } /** * Template for creating new SVG icons * * Steps to create a new icon: * 1. Copy this template * 2. Rename to YourIconName.tsx * 3. Replace the SVG content below with your SVG * 4. Update the component name * 5. Add to the appropriate category folder * 6. Export in index.ts */ declare const IconTemplate: React.FC; export default IconTemplate;