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