@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
20 lines (18 loc) • 726 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function PowerPlugOff(props) {
const { color, size, customColor, className, dataTest } = props;
return React.createElement(
OrbitIcon,
{
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
},
React.createElement("path", { d: "M8 3v3.18c3.1 3.05 6.1 6.12 9.2 9.12.2-.3.6-.5.8-.9V8.8c0-1.12-1.3-1.64-2-1.96V3h-2v4h-4V3H8zM3.28 4c-.43.42-.85.85-1.28 1.27l4 4v5.23c1.17 1.15 2.33 2.33 3.5 3.5v3h5v-3c.22-.27.45.33.67.44 1.2 1.2 2.3 2.4 3.5 3.6.5-.4.9-.9 1.3-1.3-5.6-5.6-11.2-11.1-16.7-16.7L3.28 4z" })
);
}