/** * Unlock - Unlocked/accessible state * @category security */ import type { IconDefinition } from '../../types'; export const unlock: IconDefinition = { name: 'unlock', category: 'security', description: 'Unlocked/accessible state with open padlock', tags: ['unlock', 'open', 'accessible', 'unsecured'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default unlock;