UNPKG

styled-icons

Version:

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

14 lines (13 loc) 765 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var ArrowDown2 = 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: "M13.707 9.707l-5 5a.999.999 0 01-1.414 0l-5-5a.999.999 0 111.414-1.414L7 11.586V2a1 1 0 012 0v9.586l3.293-3.293a.997.997 0 011.414 0 .999.999 0 010 1.414z", key: "k0" }))); }); ArrowDown2.displayName = 'ArrowDown2'; export var ArrowDown2Dimensions = { height: 16, width: 16 };