UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

15 lines (14 loc) 895 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Clockwise2 = 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", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }), React.createElement("path", { d: "M10.586 4L8.757 2.172 10.172.757 14.414 5l-4.242 4.243-1.415-1.415L10.586 6H8a3 3 0 00-3 3v4H3V9a5 5 0 015-5h2.586zM9 11a1 1 0 011-1h10a1 1 0 011 1v10a1 1 0 01-1 1H10a1 1 0 01-1-1V11zm2 1v8h8v-8h-8z", key: "k1" }))); }); Clockwise2.displayName = 'Clockwise2'; export var Clockwise2Dimensions = { height: 24, width: 24 };