mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-26 21:41:54 +07:00
first commit
This commit is contained in:
12
resources/js/Components/ApplicationLogo.tsx
Normal file
12
resources/js/Components/ApplicationLogo.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { HTMLAttributes } from 'react';
|
||||
|
||||
export default function ApplicationLogo({ className = '', ...props }: HTMLAttributes<HTMLImageElement>) {
|
||||
return (
|
||||
<img
|
||||
{...props}
|
||||
src="/brand/Nihonbuzz-Academy-Light-LS-Regular.png"
|
||||
alt="Nihonbuzz Academy"
|
||||
className={className}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user