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