UNPKG

styled-icons

Version:

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

14 lines (13 loc) 997 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var ArrowDownOutline = 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: "M12 21.312l-7.121-7.121a3.002 3.002 0 010-4.242C5.973 8.855 7.857 8.811 9 9.834V5c0-1.654 1.346-3 3-3s3 1.346 3 3v4.834c1.143-1.023 3.027-.979 4.121.115a3.002 3.002 0 010 4.242L12 21.312zM7 11.07a.999.999 0 00-.707 1.707L12 18.484l5.707-5.707a.999.999 0 000-1.414 1.021 1.021 0 00-1.414 0L13 14.656V5a1.001 1.001 0 00-2 0v9.656l-3.293-3.293A.991.991 0 007 11.07z", key: "k0" }))); }); ArrowDownOutline.displayName = 'ArrowDownOutline'; export var ArrowDownOutlineDimensions = { height: 24, width: 24 };