import * as React from "react" type InstagramIconProps = React.ComponentProps<"svg"> & { title?: string } export function InstagramIcon({ title, ...props }: InstagramIconProps) { const ariaHidden = title ? undefined : true return ( {title ? {title} : null} ) }