mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-27 02:41:58 +07:00
13 lines
354 B
TypeScript
13 lines
354 B
TypeScript
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}
|
|
/>
|
|
);
|
|
}
|