Files
medusa-store/packages/design-system/icons/src/components/next-js.tsx
T

28 lines
2.1 KiB
TypeScript

import * as React from "react"
import type { IconProps } from "../types"
const NextJs = React.forwardRef<SVGSVGElement, Omit<IconProps, "color">>(
(props, ref) => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width={20}
height={20}
fill="none"
ref={ref}
{...props}
>
<path
fill="#000"
d="M9.411 1.013c-.038.004-.162.016-.272.025-2.554.23-4.946 1.608-6.461 3.726A8.9 8.9 0 0 0 1.09 8.692c-.073.494-.081.64-.081 1.31s.008.815.08 1.31c.49 3.376 2.892 6.212 6.15 7.264a9.5 9.5 0 0 0 1.899.393c.272.03 1.45.03 1.722 0 1.208-.133 2.23-.432 3.24-.947.154-.08.184-.1.163-.118-.014-.01-.673-.895-1.464-1.963l-1.438-1.942-1.801-2.667a255.823 255.823 0 0 0-1.814-2.664 144.89 144.89 0 0 0-.018 2.63c-.005 2.532-.007 2.634-.039 2.694a.32.32 0 0 1-.154.16c-.056.028-.106.033-.371.033H6.86l-.081-.051a.328.328 0 0 1-.118-.128l-.037-.08.004-3.524.005-3.525.055-.069a.482.482 0 0 1 .13-.107c.072-.035.1-.039.404-.039.358 0 .418.014.511.116a333.77 333.77 0 0 1 2.17 3.268c1.166 1.77 2.762 4.186 3.546 5.373l1.424 2.156.072-.047a9.23 9.23 0 0 0 1.847-1.62 8.95 8.95 0 0 0 2.117-4.597c.072-.494.08-.64.08-1.31 0-.669-.008-.815-.08-1.309-.49-3.376-2.892-6.213-6.15-7.264a9.44 9.44 0 0 0-1.872-.392 23.235 23.235 0 0 0-1.477-.023Zm3.68 5.438a.355.355 0 0 1 .178.208c.014.045.018 1.023.014 3.225l-.005 3.16-.557-.854-.56-.854V9.039c0-1.486.008-2.32.019-2.361a.358.358 0 0 1 .174-.221c.072-.037.098-.04.374-.04.26 0 .306.003.364.034Z"
/>
<path
fill="#000"
d="M14.786 17.614c-.061.039-.08.065-.026.035.038-.023.102-.07.091-.072a.364.364 0 0 0-.065.037Zm-.121.08c-.032.024-.032.026.007.006.02-.01.038-.023.038-.026 0-.014-.008-.01-.045.02Zm-.088.052c-.032.024-.032.026.007.007.021-.01.039-.023.039-.026 0-.015-.01-.011-.046.019Zm-.088.053c-.032.024-.032.026.007.007.021-.01.039-.023.039-.027 0-.014-.01-.01-.046.02Zm-.134.07c-.066.035-.063.05.004.016a.183.183 0 0 0 .053-.035c0-.013-.002-.011-.057.019Z"
/>
</svg>
)
}
)
NextJs.displayName = "NextJs"
export default NextJs