import { Color } from '@ionic/core'; /** * Props for val-icon component. * * @property name - The icon name (Ionicons). * @property color - The icon color (Ionic color string). * @property size - The icon size ('small' | 'medium' | 'large' | 'xlarge'). */ export interface IconMetadata { size: 'small' | 'medium' | 'large' | 'xlarge'; color: Color; name: string; }