12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
import type { ImgHTMLAttributes } from 'react';
|
|
|
|
export default function AppLogoIcon(props: ImgHTMLAttributes<HTMLImageElement>) {
|
|
return (
|
|
<img
|
|
src="/assets/logo.png"
|
|
alt="ITM Logo"
|
|
{...props}
|
|
/>
|
|
);
|
|
}
|