styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
15 lines (14 loc) • 974 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Watch = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M13 8h-2v5h5v-2h-3z", key: "k0" }),
React.createElement("path", { d: "M19.999 12c0-2.953-1.612-5.53-3.999-6.916V3a1 1 0 00-1-1H9a1 1 0 00-1 1v2.083C5.613 6.469 4.001 9.047 4.001 12a8.003 8.003 0 004.136 7H8v2.041a1 1 0 001 1h6a1 1 0 001-1V19h-.139a8 8 0 004.138-7zm-8 5.999A6.005 6.005 0 016.001 12a6.005 6.005 0 015.998-5.999c3.31 0 6 2.691 6 5.999a6.005 6.005 0 01-6 5.999z", key: "k1" })));
});
Watch.displayName = 'Watch';
export var WatchDimensions = { height: 24, width: 24 };