UNPKG

react-help-desk-tailwindcss-ts

Version:

Help desk component for React with Tailwindcss in TypeScript

12 lines (11 loc) 301 B
import { default as React } from 'react'; interface WidgetProps { externalAction?: boolean; children: React.ReactNode; label: string; onSelectTab?: (tab: string) => void; onClick?: () => void; tab?: string; } declare const Widget: React.FC<WidgetProps>; export default Widget;