(...trs)
| 5 | import { cssPrefix } from '../config'; |
| 6 | |
| 7 | function buildTable(...trs) { |
| 8 | return h('table', '').child( |
| 9 | h('tbody', '').children(...trs), |
| 10 | ); |
| 11 | } |
| 12 | |
| 13 | function buildTd(iconName) { |
| 14 | return h('td', '').child( |
no test coverage detected