UNPKG

@pinuts/bsr-uikit-relaunch

Version:

BSR UI-KIT Relaunch

43 lines (39 loc) 1.62 kB
import * as React from 'react'; import PropTypes from 'prop-types'; import Icon40PropValues from '../_defaultIconPropValues.ts'; const Map = (props) => { const { width = Icon40PropValues.width, height = Icon40PropValues.height, stroke = Icon40PropValues.stroke, ...restProps } = props; return ( <svg xmlns="http://www.w3.org/2000/svg" width={width} height={height} {...restProps} viewBox="0 0 48 48" fill="none" > <path d="M18 38L7.58 41.474C7.39946 41.5343 7.20717 41.5507 7.01901 41.522C6.83085 41.4933 6.65222 41.4203 6.49786 41.3089C6.34351 41.1975 6.21786 41.051 6.13129 40.8815C6.04472 40.712 5.99972 40.5243 6 40.334V10.866C6.00005 10.6143 6.07926 10.3689 6.22642 10.1647C6.37358 9.96049 6.58123 9.80771 6.82 9.728L18 6M18 38L30 42M18 38V6M18 6L30 10M30 42L41.18 38.274C41.4191 38.1942 41.627 38.0411 41.7742 37.8365C41.9214 37.6318 42.0004 37.3861 42 37.134V7.664C42 7.47383 41.9547 7.28639 41.868 7.11714C41.7813 6.94789 41.6556 6.80166 41.5013 6.69052C41.347 6.57938 41.1685 6.5065 40.9805 6.4779C40.7925 6.44929 40.6004 6.46578 40.42 6.526L30 10M30 42V10" stroke={stroke} strokeWidth="3" strokeLinecap="round" strokeLinejoin="round" /> </svg> ); }; Map.propTypes = { width: PropTypes.string, height: PropTypes.string, fill: PropTypes.string, stroke: PropTypes.string, }; export default Map;