| 3 | import './style.css'; |
| 4 | |
| 5 | export interface IToolbarItem { |
| 6 | id?: string; |
| 7 | title?: string; |
| 8 | content: VChildren; |
| 9 | onClick?: (e: Event) => void; |
| 10 | } |
| 11 | |
| 12 | const clsToolbarItem = 'mm-toolbar-item'; |
| 13 | const clsActive = 'active'; |
nothing calls this directly
no outgoing calls
no test coverage detected