styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
20 lines (19 loc) • 1.15 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.Droplet = 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("defs", { key: "k0" },
React.createElement("path", { d: "M4 2.24h42V22H4z" })),
React.createElement("clipPath", { key: "k1" },
React.createElement("use", { overflow: "visible", xlinkHref: "#a" })),
React.createElement("path", { d: "M12.602 2.447a.989.989 0 00-1.21-.001C9.51 3.879 3.973 8.547 4 14c0 4.411 3.589 8 8 8 4.412 0 8-3.589 8-7.995.027-5.365-5.533-10.116-7.398-11.558", clipPath: "url(#b)", key: "k2" })));
});
exports.Droplet.displayName = 'Droplet';
exports.DropletDimensions = { height: 24, width: 24 };
;