import React from "react";
import { IntegrationLogoSvgWrapper, SvgLogoProps } from "./wrapper";
import { colors } from "../../../tokens";
export const ConveyorSvg = ({
color = colors.brandGreen["400"],
square,
...rest
}: SvgLogoProps) => {
const viewBox = "0 0 32 32";
const path = (
<>
>
);
return (
{path}
);
};