@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
46 lines (42 loc) • 1.31 kB
JSX
import * as React from 'react';
import PropTypes from 'prop-types';
import Icon40PropValues from '../_defaultIconPropValues.ts';
const Plus = (props) => {
const {
width = Icon40PropValues.width,
height = Icon40PropValues.height,
stroke = Icon40PropValues.stroke,
fill = Icon40PropValues.fill,
...restProps
} = props;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width={width}
height={height}
{...restProps}
fill="none"
>
<path
fill={fill}
stroke={stroke}
strokeWidth={0.4}
d="M12.616 21.81a.874.874 0 0 1-1.492-.615V2.81c0-.48.393-.873.874-.873.48 0 .873.392.873.873v18.385c0 .24-.1.46-.258.619z"
/>
<path
fill={fill}
stroke={stroke}
strokeWidth={0.4}
d="M21.809 12.618a.87.87 0 0 1-.62.258H2.806a.875.875 0 0 1-.873-.873c0-.481.392-.874.873-.874H21.19a.874.874 0 0 1 .615 1.492z"
/>
</svg>
);
};
Plus.propTypes = {
width: PropTypes.string,
height: PropTypes.string,
fill: PropTypes.string,
stroke: PropTypes.string,
};
export default Plus;