'use client' import type * as React from 'react' import type { ControlTooltip } from '@admin/components/custom/content-editor/tiptap-ui/control-options' import { getControlTooltipTitle } from '@admin/components/custom/content-editor/tiptap-ui/control-options' import { Button } from '@admin/components/ui/button' import { LinkIcon } from 'lucide-react' export type LinkButtonProps = React.ComponentProps & { tooltip?: ControlTooltip } export function LinkButton({ className, children, tooltip, title, ref, ...props }: LinkButtonProps) { return ( ) }