import Component from '../Component'; /** * Attributes: * - type: numeric, checkbox */ export default class TableHeadCell extends Component { view(vnode) { this.attrs.addClassNames('mdc-data-table__header-cell', { [`mdc-data-table__header-cell--${this.attrs.get('type')}`]: this.attrs.has('type') }); return {vnode.children}; } }