import { ImgHTMLAttributes } from 'react';
import { usePage } from '@inertiajs/react';
import { PageProps } from '@/types/global';
export default function ApplicationLogo(props: ImgHTMLAttributes) {
const { branding } = usePage().props;
// 如果有自訂 Logo,優先使用
if (branding?.logo_url) {
return (
);
}
// 預設 Logo
return (
);
}