import React from "react"; import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper"; export const AddigySvg = ({ color, square, ...rest }: SvgLogoProps) => { const viewBox = "0 0 32 32"; const path = ( <> ); return ( Addigy integration logo {path} ); };