@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
51 lines (46 loc) • 1.66 kB
JSX
import * as React from 'react';
import PropTypes from 'prop-types';
import IconDefaultPropValues from '../_defaultIconPropValues.ts';
const RCH_closed = (props) => {
const {
width = IconDefaultPropValues.width,
height = IconDefaultPropValues.height,
...restProps
} = props;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width={width}
height={height}
stroke="none"
fill="none"
{...restProps}
>
<path
d="M2.73003 21.5002C2.42503 21.4952 2.14003 21.4152 1.89003 21.2702C1.49503 21.0402 1.21503 20.6752 1.09503 20.2352C0.975027 19.7952 1.04003 19.3352
1.26503 18.9402L10.54 3.32022C10.54 3.32022 10.54 3.31022 10.545 3.31022C10.685 3.09022 10.875 2.89522 11.095 2.76022C11.485 2.52022 11.94 2.44522
12.385 2.55022C12.83 2.65522 13.205 2.92522 13.445 3.31022L22.72 18.9352C22.87 19.1952 22.95 19.4802 22.955 19.7702C22.96 20.2252 22.79 20.6602 22.475
20.9852C22.16 21.3102 21.73 21.4952 21.275 21.5052H2.73003V21.5002Z"
fill="#E42C1B"
/>
<circle
cx="12"
cy="18.6663"
r="1.33333"
fill="white"
/>
<path
d="M12 8L12 14.6667"
stroke="white"
strokeWidth="2"
strokeLinecap="round"
/>
</svg>
);
};
RCH_closed.propTypes = {
width: PropTypes.string,
height: PropTypes.string,
};
export default RCH_closed;