@smitch/fluid
Version:
A Next/React ui-component libray.
15 lines (14 loc) • 387 B
TypeScript
/// <reference types="react" />
export interface IconProps {
iconName?: string;
iconId?: string;
iconSize?: number;
iconColor?: string;
iconStyle?: 'color' | 'fluency';
flipX?: boolean;
flipY?: boolean;
rotate?: 'none' | '45' | '90' | '135' | '180' | '225' | '270' | '315';
altText?: string;
className?: string;
style?: React.CSSProperties;
}