UNPKG

@pinuts/bsr-uikit-relaunch

Version:

BSR UI-KIT Relaunch

36 lines (32 loc) 1.27 kB
import * as React from 'react'; import PropTypes from 'prop-types'; import Icon40PropValues from '../_defaultIconPropValues.ts'; const Verify = (props) => { const { width = Icon40PropValues.width, height = Icon40PropValues.height, ...restProps } = props; delete restProps.stroke; delete restProps.fill; return ( <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width={width} height={height} {...restProps} fill="none" > <rect width="24" height="24" rx="12" fill="#07885B" /> <path d="M10.1982 17C10.0542 17 9.90725 16.949 9.79328 16.8411L6.19404 13.5423C5.95109 13.3174 5.9331 12.9396 6.15805 12.6937C6.383 12.4507 6.76092 12.4328 7.00687 12.6577L10.1652 15.5516L16.9588 8.19239C17.1837 7.94948 17.5616 7.93449 17.8076 8.1594C18.0505 8.38431 18.0655 8.76217 17.8406 9.00807L10.6421 16.8051C10.5251 16.934 10.3632 16.997 10.2012 16.997L10.1982 17Z" fill="white" stroke={'white'} /> </svg> ); }; Verify.propTypes = { width: PropTypes.string, height: PropTypes.string, fill: PropTypes.string, stroke: PropTypes.string, }; export default Verify;