UNPKG

@chatui/core

Version:

The React library for Chatbot UI

10 lines (9 loc) 277 B
import React from 'react'; export interface RibbonProps { className?: string; position?: 'left' | 'right'; size?: 'sm' | 'md'; color?: 'primary' | 'gray'; children?: React.ReactNode; } export declare const Ribbon: (props: RibbonProps) => React.JSX.Element;