/** * Arrow Right Icon * @category navigation */ import type { IconDefinition } from '../../types'; export const arrowRight: IconDefinition = { name: 'arrow-right', category: 'navigation', description: 'Rightward arrow', tags: ['direction', 'right', 'forward', 'arrow'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default arrowRight;