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**.

10 lines (9 loc) 420 B
import * as React from "react"; export interface LinkEditorProps extends React.HTMLAttributes<HTMLDivElement> { defaultUrl?: string; defaultText?: string; defaultIsNewTab?: boolean; onSave: (url: string, text?: string, isNewTab?: boolean) => void; } export declare const LinkEditBlock: React.ForwardRefExoticComponent<LinkEditorProps & React.RefAttributes<HTMLDivElement>>; export default LinkEditBlock;