hiento09 f93deb6749
chore: move Jan Docs back into Jan Repo (#3790)
Co-authored-by: Hien To <tominhhien97@gmail.com>
2024-10-14 10:07:16 +07:00

20 lines
352 B
TypeScript

import Image from 'next/image'
type Props = {
width?: number
height?: number
className?: string
}
export default function LogoMark({ width = 24, height = 24 }: Props) {
return (
<Image
width={width}
height={height}
className="w-6 h-6"
src="/assets/images/general/logo-mark.svg"
alt="Jan - Logo"
/>
)
}