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:
572 bytes
|
Line | |
---|
1 | import { FaSymbol, FlipProp, IconProp, PullProp, RotateProp, SizeProp, Styles, Transform } from '@fortawesome/fontawesome-svg-core';
|
---|
2 | /**
|
---|
3 | * Fontawesome props.
|
---|
4 | */
|
---|
5 | export interface FaProps {
|
---|
6 | mask?: IconProp;
|
---|
7 | className?: string;
|
---|
8 | spin?: boolean;
|
---|
9 | pulse?: boolean;
|
---|
10 | border?: boolean;
|
---|
11 | fixedWidth?: boolean;
|
---|
12 | counter?: boolean;
|
---|
13 | inverse?: boolean;
|
---|
14 | flip?: FlipProp;
|
---|
15 | size?: SizeProp;
|
---|
16 | pull?: PullProp;
|
---|
17 | rotate?: RotateProp;
|
---|
18 | transform?: string | Transform;
|
---|
19 | symbol?: FaSymbol;
|
---|
20 | style?: Styles;
|
---|
21 | stackItemSize?: '1x' | '2x';
|
---|
22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.