/** * Home Icon * @category navigation */ import type { IconDefinition } from '../../types'; export const home: IconDefinition = { name: 'home', category: 'navigation', description: 'Home/dashboard', tags: ['home', 'dashboard', 'main', 'house'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default home;