Added a lot of components
This commit is contained in:
parent
e6f42eaa37
commit
b48ab87cc6
68 changed files with 1030 additions and 8 deletions
17
src/app/card/card.component.ts
Normal file
17
src/app/card/card.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.component.html',
|
||||
styleUrl: './card.component.scss'
|
||||
})
|
||||
export class CardComponent {
|
||||
|
||||
@Input() color: 'light' | 'dark' = 'light';
|
||||
@Input() ctaUrl: string = '';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue