UNPKG

styled-icons

Version:

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

14 lines (13 loc) 683 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Undo = 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: "M8 1a7.979 7.979 0 00-5.657 2.343L0 1v6h6L3.757 4.757a6 6 0 118.211 8.743l1.323 1.5A8 8 0 008 1z", key: "k0" }))); }); Undo.displayName = 'Undo'; export var UndoDimensions = { height: 16, width: 16 };