@pathwright/pathicons
Version:
Pathwright icons, synced from Figma to React components
40 lines (37 loc) • 2.78 kB
JavaScript
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
import React from 'react';
import PropTypes from 'prop-types';
import { jsx } from 'react/jsx-runtime';
var _excluded = ["color", "size"];
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
var BulletListIcon = /*#__PURE__*/React.forwardRef(function BulletListIcon(props, ref) {
var color = props.color,
size = props.size,
otherProps = _objectWithoutProperties(props, _excluded);
return /*#__PURE__*/jsx("svg", _objectSpread(_objectSpread({
ref: ref,
xmlns: "http://www.w3.org/2000/svg",
width: size,
height: size,
viewBox: "0 0 24 24",
fill: color
}, otherProps), {}, {
children: /*#__PURE__*/jsx("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2.1 21.06C2.1 19.9554 2.99543 19.06 4.1 19.06 5.20457 19.06 6.1 19.9554 6.1 21.06 6.1 22.1646 5.20457 23.06 4.1 23.06 2.99543 23.06 2.1 22.1646 2.1 21.06ZM2.1 12.06C2.1 10.9554 2.99543 10.06 4.1 10.06 5.20457 10.06 6.1 10.9554 6.1 12.06 6.1 13.1646 5.20457 14.06 4.1 14.06 2.99543 14.06 2.1 13.1646 2.1 12.06ZM2.1 3.06C2.1 1.95543 2.99543 1.06 4.1 1.06 5.20457 1.06 6.1 1.95543 6.1 3.06 6.1 4.16457 5.20457 5.06 4.1 5.06 2.99543 5.06 2.1 4.16457 2.1 3.06ZM9.1 3.06C9.1 2.50771 9.54771 2.06 10.1 2.06H21.1C21.6523 2.06 22.1 2.50771 22.1 3.06 22.1 3.61228 21.6523 4.06 21.1 4.06H10.1C9.54771 4.06 9.1 3.61228 9.1 3.06ZM9.1 12.06C9.1 11.5077 9.54771 11.06 10.1 11.06H21.1C21.6523 11.06 22.1 11.5077 22.1 12.06 22.1 12.6123 21.6523 13.06 21.1 13.06H10.1C9.54771 13.06 9.1 12.6123 9.1 12.06ZM9.1 21.06C9.1 20.5077 9.54771 20.06 10.1 20.06H21.1C21.6523 20.06 22.1 20.5077 22.1 21.06 22.1 21.6123 21.6523 22.06 21.1 22.06H10.1C9.54771 22.06 9.1 21.6123 9.1 21.06Z"
})
}));
});
BulletListIcon.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
};
BulletListIcon.defaultProps = {
color: 'currentColor',
size: '24'
};
export { BulletListIcon as default };
//# sourceMappingURL=bullet-list.js.map