diff --git a/apps/dashboard/src/components/devRelEvents/DevRelEvent.tsx b/apps/dashboard/src/components/devRelEvents/DevRelEvent.tsx index bf834a5a1be..dfbfd0db6cd 100644 --- a/apps/dashboard/src/components/devRelEvents/DevRelEvent.tsx +++ b/apps/dashboard/src/components/devRelEvents/DevRelEvent.tsx @@ -1,6 +1,6 @@ -import { Flex, Icon, Image } from "@chakra-ui/react"; +import { Flex, Image } from "@chakra-ui/react"; import { useTrack } from "hooks/analytics/useTrack"; -import { FiCalendar, FiClock } from "react-icons/fi"; +import { CalendarIcon, ClockIcon } from "lucide-react"; import { Card, Heading, LinkButton, Text } from "tw-components"; interface EventProps { @@ -53,7 +53,7 @@ export const DevRelEvent: React.FC = ({ }} > - + {new Date(timestamp).toLocaleDateString("en-US", { weekday: "long", @@ -64,7 +64,7 @@ export const DevRelEvent: React.FC = ({ - + {new Date(timestamp).toLocaleTimeString("en-US", { hour: "numeric", diff --git a/apps/dashboard/src/components/homepage/sections/FeatureItem.tsx b/apps/dashboard/src/components/homepage/sections/FeatureItem.tsx index 6b72f93fb7e..6fb21364759 100644 --- a/apps/dashboard/src/components/homepage/sections/FeatureItem.tsx +++ b/apps/dashboard/src/components/homepage/sections/FeatureItem.tsx @@ -1,6 +1,5 @@ -import { Flex, Icon, Tooltip } from "@chakra-ui/react"; -import { AiOutlineDollarCircle } from "react-icons/ai"; -import { IoCheckmarkCircle } from "react-icons/io5"; +import { Flex, Tooltip } from "@chakra-ui/react"; +import { CircleCheckIcon, CircleDollarSignIcon } from "lucide-react"; import { Card, Text } from "tw-components"; interface FeatureItemProps { @@ -12,7 +11,7 @@ export const FeatureItem: React.FC = ({ text }) => { return ( - + {Array.isArray(text) ? ( {titleStr} @@ -34,13 +33,7 @@ export const FeatureItem: React.FC = ({ text }) => { boxShadow="none" > - + { ) : (
{ { + {isDragActive ? ( - <> - - Drop the files here - + Drop the files here ) : ( - <> - - - Drag and drop your file or folder here to upload it to - IPFS - - + + Drag and drop your file or folder here to upload it to IPFS + )} } @@ -260,7 +242,7 @@ const FileUpload: React.FC = ({ files, updateFiles }) => { category={TRACKING_CATEGORY} label="open-in-gateway" aria-label="Open in gateway" - icon={} + icon={} variant="ghost" isExternal size="sm" @@ -285,7 +267,7 @@ const FileUpload: React.FC = ({ files, updateFiles }) => { aria-label="Remove File" category={TRACKING_CATEGORY} label="remove-file" - icon={} + icon={} variant="ghost" onClick={(e) => { e.stopPropagation(); @@ -465,7 +447,7 @@ const FileUpload: React.FC = ({ files, updateFiles }) => { category={TRACKING_CATEGORY} href={mainIpfsUri} textDecor="none!important" - rightIcon={} + rightIcon={} colorScheme="green" isExternal onClick={() => { @@ -483,7 +465,7 @@ const FileUpload: React.FC = ({ files, updateFiles }) => { isLoading={storageUpload.isPending} loadingText="Uploading..." colorScheme="green" - leftIcon={} + leftIcon={} onClick={() => { setIpfsHashes([]); trackEvent({ diff --git a/apps/dashboard/src/components/landing-pages/guide-showcase.tsx b/apps/dashboard/src/components/landing-pages/guide-showcase.tsx index 245304af6b4..591701f3019 100644 --- a/apps/dashboard/src/components/landing-pages/guide-showcase.tsx +++ b/apps/dashboard/src/components/landing-pages/guide-showcase.tsx @@ -1,6 +1,6 @@ -import { Flex, Icon, SimpleGrid } from "@chakra-ui/react"; +import { Flex, SimpleGrid } from "@chakra-ui/react"; import { GuideCard } from "components/product-pages/common/GuideCard"; -import { FiArrowRight } from "react-icons/fi"; +import { MoveRightIcon } from "lucide-react"; import { Heading, TrackedLink, type TrackedLinkProps } from "tw-components"; type BlogPost = { @@ -94,7 +94,7 @@ export const LandingGuidesShowcase: React.FC = ({ > {customSolution} - + )} @@ -121,7 +121,7 @@ export const LandingGuidesShowcase: React.FC = ({ See all of our {solution.replace("-", " ")}{" "} {caseStudies ? "case studies" : "guides"} - + )} diff --git a/apps/dashboard/src/components/product-pages/homepage/CodeSelector.tsx b/apps/dashboard/src/components/product-pages/homepage/CodeSelector.tsx index 08a5f554038..38b8608d81b 100644 --- a/apps/dashboard/src/components/product-pages/homepage/CodeSelector.tsx +++ b/apps/dashboard/src/components/product-pages/homepage/CodeSelector.tsx @@ -1,9 +1,8 @@ -import { Flex, Icon } from "@chakra-ui/react"; +import { Flex } from "@chakra-ui/react"; import { useTrack } from "hooks/analytics/useTrack"; +import { FileTextIcon, SquareTerminalIcon } from "lucide-react"; import { themes } from "prism-react-renderer"; import { useState } from "react"; -import { AiOutlineCode } from "react-icons/ai"; -import { CgFileDocument } from "react-icons/cg"; import { Card, CodeBlock, @@ -155,12 +154,12 @@ export const CodeSelector: React.FC = ({ /> {/* Links for Replit and Docs */} - + } + icon={} onClick={() => trackEvent({ category: "code-selector", @@ -173,7 +172,7 @@ export const CodeSelector: React.FC = ({ } + icon={} onClick={() => trackEvent({ category: "code-selector", diff --git a/apps/dashboard/src/components/selects/NetworkSelectorButton.tsx b/apps/dashboard/src/components/selects/NetworkSelectorButton.tsx index 7982117c05f..20f7d9d5e1d 100644 --- a/apps/dashboard/src/components/selects/NetworkSelectorButton.tsx +++ b/apps/dashboard/src/components/selects/NetworkSelectorButton.tsx @@ -6,9 +6,9 @@ import { useStore } from "@/lib/reactive"; import { popularChains } from "@3rdweb-sdk/react/components/popularChains"; import { ChainIcon } from "components/icons/ChainIcon"; import { useActiveChainAsDashboardChain } from "lib/v5-adapter"; +import { ChevronDownIcon } from "lucide-react"; import { useTheme } from "next-themes"; import { useEffect, useMemo, useRef, useState } from "react"; -import { BiChevronDown } from "react-icons/bi"; import { useActiveWallet } from "thirdweb/react"; import { useNetworkSwitcherModal } from "thirdweb/react"; import { useFavoriteChainIds } from "../../app/(dashboard)/(chain)/components/client/star-button"; @@ -199,7 +199,7 @@ export const NetworkSelectorButton: React.FC = ({ {chain?.name || "Select Network"} - +