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