Arrow Bottom Linear Icon for React
<CIcon icon={cilArrowBottom} />About
The arrow bottom linear icon indicates downward direction or action in React 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 React.
The linear style provides clear directional indication while maintaining visual simplicity across all screen sizes, making it ideal for UI controls in both desktop and mobile React applications. This icon integrates seamlessly with CoreUI’s React component library.
Common Use Cases
Dropdown Trigger
Indicate expandable dropdown menus in your React navigation
Sort Descending
Enable descending sort order in React data tables
Scroll Indicator
Show more content available below in React 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 React 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-reactUsing yarn
yarn add @coreui/icons @coreui/icons-reactUsage
Once you have the package installed, you can import and use the icons in your React project. Here's a basic example:
import { CIcon } from '@coreui/icons-react';
import { cilArrowBottom } from '@coreui/icons';
<CIcon icon={cilArrowBottom} />Read the full CoreUI React Icon component documentation to see the complete API and integration guide.