up build conf csc

This commit is contained in:
Tykayn 2025-10-08 16:08:04 +02:00 committed by tykayn
parent 4994c9b12a
commit eaa0752845
19 changed files with 5150 additions and 13670 deletions

View file

@ -1,5 +1,4 @@
import {Component, Input} from '@angular/core';
// import {NgClass} from '@angular/common/directives';
export type ButtonKindType = '' | 'primary' | 'secondary' | 'ghost' | 'link';
export type ButtonSizeType = '' | 'large' | 'medium' | 'small' | 'extrasm';
@ -8,9 +7,7 @@ export type inconPositionKindType = '' | 'left' | 'right';
@Component({
selector: 'sae-m-button',
standalone: true,
imports: [
// NgClass,
],
imports: [],
templateUrl: './main-button.html',
styleUrl: './main-button.scss'
})