/** * Git Branch Icon * @category tech */ import type { IconDefinition } from '../../types'; export const gitBranch: IconDefinition = { name: 'git-branch', category: 'tech', description: 'Git branch', tags: ['git', 'branch', 'version-control', 'source', 'code'], svg: ` `, variants: { solid: ` `, duotone: ` `, glitch: ` `, }, }; export default gitBranch;