import type { SVGAttributes } from "react"; type IndieTabletopClubSymbolProps = Omit< SVGAttributes, "width" | "height" | "viewBox" > & { backgroundColor?: string; symbolColor?: string; }; export function IndieTabletopClubSymbol(props: IndieTabletopClubSymbolProps) { const { symbolColor = "#FF5937", backgroundColor = "#F0F0F0", ...svgProps } = props; return ( ); }