import * as React from "react"; import { SVGProps } from "react"; import PropTypes from "prop-types"; function SvgHandePointer(props: SVGProps) { return ( ); } SvgHandePointer.propTypes = { title: PropTypes.string, }; export default SvgHandePointer;