import React from "react"; import { ShapeConfig } from "konva/types/Shape"; /** * Fill handle component */ const FillHandle: React.FC = ({ x = 0, y = 0, stroke, strokeWidth = 1, size = 8, ...props }) => { if (x === 0 || y === 0) return null; return (
); }; export default FillHandle;