UNPKG

572 BTypeScriptView Raw
1import { FaSymbol, FlipProp, IconProp, PullProp, RotateProp, SizeProp, Styles, Transform } from '@fortawesome/fontawesome-svg-core';
2/**
3 * Fontawesome props.
4 */
5export 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}