UNPKG

@stackoverfloweth/prefect-design

Version:

A collection of low-level Vue components.

9 lines (8 loc) 445 B
import * as outlinedHeroIcons from '@heroicons/vue/24/outline' import * as solidHeroIcons from '@heroicons/vue/24/solid' import * as prefectIcons from '@/components/Icon/icons' export type SolidHeroIcon = keyof typeof solidHeroIcons export type OutlinedHeroIcon = keyof typeof outlinedHeroIcons export type HeroIcon = SolidHeroIcon | OutlinedHeroIcon export type PrefectIcon = keyof typeof prefectIcons export type Icon = HeroIcon | PrefectIcon