Files
oxygen-ui/src/components/common/Sidebar/Separate.tsx
FatttSnake 7b61a5fdb3 Feat(Menu): Add tool menu via drag and drop
Drag and drop a tool card to add tool menu
2024-04-30 13:42:36 +08:00

11 lines
297 B
TypeScript

import { DetailedHTMLProps, HTMLAttributes } from 'react'
const Separate = ({
className,
...props
}: DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>) => {
return <div className={`separate${className ? ` ${className}` : ''}`} {...props} />
}
export default Separate