All files / src/components/zd-tag tag.ts

100% Statements 3/3
100% Branches 0/0
100% Functions 0/0
100% Lines 3/3

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 2093x           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);
	}
}