Feat(Menu): Add drop mask

Add drop mask to menu. Optimize tool description.
This commit is contained in:
2024-04-30 15:22:54 +08:00
parent af8e901098
commit 929b2f3b91
8 changed files with 95 additions and 20 deletions

View File

@@ -0,0 +1,14 @@
import '@/assets/css/components/dnd/drop-mask.scss'
import Icon from '@ant-design/icons'
const DropMask = () => {
return (
<div data-component={'component-drop-mask'}>
<div className={'drop-mask-border'}>
<Icon component={IconOxygenReceive} />
</div>
</div>
)
}
export default DropMask