20 lines
352 B
TypeScript
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"
|
|
/>
|
|
)
|
|
}
|