styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 994 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var ArrowUpOutline = 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 21c-1.654 0-3-1.346-3-3v-4.764c-1.143 1.024-3.025.979-4.121-.115a3.002 3.002 0 010-4.242L12 1.758l7.121 7.121a3.002 3.002 0 010 4.242c-1.094 1.095-2.979 1.14-4.121.115V18c0 1.654-1.346 3-3 3zM11 8.414V18a1.001 1.001 0 002 0V8.414l3.293 3.293a1.023 1.023 0 001.414 0 .999.999 0 000-1.414L12 4.586l-5.707 5.707a.999.999 0 000 1.414 1.023 1.023 0 001.414 0L11 8.414z", key: "k0" })));
});
ArrowUpOutline.displayName = 'ArrowUpOutline';
export var ArrowUpOutlineDimensions = { height: 24, width: 24 };