import {
  IconClock,
  IconCalendar,
} from '../raw'
import type { IconDefinition } from '../types'

export {
  IconClock,
  IconCalendar,
}

export const timeIcons = {
  'time/clock': IconClock,
  'time/calendar': IconCalendar,
} as const

export const timeIconManifest: IconDefinition[] = [
  {
    name: 'time/clock',
    category: 'time',
    exportName: 'IconClock',
    aliases: ['clock'],
    tags: ['time'],
  },
  {
    name: 'time/calendar',
    category: 'time',
    exportName: 'IconCalendar',
    aliases: ['calendar'],
    tags: ['date'],
  },
]
