UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

12 lines (8 loc) 284 B
import { DataComponent as DC } from '../runtime'; import { InlineConnector } from '../spec'; export type InlineOptions = Omit<InlineConnector, 'type'>; export const Inline: DC<InlineOptions> = (options) => { const { value } = options; return () => value; }; Inline.props = {};