UNPKG

styled-icons

Version:

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

15 lines (14 loc) 770 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var SortAmountDesc = 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: "M5 12V0H3v12H.5L4 15.5 7.5 12H5zM7 0h9v2H7V0zM7 3h7v2H7V3zM7 6h5v2H7V6z", key: "k0" }), React.createElement("path", { d: "M7 9h3v2H7V9z", key: "k1" }))); }); SortAmountDesc.displayName = 'SortAmountDesc'; export var SortAmountDescDimensions = { height: 16, width: 16 };