Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
11
/** @jsxImportSource npm:react */
import React from "npm:react";
export default function ValTownLogo(props: React.SVGProps<SVGSVGElement>) {
return (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 442 79" {...props}>
<path d="M92.182 67.387c3.89 0 7.064-1.082 9.524-3.248 2.459-2.164 3.689-5.046 3.689-8.644v-1.101H91.411c-2.57 0-4.589.551-6.056 1.652-1.47 1.101-2.202 2.642-2.202 4.624 0 1.982.771 3.598 2.312 4.845 1.542 1.249 3.78 1.872 6.717 1.872M89.76 78.618c-3
<path d="M13.903 22.458H0V33.91h13.903z" />
</svg>
);
}
May 15, 2024