/** * Arrow Down Icon * @category navigation */ import type { IconDefinition } from '../../types'; export const arrowDown: IconDefinition = { name: 'arrow-down', category: 'navigation', description: 'Downward arrow', tags: ['direction', 'down', 'move', 'arrow'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default arrowDown;