@sms-frontend/components
Version:
SMS Design React UI Library.
11 lines (10 loc) • 375 B
TypeScript
import { CSSProperties, PropsWithChildren } from 'react';
import { TriggerProps } from '../Trigger';
interface TriggerForToolbarProps {
style?: CSSProperties;
className?: string | string[];
prefixCls: string;
popup: TriggerProps['popup'];
}
export declare const TriggerForToolbar: (props: PropsWithChildren<TriggerForToolbarProps>) => JSX.Element;
export {};