import { DataComponent as DC } from '../runtime'; import { Arc as ArcLayout } from '../data/utils/arc'; export type ArcOptions = Omit, 'type'>; /** * For arc diagram(edge with weight) or chord diagram(with weight) */ export const Arc: DC = (options) => { return (data) => { return ArcLayout(options)(data); }; }; Arc.props = {};