icon.component.d.ts 1.0 KB

1234567891011121314151617
  1. import { OnInit } from '@angular/core';
  2. import { ComponentSize } from '../../../model/components/component-size.type';
  3. import { ComponentVariant } from '../../../model/components/component-variant.type';
  4. import * as i0 from "@angular/core";
  5. export declare class IconComponent implements OnInit {
  6. icon: string;
  7. fill: string;
  8. strokeWidth: number;
  9. strokeColor: string;
  10. size: ComponentSize;
  11. variant: ComponentVariant;
  12. ngOnInit(): void;
  13. get iconPath(): string;
  14. private getFormattedColor;
  15. static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
  16. static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "ct-icon", never, { "icon": { "alias": "icon"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; }; "strokeColor": { "alias": "strokeColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, never, true, never>;
  17. }