mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
17 lines
578 B
TypeScript
17 lines
578 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
/**
|
|
* Drag indicator icon - 6-dot drag handle for sortable items
|
|
*/
|
|
export const DragIndicator = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<circle cx="96" cy="64" r="12" fill="currentColor" />
|
|
<circle cx="160" cy="64" r="12" fill="currentColor" />
|
|
<circle cx="96" cy="128" r="12" fill="currentColor" />
|
|
<circle cx="160" cy="128" r="12" fill="currentColor" />
|
|
<circle cx="96" cy="192" r="12" fill="currentColor" />
|
|
<circle cx="160" cy="192" r="12" fill="currentColor" />
|
|
</Icon>
|
|
)
|