mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-26 06:47:17 +10:00
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
|
|
import css from './IconEmailSent.css';
|
|
|
|
const IconEmailSent = props => {
|
|
const { rootClassName, className } = props;
|
|
const classes = classNames(rootClassName || css.root, className);
|
|
return (
|
|
<svg
|
|
className={classes}
|
|
width="70"
|
|
height="33"
|
|
viewBox="0 0 70 33"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<g
|
|
strokeWidth="3"
|
|
fill="none"
|
|
fillRule="evenodd"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
>
|
|
<path d="M59.592 26.65c-.958 2.4-3.67 4.35-6.056 4.35H18.93c-2.387 0-3.552-1.95-2.595-4.35l8.075-20.3C25.364 3.95 28.078 2 30.466 2H65.07c2.39 0 3.55 1.95 2.596 4.35l-8.074 20.3z" />
|
|
<path d="M62 8L41.345 19 30 8M22 26l10-7M54 26l-4.5-5.5M17 5H2M6.528 25H2M11.513 15.5H2" />
|
|
</g>
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
IconEmailSent.defaultProps = {
|
|
rootClassName: null,
|
|
className: null,
|
|
};
|
|
|
|
const { string } = PropTypes;
|
|
|
|
IconEmailSent.propTypes = {
|
|
rootClassName: string,
|
|
className: string,
|
|
};
|
|
|
|
export default IconEmailSent;
|