@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
46 lines (42 loc) • 1.18 kB
JSX
import * as React from 'react';
import PropTypes from 'prop-types';
import Icon40PropValues from '../_defaultIconPropValues.ts';
const CheckStroke = (props) => {
const {
width = Icon40PropValues.width,
height = Icon40PropValues.height,
stroke = Icon40PropValues.stroke,
...restProps
} = props;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width={width}
height={height}
{...restProps}
fill="none"
>
<path
stroke={stroke}
strokeMiterlimit={10}
strokeWidth={1.8}
d="M11.5 21.5a9.5 9.5 0 1 0 0-19 9.5 9.5 0 0 0 0 19Z"
/>
<path
stroke={stroke}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.8}
d="m5.5 10 6 5.5L22 4"
/>
</svg>
);
};
CheckStroke.propTypes = {
width: PropTypes.string,
height: PropTypes.string,
fill: PropTypes.string,
stroke: PropTypes.string,
};
export default CheckStroke;