/**
* Redo Icon
* @category actions
*/
import type { IconDefinition } from '../../types';
export const redo: IconDefinition = {
name: 'redo',
category: 'actions',
description: 'Redo last undone action',
tags: ['redo', 'forward', 'repeat', 'arrow-right', 'restore'],
svg: ``,
variants: {
solid: ``,
duotone: ``,
glitch: ``,
},
};
export default redo;