Variable IconNodeConst

IconNode: ObjectSchema<
    {
        bgColor: OptionalSchema<StringSchema<undefined>, undefined>;
        darkInvert: OptionalSchema<BooleanSchema<undefined>, undefined>;
        fallback: OptionalSchema<
            LazySchema<GenericSchema<schema.Icon>>,
            undefined,
        >;
        hexColor: OptionalSchema<StringSchema<undefined>, undefined>;
        invert: OptionalSchema<BooleanSchema<undefined>, undefined>;
        nodeName: EnumSchema<typeof NodeNameEnum, undefined>;
        type: EnumSchema<typeof IconEnum, undefined>;
        value: StringSchema<undefined>;
    },
    undefined,
> = ...