13 lines
217 B
TypeScript
13 lines
217 B
TypeScript
export function Logo() {
|
|
return (
|
|
// Your SVG code here
|
|
<svg
|
|
width="32"
|
|
height="32"
|
|
viewBox="0 0 32 32"
|
|
fill="currentColor"
|
|
>
|
|
{/* SVG paths go here */}
|
|
</svg>
|
|
);
|
|
}
|