// @flow import * as React from "react"; type Props = { color?: string, }; export default function ZapierIcon({ color = "#4E5C6E" }: Props) { return ( ); }