/** * Shield - Security/protection * @category security */ import type { IconDefinition } from '../../types'; export const shield: IconDefinition = { name: 'shield', category: 'security', description: 'Security shield for protection', tags: ['shield', 'security', 'protection', 'defend', 'guard'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default shield;