import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core'; @Component({ selector: 'onguard-soft-card', templateUrl: './soft-card.component.html', styleUrls: ['./soft-card.component.scss'], }) export class SoftCardComponent implements OnInit { @Input() size: 'small' | 'large' | 'full' | 'auto' = 'auto'; @Input() padding: 'regular' | 'compact' = 'regular'; constructor() {} ngOnInit(): void {} }