@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
66 lines (62 loc) • 3.4 kB
JSX
import * as React from 'react';
import PropTypes from 'prop-types';
import { Icon48PropValues } from '../_defaultIconPropValues.ts';
const Neues = (props) => {
const {
width = Icon48PropValues.width,
height = Icon48PropValues.height,
fill = Icon48PropValues.fill,
stroke = Icon48PropValues.stroke,
...restProps
} = props;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 48 48"
width={width}
height={height}
fill="none"
{...restProps}
>
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none">
<path
d="M31.2 7.11C31.14 7.11 31.09 7.13 31.03 7.15L9.67 13.94C9.56 13.98 9.43 14 9.31 13.99H5.89C4.71 13.97 3.59 14.68 3.06 15.77C1.63 18.89 1.63 23.08 3.06 26.2C3.58 27.29 4.68 27.99 5.88
27.99H8.11L9.57 38.41C9.78 39.89 11.05 40.99 12.53 40.99H16.38C18.02 40.99 19.36 39.66 19.38 38.02C19.38 37.88 19.38 37.73 19.35 37.56L18.28 30.81L31.03 34.84C31.35 34.95 31.68 35 32.01
35C32.49 35 32.98 34.89 33.42 34.66C34.16 34.29 34.71 33.66 34.98 32.86C37.64 25.62 37.63 17.21 34.96 9.17C34.46 7.59 32.82 6.69 31.17 7.09L31.2 7.11ZM5.92 26C5.45 26 5.07 25.75 4.89
25.36C3.71 22.78 3.71 19.18 4.89 16.62C5.08 16.23 5.48 15.98 5.91 15.98H8.01V25.99H5.93L5.92 26ZM17.39 37.86C17.39 37.86 17.39 37.96 17.39 38.01C17.39 38.56 16.93 39.02 16.37 39H12.56C12.06
38.97 11.63 38.64 11.56 38.14L10.18 28.26L16.16 30.15L17.38 37.86H17.39ZM33.13 32.19C33.13 32.19 33.13 32.21 33.12 32.22C33.03 32.51 32.82 32.74 32.55 32.88C32.28 33.02 31.97 33.04
31.67 32.94L10.14 26.14C10.14 26.14 10.05 26.12 10 26.11V15.91C10.1 15.89 10.19 15.87 10.29 15.84L31.57 9.07C31.57 9.07 31.63 9.06 31.66 9.05C32.26 8.86 32.9 9.19 33.09 9.79C33.09 9.79
33.09 9.79 33.09 9.8C35.62 17.41 35.63 25.36 33.13 32.18V32.19Z"
fill={fill}
stroke={stroke}
strokeWidth="0.6"
/>
<path
d="M45 20H40C39.45 20 39 20.45 39 21C39 21.55 39.45 22 40 22H45C45.55 22 46 21.55 46 21C46 20.45 45.55 20 45 20Z"
fill={fill}
stroke={stroke}
strokeWidth="0.6"
/>
<path
d="M44.37 28.07L39.37 26.07C38.86 25.86 38.28 26.11 38.07 26.63C37.86 27.14 38.11 27.72 38.63 27.93L43.63 29.93C43.75 29.98 43.88 30 44 30C44.4 30 44.77 29.76 44.93 29.37C45.14 28.86 44.89 28.28 44.37 28.07Z"
fill={fill}
stroke={stroke}
strokeWidth="0.6"
/>
<path
d="M39 16C39.12 16 39.25 15.98 39.37 15.93L44.37 13.93C44.88 13.72 45.13 13.14 44.93 12.63C44.72 12.12 44.14 11.87 43.63 12.07L38.63 14.07C38.12 14.28 37.87 14.86 38.07 15.37C38.23 15.76 38.6 16 39 16Z"
fill={fill}
stroke={stroke}
strokeWidth="0.6"
/>
</svg>
</svg>
);
};
Neues.propTypes = {
width: PropTypes.string,
height: PropTypes.string,
fill: PropTypes.string,
stroke: PropTypes.string,
};
export default Neues;