UNPKG

styled-icons

Version:

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

14 lines (13 loc) 799 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var DirectionLeft = 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", { d: "M21.707 11.294l-8.978-9a1.001 1.001 0 00-1.415-.002l-9.021 9a1 1 0 000 1.416l9.021 9c.39.389 1.026.388 1.415-.002l8.978-9a.998.998 0 000-1.412zM15 16h-2v-4h-3v2l-3-3 3-3v2h5v6z", key: "k0" }))); }); DirectionLeft.displayName = 'DirectionLeft'; export var DirectionLeftDimensions = { height: 24, width: 24 };