import { IconPictureLight } from '../raw'
import type { IconDefinition } from '../types'

export { IconPictureLight }

export const themeIcons = {
  'theme/picture-light': IconPictureLight,
} as const

export const themeIconManifest: IconDefinition[] = [
  {
    name: 'theme/picture-light',
    category: 'theme',
    exportName: 'IconPictureLight',
    aliases: ['picture-light'],
    tags: ['appearance', 'theme'],
  },
]
