styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.93 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.Ink = 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 32 32" }, props, { ref: ref }),
React.createElement("path", { fillRule: "evenodd", d: "M16 32C7.163 32 0 24.837 0 16S7.163 0 16 0s16 7.163 16 16-7.163 16-16 16zm-1.14-20.473c-.318.086-.445.421-.593.691-1.25 2.386-2.52 4.76-3.77 7.124a.696.696 0 00.096.842c.243.27.624.173.942.195.328 0 .752.053.953-.281.413-.734.773-1.511 1.186-2.256.243-.454.974-.378 1.143.097.286.723.52 1.479.816 2.202.2.475.931.475 1.154.022 1.334-2.494 2.678-4.977 4.012-7.47.276-.421-.084-1.036-.571-1.004-.466.043-1.08-.173-1.42.27-.412.712-.75 1.457-1.174 2.159-.254.388-.9.334-1.09-.087-.319-.701-.594-1.424-.9-2.126-.128-.302-.477-.475-.784-.378zm-4.363.184c-.243.01-.423.216-.529.42-1.292 2.43-2.583 4.858-3.875 7.276-.275.4.106.993.561.972.37 0 .752.032 1.122-.022.318-.086.434-.432.583-.69 1.238-2.333 2.488-4.664 3.727-7.006.2-.378-.064-.907-.477-.95a9.55 9.55 0 00-1.112 0zm13.14.021c-.254.087-.36.367-.476.583-.202.421-.456.82-.636 1.252-.2.54.487 1.09.953.767.741-.454 1.461-.95 2.192-1.414.36-.184.445-.734.159-1.026-.233-.28-.636-.216-.953-.227-.413.033-.837-.054-1.239.065zm-3.505 6.455c-.211.097-.307.346-.402.55-.127.27-.286.519-.392.8-.148.388.17.863.572.863.805.01 1.62 0 2.435 0 .381.032.71-.345.667-.734-.01-.291-.264-.496-.508-.604-.572-.27-1.133-.573-1.694-.853-.201-.108-.466-.151-.678-.022z", key: "k0" })));
});
exports.Ink.displayName = 'Ink';
exports.InkDimensions = { height: 32, width: 32 };
;