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