photoeditorsdk
Version:
The most comprehensive photo editor SDK for HTML5
14 lines (13 loc) • 399 B
TypeScript
import type { Tool } from '../../common/tool';
export interface CustomToolbarItemProps {
tool: Tool;
label: string;
icon: React.ReactNode;
isActive: boolean;
isReverse: boolean;
isDisabled: boolean;
onClick: (e?: any) => void;
style?: React.CSSProperties;
className?: string;
}
export type CustomAdvancedToolbarItem = React.ComponentType<CustomToolbarItemProps>;