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