@pinuts/bsr-uikit-relaunch
Version:
BSR UI-KIT Relaunch
62 lines (58 loc) • 2.65 kB
JSX
import * as React from 'react';
import PropTypes from 'prop-types';
import Icon40PropValues from '../_defaultIconPropValues.ts';
const Compass = (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.2}
d="m14.155 12.59-1.49-.155.33-3.165-1.78 2.64-1.245-.84 3.46-5.125a.752.752 0 0 1 1.37.5l-.645 6.15z"
/>
<path
fill={fill}
stroke={stroke}
strokeWidth={0.2}
d="M9.95 18.39a.752.752 0 0 1-.745-.83l.645-6.15 1.49.155-.33 3.175 1.77-2.615 1.24.84-3.45 5.09a.76.76 0 0 1-.62.33z"
/>
<path
fill={fill}
stroke={stroke}
strokeWidth={0.4}
d="M12 22.75C6.075 22.75 1.25 17.93 1.25 12S6.075 1.25 12 1.25 22.75 6.075 22.75 12 17.93 22.75 12 22.75Zm0-20C6.9 2.75 2.75 6.9 2.75 12S6.9 21.25 12 21.25s9.25-4.15 9.25-9.25S17.1 2.75 12 2.75Z"
/>
<path
fill={fill}
stroke={stroke}
strokeWidth={0.4}
d="M16.75 8a.75.75 0 0 1-.53-.22.745.745 0 0 1 0-1.06l2.25-2.25a.745.745 0 0 1 1.06 0 .745.745 0 0 1 0 1.06l-2.25 2.25a.75.75 0 0 1-.53.22ZM5 19.75a.75.75 0 0 1-.53-.22.745.745 0 0 1
0-1.06l2.25-2.25a.75.75 0 0 1 1.06 1.06l-2.25 2.25a.75.75 0 0 1-.53.22ZM19 19.75a.75.75 0 0 1-.53-.22l-2.25-2.25a.75.75 0 0 1 1.06-1.06l2.25 2.25a.745.745 0 0 1 0 1.06.75.75 0 0 1-.53.22ZM7.25
8a.75.75 0 0 1-.53-.22L4.47 5.53a.745.745 0 0 1 0-1.06.745.745 0 0 1 1.06 0l2.25 2.25a.745.745 0 0 1 0 1.06.75.75 0 0 1-.53.22ZM12 14.25a2.255 2.255 0 0 1-2.115-3.02 2.24 2.24 0 0 1 1.165-1.27
2.23 2.23 0 0 1 1.72-.075c.565.205 1.015.62 1.27 1.165s.28 1.155.075 1.72A2.247 2.247 0 0 1 12 14.25Zm0-3a.733.733 0 0 0-.7.495.75.75 0 0 0 1.025.935.76.76 0 0 0
.39-.425c.07-.19.06-.39-.025-.575a.73.73 0 0 0-.425-.385.8.8 0 0 0-.255-.045z"
/>
</svg>
);
};
Compass.propTypes = {
width: PropTypes.string,
height: PropTypes.string,
fill: PropTypes.string,
stroke: PropTypes.string,
};
export default Compass;