Arrow Thick Left Linear Icon for Vue
<CIcon :icon="cilArrowThickLeft" />About
The arrow thick left linear icon provides bold leftward direction indication in Vue applications. Use this icon for prominent back navigation, previous actions, or important leftward movement. Perfect for primary navigation controls, back buttons, and carousel interfaces built with Vue.
The linear style offers thicker stroke for increased visual weight and prominence while maintaining clarity at all screen sizes, making it ideal for primary navigation in both desktop and mobile Vue applications. This icon integrates seamlessly with CoreUI’s Vue component library.
Common Use Cases
Primary Back Button
Prominent back navigation in your Vue application header
Media Player Previous
Navigate to previous track or video in Vue media players
Image Gallery Previous
Show previous image in Vue photo galleries
Best Practices
- Use for primary leftward actions requiring visual emphasis
- Maintain consistent thickness across all thick arrow variants
- Disable clearly when at first item in sequence
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 { cilArrowThickLeft } from '@coreui/icons';
<CIcon :icon="cilArrowThickLeft" />Read the full CoreUI Vue Icon component documentation to see the complete API and integration guide.