Added a lot of components
This commit is contained in:
parent
e6f42eaa37
commit
b48ab87cc6
68 changed files with 1030 additions and 8 deletions
15
src/app/section/section.component.ts
Normal file
15
src/app/section/section.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import {Component, Input} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'iov-section',
|
||||
standalone: true,
|
||||
imports: [
|
||||
],
|
||||
templateUrl: './section.component.html',
|
||||
styleUrl: './section.component.scss'
|
||||
})
|
||||
export class SectionComponent {
|
||||
@Input() title: string = '';
|
||||
@Input() titleColor: 'light' | 'dark' = 'light';
|
||||
@Input() backgroundImageUrl: string = '';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue