/** * Key - Access/authentication key * @category security */ import type { IconDefinition } from '../../types'; export const key: IconDefinition = { name: 'key', category: 'security', description: 'Access key for authentication', tags: ['key', 'access', 'authentication', 'password', 'credential'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default key;