styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
21 lines (20 loc) • 1.1 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.Watch = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "none",
"xmlns": "http://www.w3.org/2000/svg",
"stroke": "currentColor",
"strokeLinecap": "round",
"strokeLinejoin": "round",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("circle", { cx: 12, cy: 12, r: 7, key: "k0" }),
React.createElement("polyline", { points: "12 9 12 12 13.5 13.5", key: "k1" }),
React.createElement("path", { d: "M16.51 17.35l-.35 3.83a2 2 0 01-2 1.82H9.83a2 2 0 01-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 019.83 1h4.35a2 2 0 012 1.82l.35 3.83", key: "k2" })));
});
exports.Watch.displayName = 'Watch';
exports.WatchDimensions = { height: 24, width: 24 };
;