rumble-charts
Version:
Truly declarative React charts components
14 lines (11 loc) • 378 B
JavaScript
import { __assign } from './external/tslib/tslib.es6.js';
import React from 'react';
import { Dots } from './Dots.js';
/**
* Renders labels for dots. Internally it's just a wrapper for [`<Dots>`](#dots) component
* with `dotType="circle"`.
*/
function Labels(props) {
return (React.createElement(Dots, __assign({}, props, { dotType: 'labels' })));
}
export { Labels };