Arrow Left Linear Icon for Vue
<CIcon :icon="cilArrowLeft" />About
The arrow left linear icon indicates leftward direction or action in Vue applications. Use this icon for back navigation, previous actions, or leftward movement. Perfect for navigation systems, carousels, and multi-step interfaces built with Vue.
The linear style provides clean directional indication while maintaining visual simplicity across all screen sizes, making it ideal for navigation controls in both desktop and mobile Vue applications. This icon integrates seamlessly with CoreUI’s Vue component library.
Common Use Cases
Back Button
Navigate to previous page or view in your Vue application
Carousel Previous
Show previous slide in Vue image or content carousels
Timeline Navigation
Move backward in time-based Vue interfaces
Best Practices
- Use in mobile headers for consistent back navigation pattern
- Disable when at first item for clear state indication
- Ensure minimum 44x44px touch target on mobile devices
Installation
To start using CoreUI Vue 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-vueUsing yarn
yarn add @coreui/icons @coreui/icons-vueUsage
Once you have the package installed, you can import and use the icons in your Vue 3 project. Here's a basic example:
import { CIcon } from '@coreui/icons-vue';
import { cilArrowLeft } from '@coreui/icons';
<CIcon :icon="cilArrowLeft" />Read the full CoreUI Vue Icon component documentation to see the complete API and integration guide.