Barrel export file for the **files & documents** icon category, re-exporting all icon components from their individual modules into a single entry point. ## Key Components This index consolidates **74 icon exports** across five logical groups: | Group | Icons | |---|---| | **Clipboard** | `ClipboardIcon`, `ClipboardCheckIcon`, `ClipboardExclamationIcon`, `ClipboardListIcon`, `ClipboardPlusIcon`, `ClipboardMinusIcon`, `ClipboardInfoIcon`, `ClipboardQuestionIcon`, `ClipboardXmarkIcon` | | **Copy / Paste** | `Copy01Icon`, `Copy02Icon`, `Copy03Icon`, `Paste01Icon`, `Paste02Icon`, `Paste03Icon` | | **File** | `FileIcon`, `FileActivityIcon`, `FileAttachmentIcon`, `FileAudioIcon`, `FileChartBarIcon`, `FileCodeIcon`, `FileDollarIcon`, `FileShieldIcon`, `FilesIcon`, and more | | **Folder** | `FolderIcon`, `FolderCheckIcon`, `FolderLockIcon`, `FolderOpenIcon`, `FolderShieldIcon`, `FoldersIcon`, and more | | **Misc** | `BoxArchiveIcon`, `MemoIcon`, `NewspaperIcon`, `PaperclipIcon`, `PinIcon`, `StickerIcon`, `StickersIcon`, and more | ## Usage Example ```typescript // Import individual icons from the barrel import { FileIcon, FolderOpenIcon, ClipboardCheckIcon, Copy01Icon, } from '@/components/icons/files'; // Use in a React/Vue component export function DocumentActions() { return (
); } ```