@cavell/kit API
    Preparing search index...

    Interface IconProps

    interface IconProps {
        ariaHidden?: boolean;
        ariaLabel?: string;
        className?: string;
        color?: string;
        family?: FaFamily;
        name: string & {} | IconName;
        size?: number | "sm" | "md" | "lg" | "xl";
        style?: CSSProperties;
    }
    Index
    ariaHidden?: boolean
    ariaLabel?: string
    className?: string
    color?: string

    Override colour. Falls back to currentColor (inherits from parent text).

    family?: FaFamily

    Override FA family. Defaults to light per the design system.

    name: string & {} | IconName

    Known UI-chrome names autocomplete; (string & {}) keeps every other FA glyph name valid.

    size?: number | "sm" | "md" | "lg" | "xl"

    DS size token (sm/md/lg/xl) or explicit pixel value. Defaults to md (14px).

    style?: CSSProperties