UNPKG

ng-ytl-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

22 lines (19 loc) 382 B
import { Component, HostBinding, Input, } from '@angular/core'; @Component({ selector: 'nz-row-indent', template: ``, host: { '[class.ant-table-row-indent]': 'true' } }) export class NzRowIndentComponent { @Input() nzIndentSize; @HostBinding(`style.paddingLeft.px`) get paddingLeft(): number { return this.nzIndentSize * 20; } }