| 8 | import { materialStyles } from "./styles"; |
| 9 | |
| 10 | export interface ContainerModel { |
| 11 | icon: string; |
| 12 | title: string; |
| 13 | collapsed: boolean; |
| 14 | hide_close_button: boolean; |
| 15 | } |
| 16 | |
| 17 | export class Container extends LitWidget<ContainerModel, Container> { |
| 18 | static get componentName(): string { |
nothing calls this directly
no outgoing calls
no test coverage detected