File size: 351 Bytes
d988ae4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import React from 'react'
import Image from 'next/image'
import LogoPng from "@/assets/logo.png"
type LogoProps = {
width?: number;
height?: number;
}
const Logo = ({ width = 50, height = 50 }: LogoProps) => {
return (
<Image src={LogoPng} alt="Shared Clipboard Logo" width={width} height={height} />
)
}
export default Logo |