@ozdemircibaris/react-image-editor
Version:
Professional React image editor component with blur, crop, shapes, drawing, and undo/redo functionality. Built with Fabric.js and modern React patterns.
12 lines (11 loc) • 473 B
TypeScript
import * as React from "react";
interface IPopoverProps {
trigger: React.ReactNode;
content: React.ReactNode;
className?: string;
contentClassName?: string;
placement?: "top" | "bottom" | "left" | "right" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
offset?: number;
}
export declare const Popover: (props: IPopoverProps) => import("react/jsx-runtime").JSX.Element;
export {};