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