@vx/shape
Version:
vx shape
41 lines (37 loc) • 1.92 kB
JavaScript
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
import React from 'react';
import cx from 'classnames';
import { arc } from '../util/D3ShapeFactories';
export default function Arc(_ref) {
var className = _ref.className,
data = _ref.data,
innerRadius = _ref.innerRadius,
outerRadius = _ref.outerRadius,
cornerRadius = _ref.cornerRadius,
startAngle = _ref.startAngle,
endAngle = _ref.endAngle,
padAngle = _ref.padAngle,
padRadius = _ref.padRadius,
children = _ref.children,
innerRef = _ref.innerRef,
restProps = _objectWithoutPropertiesLoose(_ref, ["className", "data", "innerRadius", "outerRadius", "cornerRadius", "startAngle", "endAngle", "padAngle", "padRadius", "children", "innerRef"]);
var path = arc({
innerRadius: innerRadius,
outerRadius: outerRadius,
cornerRadius: cornerRadius,
startAngle: startAngle,
endAngle: endAngle,
padAngle: padAngle,
padRadius: padRadius
}); // eslint-disable-next-line react/jsx-no-useless-fragment
if (children) return /*#__PURE__*/React.createElement(React.Fragment, null, children({
path: path
}));
if (!data) return null;
return /*#__PURE__*/React.createElement("path", _extends({
ref: innerRef,
className: cx('vx-arc', className),
d: path(data) || ''
}, restProps));
}