@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
47 lines (42 loc) • 1.58 kB
JSX
import * as React from 'react';
import PropTypes from 'prop-types';
import { Icon48PropValues } from '../_defaultIconPropValues.ts';
const Verpackungen = (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="M23 10h-5c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h5c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1Zm-4-2h3V4h-3zM31 41.52c-.25 0-.5-.1-.69-.28l-4-3.81a1 1 0 0 1-.31-.72V23c0-.4.24-.76.6-.92.37-.16.79-.08 1.08.19l4 3.77c.2.19.31.45.31.73v13.75a1.004 1.004 0 0 1-1 1zm-3-5.23 2 1.91V27.22l-2-1.89V36.3z"
/>
<path
fill={fill}
stroke={stroke}
strokeWidth={0.6}
d="M32 46H16c-2.21 0-4-1.79-4-4V19c0-.22.07-.43.2-.6l4.5-6a1 1 0 0 1 .8-.4h6c.26 0 .5.1.69.28l11.5 11c.2.19.31.45.31.72v18c0 2.21-1.79 4-4 4ZM14 19.33V42c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V24.43L23.1 14H18z"
/>
</svg>
);
};
Verpackungen.propTypes = {
width: PropTypes.string,
height: PropTypes.string,
stroke: PropTypes.string,
fill: PropTypes.string,
};
export default Verpackungen;