import * as React from "react"; type Props = { /** The size of the icon, 24px is default to match standard icons */ size?: number; /** The color of the icon, defaults to the current text color */ color?: string; }; export default function ZapierIcon({ size = 24, color = "currentColor", }: Props) { return ( ); }