Files
star-erp/resources/js/Components/ApplicationLogo.tsx

12 lines
263 B
TypeScript
Raw Normal View History

2026-01-07 14:44:01 +08:00
import { ImgHTMLAttributes } from 'react';
export default function ApplicationLogo(props: ImgHTMLAttributes<HTMLImageElement>) {
return (
<img
{...props}
src="/logo.png"
alt="小小冰室 Logo"
/>
);
}