IconProps

Universal Icon component props Accepts any icon type: FontAwesome, Phosphor, Image URL, Text/Emoji, or React element

Definition

export type IconProps =
    | FontAwesomeIconProps
    | PhosphorIconProps
    | ImageIconProps
    | TextIconProps
    | (BaseIconProps & { icon: ReactElement });

Usage

import { undefined } from 'uxp/components';

Last updated