/** * Undo Icon * @category actions */ import type { IconDefinition } from '../../types'; export const undo: IconDefinition = { name: 'undo', category: 'actions', description: 'Undo last action', tags: ['undo', 'revert', 'back', 'reverse', 'arrow-left'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default undo;