Added more components
This commit is contained in:
parent
b48ab87cc6
commit
d8057be1b4
28 changed files with 436 additions and 31 deletions
17
src/app/card-cta/card-cta.component.ts
Normal file
17
src/app/card-cta/card-cta.component.ts
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import {Component, Input} from '@angular/core';
|
||||
import {ButtonCtaComponent} from "../button-cta/button-cta.component";
|
||||
|
||||
@Component({
|
||||
selector: 'iov-card',
|
||||
standalone: true,
|
||||
imports: [
|
||||
ButtonCtaComponent
|
||||
],
|
||||
templateUrl: './card-cta.component.html',
|
||||
styleUrl: './card-cta.component.scss'
|
||||
})
|
||||
export class CardCtaComponent {
|
||||
|
||||
@Input() color: 'light' | 'dark' = 'light';
|
||||
@Input() ctaUrl: string = '';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue