styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 1.03 kB
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.Remixicon = 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 24 24" }, props, { ref: ref }),
React.createElement("path", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }),
React.createElement("path", { d: "M16.53 17.53L20 21H3V4h10.667v.008A7.118 7.118 0 0114.136 4c-.089.37-.136.76-.136 1.166C14 7.485 16.015 9.5 18.667 9.5a4.18 4.18 0 002.032-.538 7.003 7.003 0 01-4.17 8.567zM18.5 7.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z", key: "k1" })));
});
exports.Remixicon.displayName = 'Remixicon';
exports.RemixiconDimensions = { height: 24, width: 24 };
;