diff --git a/apps/dashboard/src/components/contract-components/publisher/PublisherSocials.tsx b/apps/dashboard/src/components/contract-components/publisher/PublisherSocials.tsx index a66cd3fc937..bd099786a39 100644 --- a/apps/dashboard/src/components/contract-components/publisher/PublisherSocials.tsx +++ b/apps/dashboard/src/components/contract-components/publisher/PublisherSocials.tsx @@ -1,11 +1,11 @@ import { ButtonGroup, type ButtonGroupProps, Icon } from "@chakra-ui/react"; import { SiFacebook } from "@react-icons/all-files/si/SiFacebook"; -import { SiLinkedin } from "@react-icons/all-files/si/SiLinkedin"; import { SiMedium } from "@react-icons/all-files/si/SiMedium"; import { SiReddit } from "@react-icons/all-files/si/SiReddit"; import { SiTelegram } from "@react-icons/all-files/si/SiTelegram"; import { DiscordIcon } from "components/icons/brand-icons/DiscordIcon"; import { GithubIcon } from "components/icons/brand-icons/GithubIcon"; +import { LinkedInIcon } from "components/icons/brand-icons/LinkedinIcon"; import { XIcon } from "components/icons/brand-icons/XIcon"; import type { ProfileMetadata } from "constants/schemas"; import { FiGlobe } from "react-icons/fi"; @@ -162,7 +162,7 @@ export const PublisherSocials: React.FC = ({ } bg="transparent" aria-label="linkedin" - icon={} + icon={} category={TRACKING_CATEGORY} label="linkedin" /> diff --git a/apps/dashboard/src/components/footer/socialLinks.tsx b/apps/dashboard/src/components/footer/socialLinks.tsx index df25ed6c337..30a9e619621 100644 --- a/apps/dashboard/src/components/footer/socialLinks.tsx +++ b/apps/dashboard/src/components/footer/socialLinks.tsx @@ -1,9 +1,9 @@ import { SiInstagram } from "@react-icons/all-files/si/SiInstagram"; -import { SiLinkedin } from "@react-icons/all-files/si/SiLinkedin"; import { SiTiktok } from "@react-icons/all-files/si/SiTiktok"; import { SiYoutube } from "@react-icons/all-files/si/SiYoutube"; import { DiscordIcon } from "components/icons/brand-icons/DiscordIcon"; import { GithubIcon } from "components/icons/brand-icons/GithubIcon"; +import { LinkedInIcon } from "components/icons/brand-icons/LinkedinIcon"; import { XIcon } from "components/icons/brand-icons/XIcon"; interface socialLinkInfo { @@ -37,7 +37,7 @@ export const SOCIALS: socialLinkInfo[] = [ link: "https://www.linkedin.com/company/third-web/", ariaLabel: "LinkedIn", label: "linkedin", - icon: , + icon: , }, { link: "https://www.instagram.com/thirdweb/", diff --git a/apps/dashboard/src/components/icons/brand-icons/LinkedinIcon.tsx b/apps/dashboard/src/components/icons/brand-icons/LinkedinIcon.tsx new file mode 100644 index 00000000000..21233414dd1 --- /dev/null +++ b/apps/dashboard/src/components/icons/brand-icons/LinkedinIcon.tsx @@ -0,0 +1,18 @@ +import type { SVGProps } from "react"; + +export const LinkedInIcon = (props: SVGProps) => { + return ( + + LinkedIn + + + ); +};