import React from "react"; import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper"; export const SalesforceSvg = ({ color = "#00a1e0", square, ...rest }: SvgLogoProps) => { const viewBox = square ? "0 0 32 32" : "0 0 46 32"; const path = square ? ( <> ) : ( <> ); return ( Salesforce integration logo {path} ); };