UNPKG

phx-react

Version:

PHX REACT

7 lines 509 B
import React from 'react'; import Image from 'next/image'; import { PHXIcons } from '../../assets/icons'; export default function EmptySvg({ icon }) { return (React.createElement("div", { className: 'mx-auto flex justify-center items-center' }, icon ? (icon) : (React.createElement(Image, { alt: '', className: 'h-[70px] w-[90px]\n md:h-[89px] md:w-[120px]\n lg:h-[101px] lg:w-[130px]', height: 0, src: PHXIcons.EmptyRecordIcon, width: 0 })))); } //# sourceMappingURL=EmptySvg.js.map