/** * Chevron Up Icon * @category navigation */ import type { IconDefinition } from '../../types'; export const chevronUp: IconDefinition = { name: 'chevron-up', category: 'navigation', description: 'Chevron pointing up', tags: ['direction', 'up', 'collapse', 'chevron'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default chevronUp;