Barrel export file that re-exports all security-related icon components from their individual modules, providing a single entry point for the security icons collection. ## Key Components | Export | Description | |--------|-------------| | `AuditIcon` | Audit/review action icon | | `BannedIcon` | Banned/blocked state icon | | `FingerprintIcon` | Biometric fingerprint icon | | `KeyholeCircleIcon` / `KeyholeSquareIcon` | Keyhole shape variants | | `KeyIcon` / `KeySkeletonIcon` | Key representations | | `LockIcon` + variants | Lock states: `LockAltIcon`, `LockCheckIcon`, `LockCircleIcon`, `LockKeyholeIcon`, `LockKeyholeOffIcon`, `LockOpenIcon`, `LockOpenKeyholeIcon`, `LockSquareIcon` | | `PasscodeIcon` | Passcode/PIN entry icon | | `ScanIcon` | Scan/detect action icon | | `ShieldIcon` + variants | Shield states: `ShieldAltIcon`, `ShieldCheckIcon`, `ShieldExclamationIcon`, `ShieldKeyholeIcon`, `ShieldLightningIcon`, `ShieldLockIcon`, `ShieldMinusIcon`, `ShieldOffIcon`, `ShieldPlusIcon`, `ShieldUserIcon`, `ShieldWifiIcon`, `ShieldXmarkIcon` | | `SignatureIcon` / `SignatureDocumentIcon` | Signature-related icons | | `UnlockIcon` / `UnlockKeyholeIcon` | Unlocked state icons | ## Usage Example ```typescript // Import one or more security icons from the barrel import { ShieldCheckIcon, LockIcon, FingerprintIcon, KeyIcon } from '@/components/icons/security'; // Use in a React/Vue component const SecurityBadge = () => (
); ```