import { Color } from '@ionic/core'; /** * Props for val-box component. * * @property color - The color of the box (Ionic color string). * @property icon - The name of the icon to display (optional). * @property bordered - Whether the box has a border (optional). * @property leftBorder - Whether the box has a left border (optional). * @property rounded - Whether the box has rounded corners (optional). * @property padding - Custom padding for the box (optional). */ export interface BoxMetadata { color: Color; icon: string; bordered?: boolean; leftBorder?: boolean; rounded?: boolean; padding?: string; }