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