styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 782 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Shift = 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: "M10.5 14h-5a.5.5 0 01-.5-.5V8H3a.5.5 0 01-.354-.854l5-5a.5.5 0 01.707 0l5 5a.499.499 0 01-.354.854h-2v5.5a.5.5 0 01-.5.5zM6 13h4V7.5a.5.5 0 01.5-.5h1.293L8 3.207 4.207 7H5.5a.5.5 0 01.5.5V13z", key: "k0" })));
});
Shift.displayName = 'Shift';
export var ShiftDimensions = { height: 16, width: 16 };