/** * Arrow Left Icon * @category navigation */ import type { IconDefinition } from '../../types'; export const arrowLeft: IconDefinition = { name: 'arrow-left', category: 'navigation', description: 'Leftward arrow', tags: ['direction', 'left', 'back', 'arrow'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default arrowLeft;