@specialdoom/solid-rev-kit
Version:
RevKit UI implementation for SolidJS
9 lines (8 loc) • 361 B
TypeScript
import { Component, JSXElement } from 'solid-js';
export type ChatBubbleType = 'bright' | 'dark' | 'blueberry' | 'strawberry';
export interface ChatBubbleProps {
type?: ChatBubbleType;
placement?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
children: JSXElement;
}
export declare const ChatBubble: Component<ChatBubbleProps>;