import React from 'react'; import { Tag } from '@wix/design-system'; import { BlockSmall } from '@wix/wix-ui-icons-common'; export interface DragAndDropDisabledMessageProps { message: string; } export function DragAndDropDisabledMessage( props: DragAndDropDisabledMessageProps, ) { const { message } = props; return ( } removable={false} > {message} ); }