/** * Hash Icon * @category data */ import type { IconDefinition } from '../../types'; export const hash: IconDefinition = { name: 'hash', category: 'data', description: 'Hashtag symbol', tags: ['hash', 'hashtag', 'number', 'tag', 'symbol'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default hash;