UNPKG

@servicetitan/assist-ui

Version:

ServiceTitan Assist UI Components

12 lines 461 B
import { MouseEvent } from 'react'; export interface HeaderProps { title?: string; onMouseDown?: (e: MouseEvent) => void; isDragging?: boolean; isDraggable?: boolean; onBack?: () => void; onClose?: () => void; className?: string; } export declare const Header: ({ title, onMouseDown, isDraggable, isDragging, onClose, onBack, className, }: HeaderProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=header.d.ts.map