mirror of
https://github.com/tale/headplane.git
synced 2026-07-26 15:58:14 +00:00
11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
import cn from '~/utils/cn';
|
|
import LogoSvg from '../../public/logo-light.svg';
|
|
|
|
export interface LogoProps {
|
|
className?: string;
|
|
}
|
|
|
|
export default function Logo({ className }: LogoProps) {
|
|
return <img alt="Logo" className={cn(className)} src={LogoSvg} />;
|
|
}
|