The IliadLogo component is used to display the Iliad logo with customizable properties.
type IliadLogoProps = ChildlessComponentBaseProps & {
brandmarkColor?: "gradient" | string;
color?: "light" | "dark" | string;
utm_campaign?: string;
utm_source?: string;
height?: number;
};
brandmarkColor: Sets the color of the brandmark. Accepts "gradient" or a specific color string.color: Sets the overall color theme of the logo. Accepts "light", "dark", or a specific color string.utm_campaign: Optional UTM campaign parameter for tracking purposes. The following values are idiomatic:
client_site_ad: Used when the logo is displayed on a client site.email_signature: Used when the logo is displayed in an email signature.utm_source: Optional UTM source parameter for tracking purposes. Should generally refer to the atlasClientId of the client site where the logo is displayed.height: Optional height for the logo in pixels. Defaults to 100%.<iframe src="/iframe/iliad-logo?utm_campaign=example&utm_source=website"></iframe>