import { Component } from '@angular/core';
import { EllipsisComponent } from '@yelon/abc/ellipsis';
@Component({
selector: 'components-ellipsis-number',
template: `
<ellipsis length="100">{{ article }}</ellipsis>
<h4 class="mt-lg">Show Tooltip</h4>
<ellipsis length="100" tooltip>{{ article }}</ellipsis>
`,
standalone: true,
imports: [EllipsisComponent]
})
export class ComponentsEllipsisNumberComponent {
article =
'There were injuries alleged in three cases in 2015, and a fourth incident in September, according to the safety recall report. After meeting with US regulators in October, the firm decided to issue a voluntary recall.';
}