UNPKG

editcrafter

Version:

To use **EditCrafter** with Tailwind CSS, you need to set up Tailwind CSS in your project. Here's a step-by-step guide to help you integrate Tailwind CSS and customize your `tailwind.config.js` file for use with **EditCrafter**.

18 lines (17 loc) 757 B
import * as React from 'react'; interface ImageActionsProps { shouldMerge?: boolean; isLink?: boolean; onView?: () => void; onDownload?: () => void; onCopy?: () => void; onCopyLink?: () => void; } interface ActionButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> { icon: React.ReactNode; tooltip: string; } export declare const ActionWrapper: React.MemoExoticComponent<React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>>; export declare const ActionButton: React.MemoExoticComponent<React.ForwardRefExoticComponent<ActionButtonProps & React.RefAttributes<HTMLButtonElement>>>; export declare const ImageActions: React.FC<ImageActionsProps>; export {};