/** * Copy Icon * @category actions */ import type { IconDefinition } from '../../types'; export const copy: IconDefinition = { name: 'copy', category: 'actions', description: 'Copy to clipboard', tags: ['copy', 'clipboard', 'duplicate', 'clone', 'paste'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default copy;