mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
cf9ccd0076
* Scaffold Geistdocs instance * Update biome.json * Replace content * Re-path docs * Update docs package name * Misc fixes * Update geistdocs.tsx * Move content to correct folder * Start migrating custom components * Finish migrating custom components * Migrate existing redirects * Remove #next suffixes from code blocks * Migrate homepage and flags * Remove duplicate lockfiles * Start fixing homepage * Replace Geist components * Fix colors * Improve layout * Fix code blocks * Fix hero * Fix illustrations * Fix redirect * Fix nav links * Patch in FrameworkSwitcher * Bump Next.js in docs * Delete turbo.json * Misc fixes * More logo fixes
45 lines
2.7 KiB
TypeScript
45 lines
2.7 KiB
TypeScript
export function SplitLogo(props: React.SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={235}
|
|
height={34}
|
|
viewBox="0 0 77 34"
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<g clipPath="url(#clip0_24_2384)">
|
|
<path
|
|
d="M24.665 22.367L7.374 32.35v-5.764l17.29-9.984v5.765z"
|
|
fill="black"
|
|
/>
|
|
<path
|
|
d="M7.374 12.383l17.29 9.985v-5.766L7.375 6.619v5.764z"
|
|
fill="black"
|
|
/>
|
|
<path
|
|
d="M.065 16.602l17.291 9.985V20.82L.065 10.838v5.764z"
|
|
fill="black"
|
|
/>
|
|
<path
|
|
d="M17.356 6.62L.065 16.601v-5.764L17.356.855V6.62z"
|
|
fill="black"
|
|
/>
|
|
<path
|
|
d="M69.467 9.503a2.13 2.13 0 01-1.56-.656 2.132 2.132 0 01-.656-1.56c0-.601.216-1.116.649-1.544.432-.426.955-.64 1.567-.64s1.16.212 1.582.634c.422.422.633.938.633 1.553 0 .614-.213 1.134-.64 1.567-.426.433-.95.648-1.573.648l-.002-.002zm-1.883 17.325V11.432h3.766v15.396h-3.766zM79.726 11.432V5.104H75.99v6.328h-2.245v3.3h2.245v12.096h3.736V14.732h2.232v-3.3h-2.232zM40.87 20.396c-.348-.623-.89-1.17-1.629-1.643-.738-.472-1.701-.893-2.884-1.267-1.195-.393-2.01-.733-2.447-1.024-.437-.29-.656-.622-.656-.994s.186-.686.558-.912c.372-.225.863-.338 1.477-.338 1.206 0 2.26.457 3.164 1.37l2.456-2.033a6.749 6.749 0 00-2.447-1.853c-.95-.422-1.986-.634-3.112-.634-1.647 0-2.983.393-4.009 1.183-1.026.79-1.536 1.816-1.536 3.08 0 1.136.362 2.072 1.085 2.81.723.737 1.948 1.423 3.676 2.056.892.322 1.586.606 2.08.85.493.245.835.488 1.032.724.196.236.294.503.294.806 0 .462-.204.822-.616 1.077-.412.255-.999.384-1.764.384-.612 0-1.256-.159-1.929-.474a5.816 5.816 0 01-1.35-.88l-2.897 1.672c.642.863 1.514 1.55 2.613 2.063 1.1.512 2.253.769 3.457.769 1.839 0 3.28-.412 4.33-1.235 1.049-.824 1.573-1.959 1.573-3.405 0-.813-.173-1.532-.52-2.154v.002zM59.84 26.828h3.767V5.104l-3.766 2.175v19.549zM56.543 14.822c-.512-1.206-1.245-2.132-2.2-2.78-.956-.648-2.09-.972-3.405-.972-1.415 0-2.546.498-3.39 1.49v-1.128h-3.766v21.722l3.766-2.173v-5.313c.401.502.884.882 1.446 1.137.562.255 1.196.385 1.898.385 1.285 0 2.41-.335 3.375-1.001.964-.67 1.711-1.608 2.244-2.818.531-1.21.799-2.622.799-4.24 0-1.618-.255-3.104-.767-4.307v-.002zm-3.841 7.6c-.554.778-1.34 1.169-2.366 1.169a3.702 3.702 0 01-1.634-.362 2.708 2.708 0 01-1.152-1.01V16c.33-.452.725-.789 1.183-1.01.458-.222.99-.33 1.605-.33 1.003 0 1.787.393 2.351 1.174.562.784.845 1.883.845 3.298s-.276 2.514-.83 3.292h-.002z"
|
|
fill="black"
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id="clip0_24_2384">
|
|
<path
|
|
fill="#fff"
|
|
transform="translate(.065 .805)"
|
|
d="M0 0H234.93V32.39H0z"
|
|
/>
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
);
|
|
}
|