UNPKG

@pinuts/bsr-uikit-relaunch

Version:

BSR UI-KIT Relaunch

41 lines (37 loc) 1.2 kB
import * as React from 'react'; import PropTypes from 'prop-types'; import Icon40PropValues from '../_defaultIconPropValues.ts'; const Stift = (props) => { const { width = Icon40PropValues.width, height = Icon40PropValues.height, stroke = Icon40PropValues.stroke, ...restProps } = props; delete restProps.fill; return ( <svg width={width} height={height} {...restProps} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M15 6L18 9M13 20H21M5 16L4 20L8 19L19.586 7.414C19.9609 7.03895 20.1716 6.53033 20.1716 6C20.1716 5.46967 19.9609 4.96106 19.586 4.586L19.414 4.414C19.0389 4.03906 18.5303 3.82843 18 3.82843C17.4697 3.82843 16.9611 4.03906 16.586 4.414L5 16Z" stroke={stroke} strokeWidth="1.8" strokeLinecap="round" strokeLinejoin="round" /> </svg> ); }; Stift.propTypes = { width: PropTypes.string, height: PropTypes.string, fill: PropTypes.string, stroke: PropTypes.string, }; export default Stift;