@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
18 lines • 1.68 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function PowerPlugOff(props) {
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: props.size,
color: props.color,
customColor: props.customColor,
className: props.className,
dataTest: props.dataTest,
ariaHidden: props.ariaHidden,
reverseOnRtl: props.reverseOnRtl,
ariaLabel: props.ariaLabel
}, React.createElement("path", {
d: "M8.326 7.16c.21-.38.462-.74.757-1.077l2.667-2.666c.5-.5 1.25-.5 1.75 0l.417.416c.083.084.25.084.333 0l1.583-1.583a.806.806 0 0 1 1.167 0 .806.806 0 0 1 0 1.167L15.417 5a.253.253 0 0 0 0 .333l2 2.084c.083.083.25.083.333 0l1.583-1.584a.806.806 0 0 1 1.167 0A.806.806 0 0 1 20.5 7l-1.583 1.583c-.084.084-.084.167 0 .25l.5.5c.5.5.5 1.25 0 1.75L16.75 13.75c-.29.331-.642.601-1.024.809l6.024 6.024a.806.806 0 0 1 0 1.167c-.333.333-.917.333-1.167 0L2.25 3.417a.806.806 0 0 1 0-1.167.806.806 0 0 1 1.167 0l4.909 4.91zm2.554 2.554l2.24 2.24a1.701 1.701 0 0 0 .38-.287c.667-.667.667-1.667 0-2.334-.667-.666-1.667-.666-2.333 0a1.701 1.701 0 0 0-.287.38zM9 17.416a2.09 2.09 0 0 1 2.917-.084c.833.75.833 2.084 0 2.917L10.5 21.667a.806.806 0 0 1-1.167 0 .806.806 0 0 1 0-1.167l1.417-1.417a.403.403 0 0 0 0-.583.403.403 0 0 0-.583 0L7.5 21.167c-.917.916-2.5.916-3.5 0-1-.917-1-2.5 0-3.5l2.917-2.834a.254.254 0 0 0 0-.333l-.167-.25a.403.403 0 0 1 0-.583l1.5-1.5v-.25c-.167-.417-.333-.834-.417-1.25l4.25 4.416c-.416-.166-.833-.25-1.25-.5-.083-.083-.166-.083-.25 0l-1.5 1.5a.403.403 0 0 1-.583 0L8.417 16a.254.254 0 0 0-.334 0l-2.916 2.917a.805.805 0 0 0 0 1.166.805.805 0 0 0 1.166 0L9 17.417z"
}));
}