Files
xrpl-hooks-ide/components/Logo.tsx

30 lines
903 B
TypeScript

/** @jsxImportSource theme-ui */
import { useColorMode } from "theme-ui";
function Logo(props: React.SVGProps<SVGSVGElement>) {
const [mode] = useColorMode();
return (
<svg
width="1em"
height="1em"
viewBox="0 0 28 22"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M19.603 3.87h2.3l-4.786 4.747a4.466 4.466 0 01-6.276 0L6.054 3.871h2.3l3.636 3.605a2.828 2.828 0 003.975 0l3.638-3.605zM8.325 17.069h-2.3l4.816-4.776a4.466 4.466 0 016.276 0l4.816 4.776h-2.3l-3.665-3.635a2.828 2.828 0 00-3.975 0l-3.668 3.635z"
sx={{ fill: "text" }}
/>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M1.556 9.769h4.751v1.555H1.556v10.072H0V0h1.556v9.769zM26.444 9.769h-4.751v1.555h4.751v10.072H28V0h-1.556v9.769z"
sx={{ fill: "text" }}
/>
</svg>
);
}
export default Logo;