Polygon.d.ts 330 B

12345678910
  1. import { h } from '@logicflow/core';
  2. export default function Polygon({ fillOpacity, strokeWidth, strokeOpacity, fill, stroke, points, className, }: {
  3. fillOpacity?: number;
  4. strokeWidth?: number;
  5. strokeOpacity?: number;
  6. fill?: string;
  7. stroke?: string;
  8. points: any;
  9. className?: string;
  10. }): h.JSX.Element;