Action Redo Linear Icon for Angular
<svg [cIcon]="icons.cilActionRedo"></svg>About
The action redo linear icon is fundamental for implementing redo functionality in Angular applications. Use this icon in text editors, graphic design tools, form builders, or any interface requiring action history management. Perfect for productivity apps, content management systems, and creative tools built with Angular.
The linear style ensures clear directional indication while maintaining visual consistency across all screen sizes, making it ideal for toolbar buttons in both desktop and mobile Angular applications. This icon integrates seamlessly with CoreUI’s Angular component library.
Common Use Cases
Editor Toolbar
Add redo functionality to text or code editors in your Angular application
Form History
Enable redo for form changes in Angular form builders
Canvas Actions
Restore previously undone actions in graphic editors built with Angular
Best Practices
- Disable redo icon when redo stack is empty for clear state indication
- Use keyboard shortcut (Ctrl+Y or Cmd+Shift+Z) alongside icon
- Group with undo icon for intuitive action history controls
Installation
To start using CoreUI Angular Icons in your project, you need to install it as a dependency. Follow the instructions below based on your package manager of choice:
Using npm
npm install @coreui/icons @coreui/icons-angularUsing yarn
yarn add @coreui/icons @coreui/icons-angularUsage
Once you have the package installed, you can import and use the icons in your Angular project. Here's a basic example:
import { IconModule } from '@coreui/icons-angular';
import { cilActionRedo } from '@coreui/icons';
// In your component template:
<svg [cIcon]="icons.cilActionRedo"></svg>Read the full CoreUI Angular Icons documentation to see the complete API and integration guide.