import React, {type FC, useMemo} from 'react'; import {type OmitEx, processColorsToNative} from '../utils'; import PolylineNativeComponent, {type PolylineNativeProps} from '../spec/PolylineNativeComponent'; type PolylineProps = OmitEx & { strokeColor?: string; outlineColor?: string; zIndex?: number; } export const Polyline: FC = ({zIndex, ...props}) => { const nativeProps = useMemo(() => processColorsToNative(props, ['strokeColor', 'outlineColor']), [props] ); return ; };