styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.23 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.Feather = 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", { d: "M11.68 1.017L11.5.983l-.18.033a10.15 10.15 0 00-.82 19.779V22a1 1 0 102 0v-1.205a10.147 10.147 0 00-.82-19.778zM12.5 18.7V7a1 1 0 10-2 0v11.7a8.139 8.139 0 01-5.49-7.483l3.137 3.137a.498.498 0 00.707 0 .5.5 0 000-.707L5.085 9.878a8.116 8.116 0 01.877-2.709l2.184 2.185a.502.502 0 00.708 0 .5.5 0 000-.707L6.501 6.294A8.132 8.132 0 0111.5 3.019a8.14 8.14 0 014.999 3.275l-2.353 2.353a.5.5 0 00.708.707l2.184-2.185c.444.832.744 1.745.877 2.709l-3.769 3.769a.5.5 0 00.708.707l3.137-3.137A8.141 8.141 0 0112.5 18.7z", key: "k0" })));
});
exports.Feather.displayName = 'Feather';
exports.FeatherDimensions = { height: 24, width: 24 };
;