10 lines
354 B
React
10 lines
354 B
React
export default function Logo() {
|
|
return (
|
|
<svg viewBox="0 0 48 48" className="logo-mark" aria-hidden="true">
|
|
<path d="M12 16h4v16h-4zM20 12h8v24h-8zM32 16h4v16h-4z" fill="currentColor"/>
|
|
<rect x="8" y="20" width="4" height="8" fill="currentColor"/>
|
|
<rect x="36" y="20" width="4" height="8" fill="currentColor"/>
|
|
</svg>
|
|
);
|
|
}
|