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