26 lines
1.9 KiB
XML
26 lines
1.9 KiB
XML
import { createIcon } from '../lib/create-icon'
|
|
|
|
const SvgRotateIcon = createIcon(props => {
|
|
return (
|
|
<svg
|
|
{...props}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={props.width}
|
|
height={props.height}
|
|
fill="none"
|
|
viewBox="0 0 20 20"
|
|
focusable={false}
|
|
aria-hidden={true}
|
|
>
|
|
<path
|
|
fill={props.color}
|
|
fillRule="evenodd"
|
|
d="M6.417 2.735a8.1 8.1 0 0 1 11.407 5.169l-1.16.31A6.9 6.9 0 0 0 4.45 5.9H7v1.2H2.9V3h1.2v1.45a8.1 8.1 0 0 1 2.317-1.715Zm-.716 9.98a1.23 1.23 0 0 1-.097-.215 1.23 1.23 0 0 1 .097-.216 5.27 5.27 0 0 1 .418-.625c.37-.488.88-1.06 1.43-1.61a16.51 16.51 0 0 1 1.61-1.43 5.27 5.27 0 0 1 .625-.418c.124-.067.192-.09.216-.097.024.007.092.03.216.097.168.092.38.232.625.418.487.37 1.06.88 1.61 1.43.549.55 1.06 1.123 1.43 1.61.185.245.326.457.418.625.067.124.09.192.097.216-.008.024-.03.092-.097.216-.092.168-.233.38-.418.625-.37.488-.881 1.06-1.43 1.61-.55.55-1.123 1.06-1.61 1.43a5.211 5.211 0 0 1-.625.418c-.124.067-.192.09-.216.097a1.23 1.23 0 0 1-.216-.097 5.207 5.207 0 0 1-.625-.418 16.51 16.51 0 0 1-1.61-1.43c-.55-.55-1.06-1.123-1.43-1.61a5.212 5.212 0 0 1-.418-.625ZM10 6.9c-.285 0-.57.128-.788.247-.242.13-.507.31-.778.515a17.67 17.67 0 0 0-1.733 1.539 17.66 17.66 0 0 0-1.539 1.734 6.39 6.39 0 0 0-.516.777c-.118.217-.246.503-.246.788 0 .285.128.57.246.788.132.242.311.507.516.777a17.54 17.54 0 0 0 1.539 1.734 17.65 17.65 0 0 0 1.733 1.539c.271.205.536.384.778.515.217.119.503.247.788.247.285 0 .57-.128.788-.247.242-.13.506-.31.777-.515a17.666 17.666 0 0 0 1.734-1.539 17.666 17.666 0 0 0 1.539-1.734 6.26 6.26 0 0 0 .515-.777c.119-.217.247-.503.247-.788 0-.285-.128-.57-.247-.788a6.361 6.361 0 0 0-.515-.777A17.662 17.662 0 0 0 13.299 9.2a17.664 17.664 0 0 0-1.734-1.539 6.363 6.363 0 0 0-.777-.515c-.217-.119-.503-.247-.788-.247Z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</svg>
|
|
)
|
|
})
|
|
|
|
export default SvgRotateIcon
|