@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 944 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Smartwatch = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M9.5 2a2 2 0 0 0-2 2v1.3c.46-.2.97-.3 1.5-.3h6c.53 0 1.04.1 1.5.3V4a2 2 0 0 0-2-2h-5ZM9 6a3 3 0 0 0-3 3v6a3 3 0 0 0 3 3h6a3 3 0 0 0 3-3v-2a1 1 0 0 0 1-1v-1a1 1 0 0 0-1-1V9a3 3 0 0 0-3-3H9Zm0 13c-.53 0-1.04-.1-1.5-.3V20c0 1.1.9 2 2 2h5a2 2 0 0 0 2-2v-1.3c-.46.2-.97.3-1.5.3H9Z"
}));
});
Smartwatch.displayName = 'Smartwatch';
export var SmartwatchDimensions = {
height: 24,
width: 24
};