/* eslint-disable @angular-eslint/component-selector */ import { Component, Input } from '@angular/core'; @Component({ selector: 'text', standalone: true, template: `

`, }) export class TextComponent { @Input() font = 10; @Input() color = 'black'; }