UNPKG

@chatui/core

Version:

The React library for Chatbot UI

10 lines (9 loc) 288 B
import React from 'react'; export interface TipsProps { className?: string; size?: 'md' | 'lg'; primary?: boolean; icon?: string; children?: React.ReactNode; } export declare const Tips: ({ className, size, primary, icon, children, }: TipsProps) => React.JSX.Element;