/** * Shield Check - Verified/protected * @category security */ import type { IconDefinition } from '../../types'; export const shieldCheck: IconDefinition = { name: 'shield-check', category: 'security', description: 'Verified or protected status with shield and checkmark', tags: ['shield', 'check', 'verified', 'protected', 'secure', 'approved'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default shieldCheck;