UNPKG

@pinuts/bsr-uikit-relaunch

Version:

BSR UI-KIT Relaunch

46 lines (42 loc) 1.22 kB
import * as React from 'react'; import PropTypes from 'prop-types'; import Icon40PropValues from '../_defaultIconPropValues.ts'; const Download = (props) => { const { width = Icon40PropValues.width, height = Icon40PropValues.height, stroke = Icon40PropValues.stroke, ...restProps } = props; return ( <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={width} height={height} {...restProps} fill="none" > <path stroke={stroke} strokeMiterlimit={10} strokeWidth={1.8} d="M2.5 7.5V4.985c0-.82.665-1.485 1.485-1.485H9.88c.665 0 1.245.44 1.43 1.075L12 7h9.5v13h-19z" /> <path stroke={stroke} strokeLinecap="round" strokeLinejoin="round" strokeWidth={1.8} d="M12 10v6.5M9 14l3 3 3-3" /> </svg> ); }; Download.propTypes = { width: PropTypes.string, height: PropTypes.string, fill: PropTypes.string, stroke: PropTypes.string, }; export default Download;