import { LogoTVU, LogoTS } from '../raw'
import type { IconDefinition } from '../types'

export { LogoTVU, LogoTS }

export const brandIcons = {
  'brand/logo-tvu': LogoTVU,
  'brand/logo-ts': LogoTS,
} as const

export const brandIconManifest: IconDefinition[] = [
  {
    name: 'brand/logo-tvu',
    category: 'brand',
    exportName: 'LogoTVU',
    aliases: ['logo-tvu'],
    tags: ['logo', 'brand'],
  },
  {
    name: 'brand/logo-ts',
    category: 'brand',
    exportName: 'LogoTS',
    aliases: ['logo-ts'],
    tags: ['logo', 'brand'],
  },
]
