@scaleflex/icons
Version:
SVG icons as React components
25 lines • 1.09 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var Indeterminate = intrinsicComponent(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Indeterminate",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 8",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M50 4.00085C50 1.92979 48.3211 0.250854 46.25 0.250854H3.75C1.67893 0.250854 0 1.92979 0 4.00085C0 6.07192 1.67893 7.75085 3.75 7.75085H46.25C48.3211 7.75085 50 6.07192 50 4.00085Z",
fill: color
}));
});
export default Indeterminate;