UNPKG

@carbon/charts-react

Version:
21 lines (20 loc) 1.02 kB
import { default as React, SVGProps } from 'react'; interface MarkerProps extends SVGProps<SVGMarkerElement> { id?: string; d?: string; color?: string; position?: 'start' | 'end'; orient?: string | number; height?: number; width?: number; refX?: number; refY?: number; } declare const Marker: React.FC<MarkerProps>; declare const ArrowLeftMarker: React.FC<Pick<MarkerProps, Exclude<keyof MarkerProps, 'd'>>>; declare const ArrowRightMarker: React.FC<Pick<MarkerProps, Exclude<keyof MarkerProps, 'd'>>>; declare const CircleMarker: React.FC<Pick<MarkerProps, Exclude<keyof MarkerProps, 'd'>>>; declare const DiamondMarker: React.FC<Pick<MarkerProps, Exclude<keyof MarkerProps, 'd'>>>; declare const SquareMarker: React.FC<Pick<MarkerProps, Exclude<keyof MarkerProps, 'd'>>>; declare const TeeMarker: React.FC<Pick<MarkerProps, Exclude<keyof MarkerProps, 'd'>>>; export { Marker, ArrowLeftMarker, ArrowRightMarker, CircleMarker, DiamondMarker, SquareMarker, TeeMarker };