import React from 'react' import Image from 'next/image' type Props = { width?: number height?: number className?: string } const LogoMark: React.FC = ({ width = 24, height = 24, className }) => ( Jan - Logo ) export default React.memo(LogoMark)