/** * Returns an inline SVG string for the SpeedCard pinwheel decorative * background. The two paths are filled with the provided color so callers * can theme the background dynamically (used by SimpleCard when * `showBackgroundImage` is enabled and a `pinwheelColor` is provided). * * Output is intended to be embedded as a `data:image/svg+xml;utf8,...` * `background-image`. Encode the result with `encodeURIComponent`. */ export const SpeedCardBg = (color: string = "#24A76A"): string => { return ` `; }; export default SpeedCardBg;