Select Git revision
jest.preset.js
testbtn.component.ts 525 B
import { CommonModule } from '@angular/common';
import { Component } from '@angular/core';
@Component({
selector: 'ozg-testbtn',
standalone: true,
imports: [CommonModule],
template: `<button
type="button"
class="bg-ozgblue-700 hover:bg-ozgblue-600 focus-visible:outline-ozgblue-800 rounded-md px-3 py-2 text-sm font-semibold text-white shadow-sm focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2"
>
<ng-content></ng-content>
</button>`,
})
export class TestbtnComponent {}