import * as React from "react"; import { convertIcon } from "../components/Icon"; function SvgComponent(props: React.SVGProps) { return ( ); } const IconComponent = convertIcon(SvgComponent, "map_pin"); export default IconComponent;