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