system-uicons/react/src/icons/mail_delete.js
2020-08-03 13:09:39 +08:00

44 lines
1.3 KiB
JavaScript

import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const MailDelete = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
<svg
ref={ref}
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 21 21"
fill="none"
stroke={color}
strokeWidth="1"
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<g
fill="none"
stroke={color}
transform="matrix(0 -1 1 0 3 18)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m2.5.5h7.26393202c.75754408 0 1.45007038.42800475 1.78885438 1.10557281l2.5 5c.2815275.56305498.2815275 1.2257994 0 1.78885438l-2.5 5.00000001c-.338784.677568-1.0313103 1.1055728-1.78885438 1.1055728h-7.26393202c-1.1045695 0-2-.8954305-2-2v-10c0-1.1045695.8954305-2 2-2z"></path>
<g transform="matrix(0 1 -1 0 14 1)">
<path d="m3.5 10.5 6-6"></path>
<path d="m3.5 4.5 6 6"></path>
</g>
</g>
</svg>
)
}
)
MailDelete.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
}
MailDelete.displayName = 'MailDelete'
export default MailDelete