15 lines
316 B
TypeScript
15 lines
316 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
@Component({
|
|
selector: "app-card",
|
|
imports: [],
|
|
template: `
|
|
<div
|
|
class="rounded-xl border border-gray-300 hover:border-gray-400 p-4 hover:shadow-xl transition-all duration-300 ease-in-out"
|
|
>
|
|
<ng-content />
|
|
</div>
|
|
`,
|
|
})
|
|
export class Card {}
|