/** * X Icon * @category actions */ import type { IconDefinition } from '../../types'; export const x: IconDefinition = { name: 'x', category: 'actions', description: 'Close or cancel action', tags: ['x', 'close', 'cancel', 'dismiss', 'exit'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default x;