ge-tool/components/DragHandleIcon.tsx

15 lines
458 B
TypeScript
Raw Normal View History

2025-12-10 06:41:43 +00:00
import React from 'react';
const DragHandleIcon: React.FC = () => (
<svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true">
<circle cx="5" cy="4" r="1.5" />
<circle cx="11" cy="4" r="1.5" />
<circle cx="5" cy="8" r="1.5" />
<circle cx="11" cy="8" r="1.5" />
<circle cx="5" cy="12" r="1.5" />
<circle cx="11" cy="12" r="1.5" />
</svg>
);
export default DragHandleIcon;