interface IToolbarItem {
    content: VChildren;
    id?: string;
    onClick?: (e: Event) => void;
    title?: string;
}

Properties

content: VChildren
id?: string
onClick?: (e: Event) => void
title?: string