UNPKG

styled-icons

Version:

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

14 lines (13 loc) 687 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Redo = 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 16 16" }, props, { ref: ref }), React.createElement("path", { d: "M0 9a7.982 7.982 0 002.709 6l1.323-1.5a6 6 0 118.212-8.743L10.001 7h6V1l-2.343 2.343A8 8 0 00.001 9z", key: "k0" }))); }); Redo.displayName = 'Redo'; export var RedoDimensions = { height: 16, width: 16 };