/** * Double Check Icon * @category actions */ import type { IconDefinition } from '../../types'; export const doubleCheck: IconDefinition = { name: 'double-check', category: 'actions', description: 'Double checkmark for read/delivered status', tags: ['check', 'checkmark', 'confirm', 'read', 'delivered', 'double'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default doubleCheck;