Are you an LLM? You can read better optimized documentation at /guide/type.md for this page in Markdown format
IconType
ts
export type IconImageMode = string | { light: string; dark: string }
export type IconType =
| string
| { icon: string; color?: IconImageMode; alt?: AltType }
| { light: string; dark: string; color?: IconImageMode; alt?: AltType }
ImageType
ts
export type ImageType =
| string
| { src: string; crop?: boolean; alt?: AltType }
| { light: string; dark: string; crop?: boolean; alt?: AltType }