UNPKG

styled-icons

Version:

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

14 lines (13 loc) 1.1 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Directions = 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: "M20.908 9.5l-2.754-2.607A3.417 3.417 0 0015.917 6H13v-.5a1.5 1.5 0 00-3 0V6H6.5C4.57 6 3 7.57 3 9.5c0 1.396.828 2.596 2.016 3.157L3.172 14.5l2.561 2.561c.57.57 1.46.939 2.268.939h2.2l.8 4h1l.8-4h2.7c1.931 0 3.5-1.57 3.5-3.5 0-.902-.353-1.718-.915-2.339l.072-.056 2.75-2.605zM15.5 16H8c-.275 0-.658-.158-.854-.354L6 14.5l1.146-1.146C7.341 13.159 7.723 13 8 13h7.5a1.5 1.5 0 010 3zm1.279-5.344c-.199.19-.586.344-.862.344H6.5a1.5 1.5 0 010-3h9.417c.276 0 .663.154.862.344L18 9.5l-1.221 1.156z", key: "k0" }))); }); Directions.displayName = 'Directions'; export var DirectionsDimensions = { height: 24, width: 24 };