styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 976 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var ToggleLeft = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M8 9c-1.628 0-3 1.372-3 3s1.372 3 3 3 3-1.372 3-3-1.372-3-3-3z", key: "k0" }),
React.createElement("path", { d: "M16 6H8c-3.3 0-5.989 2.689-6 6v.016A6.01 6.01 0 008 18h8a6.01 6.01 0 006-5.994V12c-.009-3.309-2.699-6-6-6zm0 10H8a4.006 4.006 0 01-4-3.99C4.004 9.799 5.798 8 8 8h8c2.202 0 3.996 1.799 4 4.006A4.007 4.007 0 0116 16zm4-3.984l.443-.004.557.004h-1z", key: "k1" })));
});
ToggleLeft.displayName = 'ToggleLeft';
export var ToggleLeftDimensions = { height: 24, width: 24 };