UNPKG

phx-react

Version:

PHX REACT

15 lines (12 loc) 546 B
import AppDetailEvent from './app-detail-event.svg' import EmailDetail from './mail-detail.svg' import MobileScreen from './mobile-screen.svg' import NotiDetail from './noti-detail.svg' import { StaticImageData } from 'next/image' type SvgModule = StaticImageData | string export const PHXScreens: Record<string, SvgModule> = { AppDetailEvent: AppDetailEvent as unknown as SvgModule, EmailDetail: EmailDetail as unknown as SvgModule, MobileScreen: MobileScreen as unknown as SvgModule, NotiDetail: NotiDetail as unknown as SvgModule, }