/** * Sort Icon * @category actions */ import type { IconDefinition } from '../../types'; export const sort: IconDefinition = { name: 'sort', category: 'actions', description: 'Sort order or arrange data', tags: ['sort', 'order', 'arrange', 'organize', 'alphabetize'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default sort;