import classNames from 'classnames'; import type { CSSProperties } from 'react'; import { memo } from 'react'; interface Props { className?: string; style?: CSSProperties; orientation?: 'horizontal' | 'vertical'; } export const DropMarker = memo( function DropMarker({ className, style, orientation = 'horizontal' }: Props) { return (
); }, () => true, );