import type { SVGAttributes } from "react"; type IndieTabletopClubLogoProps = Omit< SVGAttributes, "width" | "height" | "viewBox" > & { textColor?: string; symbolColor?: string; }; export function IndieTabletopClubLogo(props: IndieTabletopClubLogoProps) { const { textColor = "#161615", symbolColor = "#FF5937", ...svgProps } = props; // prettier-ignore return ( ); }