import { ShapeComponent as SC } from '../../runtime'; import { Color } from './color'; export type LineOptions = Record; /** * | */ export const Line: SC = (options, context) => { return Color( { colorAttribute: 'stroke', symbol: 'line', ...options }, context, ); }; Line.props = { defaultMarker: 'line', ...Color.props, };