Arrow Bottom Solid Icon for Vue
<CIcon :icon="cisArrowBottom" />About
The arrow bottom solid icon indicates downward direction or action in Vue applications. Use this icon for dropdown menus, scroll indicators, sort descending actions, or downward navigation. Perfect for navigation systems, data tables, and expandable interfaces built with Vue.
The solid style provides clear directional indication while maintaining visual simplicity across all screen sizes, making it ideal for UI controls in both desktop and mobile Vue applications. This icon integrates seamlessly with CoreUI’s Vue component library.
Common Use Cases
Dropdown Trigger
Indicate expandable dropdown menus in your Vue navigation
Sort Descending
Enable descending sort order in Vue data tables
Scroll Indicator
Show more content available below in Vue interfaces
Best Practices
- Animate rotation when expanding/collapsing for better UX
- Use consistent arrow direction across similar UI patterns
- Ensure sufficient click/tap target size on mobile
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-pro @coreui/icons-vueUsing yarn
yarn add @coreui/icons-pro @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 { cisArrowBottom } from '@coreui/icons-pro';
<CIcon :icon="cisArrowBottom" />Read the full CoreUI Vue Icon component documentation to see the complete API and integration guide.