diff --git a/src-web/components/DropMarker.tsx b/src-web/components/DropMarker.tsx index 9ca4e557..7876e506 100644 --- a/src-web/components/DropMarker.tsx +++ b/src-web/components/DropMarker.tsx @@ -1,10 +1,20 @@ +import classnames from 'classnames'; import React, { memo } from 'react'; +interface Props { + className?: string; +} + export const DropMarker = memo( - function DropMarker() { + function DropMarker({ className }: Props) { return ( -