UNPKG

@pinuts/bsr-uikit-relaunch

Version:

BSR UI-KIT Relaunch

53 lines (48 loc) 2.04 kB
import * as React from 'react'; import PropTypes from 'prop-types'; import { Icon48PropValues } from '../_defaultIconPropValues.ts'; const Tonne1100l = (props) => { const { width = Icon48PropValues.width, height = Icon48PropValues.height, stroke = Icon48PropValues.stroke, fill = Icon48PropValues.fill, ...restProps } = props; return ( <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width={width} height={height} fill="none" {...restProps} > <path fill={fill} stroke={stroke} strokeWidth={0.6} d="M46 13H29c-1.1 0-2-.9-2-2h-6c0 1.1-.9 2-2 2H2V8.82c0-.84.36-1.65.98-2.22l2.01-1.83c.55-.5 1.26-.78 2.01-.78h34.01c.75 0 1.46.28 2.01.78l2 1.82c.63.57.99 1.38.99 2.23v4.17zM21 9h6c1.1 0 2 .9 2 2h15V8.83c0-.29-.12-.56-.33-.75l-2-1.82A.97.97 0 0 0 41 6H7a1 1 0 0 0-.67.26L4.32 8.09a1 1 0 0 0-.33.74v2.18h15c0-1.1.9-2 2-2z" /> <path fill={fill} stroke={stroke} strokeWidth={0.6} d="M41 36H7c-1.65 0-3-1.35-3-3V18.63l-1.31-1.12C2.25 17.13 2 16.58 2 16v-5h16v2H4v3l1.29 1.12c.46.4.72.96.71 1.52V33c0 .55.45 1 1 1h34c.55 0 1-.45 1-1V18.7c0-.56.24-1.1.65-1.48L44 15.99v-3H30v-2h16v5c0 .56-.24 1.1-.65 1.48L44 18.7V33c0 1.65-1.35 3-3 3Z" /> <path fill={fill} stroke={stroke} strokeWidth={0.6} d="M13 44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5Zm0-8c-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3-1.35-3-3-3ZM35 44c-2.75 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.25 5-5 5Zm0-8c-1.65 0-3 1.35-3 3s1.34 3 3 3 3-1.35 3-3-1.35-3-3-3Z" /> </svg> ); }; Tonne1100l.propTypes = { width: PropTypes.string, height: PropTypes.string, stroke: PropTypes.string, fill: PropTypes.string, }; export default Tonne1100l;