system-uicons/react/src/icons/download_alt.js

45 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-08-03 06:49:52 +02:00
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
2020-08-03 07:09:39 +02:00
2020-08-03 06:49:52 +02:00
const DownloadAlt = 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"
2020-08-03 07:09:39 +02:00
stroke={color}
2020-08-03 06:49:52 +02:00
transform="translate(3 3)"
2020-08-03 07:09:39 +02:00
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
2020-08-03 06:49:52 +02:00
>
<path
d="m10.334 5.685-5.641-.016-.016 5.673"
transform="matrix(.70710678 -.70710678 -.70710678 -.70710678 8.212726 19.827274)"
></path>
<path d="m7.522.521v11.979"></path>
<path d="m.5 9v4.5c0 1.1045695.8954305 2 2 2h10c1.1045695 0 2-.8954305 2-2v-4.5"></path>
</g>
</svg>
)
}
)
DownloadAlt.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
}
DownloadAlt.displayName = 'DownloadAlt'
export default DownloadAlt