@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
46 lines (42 loc) • 2.83 kB
JSX
import * as React from 'react';
import PropTypes from 'prop-types';
import { Icon160PropValues } from '../_defaultIconPropValues.ts';
const Blatt = (props) => {
const {
width = Icon160PropValues.width,
height = Icon160PropValues.height,
fill = Icon160PropValues.fill,
...restProps
} = props;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 160 160"
width={width}
height={height}
fill="none"
{...restProps}
>
<path
fill={fill}
d="M152.333 77.667c-.666-1.334-1.666-2-3-2.667l-6-3.333L148.667 55c1.333-3.333 0-7.333-3.667-8.667a7.65 7.65 0 0 0-4.667-.333L127 49.333v-3c0-1.666-.333-3.333-1.667-5A5.83 5.83 0 0 0 120.667
39c-2-.333-4 .667-5 1.667L108 47l-.333.333V47l3.666-18.667c1.334-1.666 1-3.333.334-5q-1.5-2.499-4-3a8.1 8.1 0 0 0-4 0l-10 3-8-13a6.68 6.68 0 0 0-9-3C75.333 8 74.333 9 74 10l-8.333
13.333-9.334-3C53 19 49 20.667 47.667 24.333c-.667 1.334-.667 2.667-.334 4l3.667 19v.334l-.333-.334-7.334-6c-2.666-2.666-6.666-2.666-9.333 0-1.333 1.334-2 3.334-2 5l-.333 3.334-13-3.334C15.333 45
11.333 47 10 50.333 9.333 52 9.333 53.667 10 55l5.333 17-5.666 3.333c-1.667.667-3 2-3.334 3.667-.666 1.667-.666 3.333.334 5C7.333 85 8 86 9 86.667L39 109l-2 9.333c-.333 1.667-.333 3.667.667 5q1.5
2.5 4 3c.666 0 1.333.334 1.666.334.667 0 1 0 1.334-.334l31.333-6V150c0 2 1.333 3.333 3.333 3.333S82.667 152 82.667 150v-29.667l31 6c3.666 1 7.333-1.333 8-4.666.333-1 .333-2.334 0-3.334l-2-9.333
29.666-22.333q2.001-1.5 3-4c1.334-1.667 1-3.334 0-5m-6 3.666-30 22.334c-2 1.666-3 4-2.333 6.666l2 9.667-32.667-6.333V98.333l25-15.666c1.667-1 2-3 1-4.667s-3-2-4.666-1L83
90.333V60c0-2-1.333-3.333-3.333-3.333S76.333 58 76.333 60v30.667L54.667 77.333c-1.667-1-3.667-.666-4.667 1C49 80 49.333 82 51 83l25 15.667V114l-32.667 6 2-9.667c.334-2.333-.666-5-2.666-6.666L12.667
81l5.666-3.333c3-1.667 4.334-5 3.334-8l-5.334-17 13 3.333c.667.333 1.667.333 2.334.333 1.666 0 3.333-1 4.666-2.333S38 51 38 49.333L38.333 46 46 52.333C47.667 54 50.333 54.667 52.667 54c1.666-.667
3-1.667 4-3.333.666-1.667 1-3.334.333-4.667l-2.667-19.333 9.667 3c2.667 1 6-.334 7.667-3L80 13.333l8 13.334c1.667 2.666 5 4 7.667 3l10-2.667L102 45.667c-.667 2.333 0 5 2 6.666a7.1 7.1 0 0 0 9.333
0L121 46v3c0 .667 0 1.667.333 2.333 1 3.334 5 5.334 8.334 4.334L143 52.333 137.667 69c-1.334 3.333.333 6.667 3 8l6 3.333c-.334.667 0 .667-.334 1"
/>
</svg>
);
};
Blatt.propTypes = {
width: PropTypes.string,
height: PropTypes.string,
fill: PropTypes.string,
stroke: PropTypes.string,
};
export default Blatt;