import React from "react"; interface Props { fill?: string; } /** * ## Example * ```js * ``` */ function InstagramCardShareIcon({ fill = "currentColor", ...props }: React.SVGProps & Props) { return ( ); } InstagramCardShareIcon.componentName = "InstagramCardShareIcon"; export default InstagramCardShareIcon;