@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
41 lines (37 loc) • 1.02 kB
JSX
import * as React from 'react';
import PropTypes from 'prop-types';
import Icon40PropValues from '../_defaultIconPropValues.ts';
const ZoomIn = (props) => {
const {
width = Icon40PropValues.width,
height = Icon40PropValues.height,
stroke = Icon40PropValues.stroke,
...restProps
} = props;
delete restProps.fill;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width={width}
height={height}
{...restProps}
fill="none"
>
<path
stroke={stroke}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.8}
d="M10 20H4v-6M14.5 3.5h6v6M20.5 3.5 14 10M10.5 13.5 4 20"
/>
</svg>
);
};
ZoomIn.propTypes = {
width: PropTypes.string,
height: PropTypes.string,
fill: PropTypes.string,
stroke: PropTypes.string,
};
export default ZoomIn;