export { default as FileIcon } from './FileIcon.vue';
export { default as FolderIcon } from './FolderIcon.vue';
export { default as ArrowIcon } from './ArrowIcon.vue';
export { default as AddIcon } from './AddIcon.vue';
export { default as RefreshIcon } from './RefreshIcon.vue';
export interface IconProps {
size?: number;
color?: string;
class?: string;
}
export const ICON_SIZES = {
SMALL: 12,
MEDIUM: 16,
LARGE: 20,
XLARGE: 24,
} as const;
export const ICON_COLORS = {
DEFAULT: 'currentColor',
PRIMARY: '#007bff',
SECONDARY: '#6c757d',
SUCCESS: '#28a745',
DANGER: '#dc3545',
WARNING: '#ffc107',
INFO: '#17a2b8',
} as const;