lorenzoiovino.com/src/app/section/section.component.ts
2023-12-29 04:34:47 +01:00

17 lines
466 B
TypeScript

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 = '';
@Input() backgroundColor: 'light' | 'dark' = 'light';
@Input() noHeight: boolean = false;
}