import type { SVGProps } from "react"; const ReplitIcon = ({ grayscale, ...props }: SVGProps & { grayscale?: boolean }) => { const fillClass = grayscale ? "fill-fg-quaternary" : "fill-[#FD5402]"; return ( ); }; export default ReplitIcon;