Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 93x 93x 1x | import { ComponentRender } from '../zd-component/component-render';
import { ITag } from './interfaces';
/**
* Base class for Tag component.
*/
export class Tag extends ComponentRender implements ITag {
public tag = '';
/* istanbul ignore next */
/**
* Creates a new Tag.
* @param props Tag properties
*/
constructor(props: ITag) {
super(props);
this.tag = this.getInitValue('tag', props.tag, this.tag);
}
}
|