@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 803 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Rewind = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M21 4.75v14c0 .62-.72.98-1.21.6l-7.29-5.68v5.08c0 .62-.72.98-1.21.6l-9-7a.75.75 0 0 1 0-1.2l9-7a.75.75 0 0 1 1.21.6v5.08l7.3-5.67a.75.75 0 0 1 1.2.59z"
}));
});
Rewind.displayName = 'Rewind';
export var RewindDimensions = {
height: 24,
width: 24
};