import * as React from 'react'; import Svg, { Path } from 'react-native-svg'; interface Props { color: string; width?: number; height?: number; } const Instagram = ({ color, height = 24, width = 24 }: Props) => ( ); export default Instagram;