feat: recover LaughIcon
This commit is contained in:
parent
806216376f
commit
b56a4d1075
|
|
@ -0,0 +1,21 @@
|
|||
import React from "react"
|
||||
|
||||
export const LaughIcon: React.FC<React.ComponentPropsWithoutRef<"svg">> = (
|
||||
props,
|
||||
) => {
|
||||
return (
|
||||
<svg
|
||||
width="1em"
|
||||
height="1em"
|
||||
{...props}
|
||||
viewBox="0 0 1024 1024"
|
||||
version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<path
|
||||
d="M512 16C238 16 16 238 16 512s222 496 496 496 496-222 496-496S786 16 512 16z m282.8 778.8c-75.6 75.6-176 117.2-282.8 117.2s-207.2-41.6-282.8-117.2S112 618.8 112 512s41.6-207.2 117.2-282.8S405.2 112 512 112s207.2 41.6 282.8 117.2S912 405.2 912 512s-41.6 207.2-117.2 282.8zM672 448c35.4 0 64-28.6 64-64s-28.6-64-64-64-64 28.6-64 64 28.6 64 64 64z m-320 0c35.4 0 64-28.6 64-64s-28.6-64-64-64-64 28.6-64 64 28.6 64 64 64z m388.8 128H283.2c-16.4 0-29 14-27 30 15 118.4 117.8 210 242.2 210h27.2c124.4 0 227.2-91.6 242.2-210 2-16-10.6-30-27-30z"
|
||||
p-id="2265"
|
||||
></path>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
|
|
@ -8,6 +8,7 @@ import { useAccount } from "wagmi"
|
|||
import { EllipsisHorizontalIcon } from "@heroicons/react/20/solid"
|
||||
import { LoveIcon } from "~/components/icons/LoveIcon"
|
||||
import { BlockchainIcon } from "~/components/icons/BlockchainIcon"
|
||||
import { LaughIcon } from "~/components/icons/LaughIcon"
|
||||
import { Button } from "~/components/ui/Button"
|
||||
import { useConnectModal } from "@rainbow-me/rainbowkit"
|
||||
import { useRouter } from "next/router"
|
||||
|
|
@ -56,7 +57,7 @@ export default function Home({ region }: { region: string | null }) {
|
|||
width: 3947,
|
||||
height: 1888,
|
||||
},
|
||||
icon: <BlockchainIcon className="inline mb-2" />,
|
||||
icon: <LaughIcon className="inline mb-2" />,
|
||||
title: "Elegent",
|
||||
text: <>Out-of-the-box, good looking, no friction.</>,
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue