/** * Lock - Locked/secure state * @category security */ import type { IconDefinition } from '../../types'; export const lock: IconDefinition = { name: 'lock', category: 'security', description: 'Locked/secure state with padlock', tags: ['lock', 'secure', 'private', 'protected', 'closed'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default lock;