UNPKG

@yuntijs/ui

Version:

☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps

11 lines (10 loc) 352 B
/// <reference types="react" /> import { ChatItemProps } from '../type'; export interface ActionsProps { actions: ChatItemProps['actions']; editing?: boolean; placement?: ChatItemProps['placement']; variant?: ChatItemProps['variant']; } declare const Actions: import("react").NamedExoticComponent<ActionsProps>; export default Actions;