import { forwardRef } from "react"; type BrandIconProps = { slug: string; }; export const BrandIcon = forwardRef(({ slug }, ref) => { if (slug.toLowerCase() === "linkedin") { return ( LinkedIn ); } return ( {slug} ); }); BrandIcon.displayName = "BrandIcon";