UNPKG

@pinuts/bsr-uikit-relaunch

Version:

BSR UI-KIT Relaunch

52 lines (48 loc) 1.98 kB
import React from 'react'; import PropTypes from 'prop-types'; import Icon40PropValues from '../_defaultIconPropValues.ts'; const ArrowUTurn = (props) => { const { width = Icon40PropValues.width, height = Icon40PropValues.height, fill = Icon40PropValues.fill, stroke = Icon40PropValues.stroke, ...restProps } = props; return ( <svg width={width} height={height} {...restProps} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M15.775 16.23C15.55 16.23 15.325 16.145 15.155 15.975C14.815 15.635 14.815 15.08 15.155 14.74L21.39 8.505C21.73 8.165 22.285 8.165 22.625 8.505C22.965 8.845 22.965 9.4 22.625 9.74L16.39 15.975C16.22 16.145 15.995 16.23 15.77 16.23H15.775Z" fill={fill} stroke={stroke} strokeWidth="0.4" /> <path d="M22.01 10C21.785 10 21.56 9.915 21.39 9.745L15.155 3.51C14.815 3.17 14.815 2.615 15.155 2.275C15.495 1.935 16.05 1.935 16.39 2.275L22.625 8.51C22.965 8.85 22.965 9.405 22.625 9.745C22.455 9.915 22.23 10 22.005 10H22.01Z" fill={fill} stroke={stroke} strokeWidth="0.4" /> <path d="M20.57 21.985H1.87C1.385 21.985 0.994995 21.595 0.994995 21.11V9.6C0.994995 8.855 1.605 8.245 2.35 8.245H21.53C22.015 8.245 22.405 8.635 22.405 9.12C22.405 9.605 22.015 9.995 21.53 9.995H2.745V20.235H20.57C21.055 20.235 21.445 20.625 21.445 21.11C21.445 21.595 21.055 21.985 20.57 21.985Z" fill={fill} stroke={stroke} strokeWidth="0.4" /> </svg> ); }; ArrowUTurn.propTypes = { width: PropTypes.string, height: PropTypes.string, fill: PropTypes.string, stroke: PropTypes.string, }; export default ArrowUTurn;