@cute-dw/core
Version:
This TypeScript library is the main part of a more powerfull package designed for the fast WEB software development. The cornerstone of the library is the **DataStore** class, which might be useful when you need a full control of the data, but do not need
15 lines (14 loc) • 543 B
TypeScript
export interface ToolbarItem {
/** Icon legature */
icon?: string;
/** Icon color */
iconColor?: string;
/** Specifies the order of the item in the toolbar */
order?: number;
/** Specifies the amount of empty space before the item in the toolbar */
spaces?: number;
/** Specifies the text that displays in the toolbar item when the display text option is on for toolbars */
text?: string;
/** Specifies whether the toolbar item displays. Default is _false_ */
visible?: boolean;
}