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