styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 976 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.SortNumericAsc = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M5 12V0H3v12H.5L4 15.5 7.5 12H5zM13.5 7a.5.5 0 01-.5-.5V1h-.5a.5.5 0 010-1h1a.5.5 0 01.5.5v6a.5.5 0 01-.5.5zM14.5 9h-3a.5.5 0 00-.5.5v3a.5.5 0 00.5.5H14v2h-2.5a.5.5 0 000 1h3a.5.5 0 00.5-.5v-6a.5.5 0 00-.5-.5zM12 10h2v2h-2v-2z", key: "k0" })));
});
exports.SortNumericAsc.displayName = 'SortNumericAsc';
exports.SortNumericAscDimensions = { height: 16, width: 16 };
;