All files / src/utils iconSize.ts

100% Statements 4/4
100% Branches 0/0
100% Functions 0/0
100% Lines 4/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19                7x     7x     7x     7x  
/**
 * Standardized icon sizes for lucide-react SVG icons.
 *
 * Use these constants instead of magic numbers so that icon sizing
 * stays consistent across the UI.
 */
 
/** Extra-small icon size (8px) — connection dots, status indicators. */
export const ICON_XS: number = 8;
 
/** Small icon size (12px) — inline status dots, small indicators, expand chevrons. */
export const ICON_SM: number = 12;
 
/** Medium icon size (14px) — tool card icons, close buttons, copy buttons. */
export const ICON_MD: number = 14;
 
/** Large icon size (16px) — navigation icons, notification icons. */
export const ICON_LG: number = 16;