UNPKG

@7kasper/ngx-fittext

Version:

**@7kasper/ngx-fittext** is an Angular library that allow you fit text in a box or a line.

22 lines (17 loc) 321 B
import { Component, OnInit } from '@angular/core'; @Component({ selector: 'lib-ngx-fittext', standalone: false, template: ` <p> ngx-fittext works! </p> `, styles: [ ] }) export class NgxFittextComponent implements OnInit { constructor() { } ngOnInit(): void { } }