Last change
on this file was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago |
adding photos
|
-
Property mode
set to
100644
|
File size:
687 bytes
|
Rev | Line | |
---|
[59329aa] | 1 | import { ElementRef, OnChanges, OnInit, Renderer2, SimpleChanges } from '@angular/core';
|
---|
| 2 | import { SizeProp } from '@fortawesome/fontawesome-svg-core';
|
---|
| 3 | export declare class FaStackComponent implements OnInit, OnChanges {
|
---|
| 4 | private renderer;
|
---|
| 5 | private elementRef;
|
---|
| 6 | /**
|
---|
| 7 | * Size of the stacked icon.
|
---|
| 8 | * Note that stacked icon is by default 2 times bigger, than non-stacked icon.
|
---|
| 9 | * You'll need to set size using custom CSS to align stacked icon with a
|
---|
| 10 | * simple one. E.g. `fa-stack { font-size: 0.5em; }`.
|
---|
| 11 | */
|
---|
| 12 | size?: SizeProp;
|
---|
| 13 | constructor(renderer: Renderer2, elementRef: ElementRef);
|
---|
| 14 | ngOnInit(): void;
|
---|
| 15 | ngOnChanges(changes: SimpleChanges): void;
|
---|
| 16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.