20 lines
726 B
TypeScript
20 lines
726 B
TypeScript
/**
|
|
* 应用 Logo 图标 — 与 favicon.svg 保持一致
|
|
*/
|
|
|
|
interface LogoProps {
|
|
className?: string
|
|
}
|
|
|
|
export default function Logo({ className = 'w-5 h-5' }: LogoProps) {
|
|
return (
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" className={className} fill="none">
|
|
<rect width="32" height="32" rx="6" fill="currentColor" />
|
|
<path d="M16 6 L24 10 L24 16 L16 20 L8 16 L8 10 Z" stroke="white" strokeWidth="1.5" strokeLinejoin="round" />
|
|
<circle cx="16" cy="13" r="2" fill="white" />
|
|
<path d="M12 24 L12 20 M20 24 L20 20 M16 22 L16 20" stroke="white" strokeWidth="1.5" strokeLinecap="round" />
|
|
<rect x="10" y="24" width="12" height="2" rx="1" fill="white" />
|
|
</svg>
|
|
)
|
|
}
|