Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
AtlasHeader is a shared header component for messages and recommendations.
import { AtlasHeader } from "@servicetitan/anvil2-ext-atlas"; function DefaultHeader() { return <AtlasHeader />; }
import { AtlasHeader } from "@servicetitan/anvil2-ext-atlas"; import CustomLogo from "./custom-logo.svg"; function CustomHeader() { return ( <AtlasHeader svgIcon={CustomLogo} assistant="Custom Assistant" /> ); }
import { AtlasHeader } from "@servicetitan/anvil2-ext-atlas"; function StyledHeader() { return ( <AtlasHeader assistant="Atlas" className="custom-header-class" /> ); }
<AtlasHeader svgIcon={CustomIcon} assistant="Atlas" className="custom-class" />
AtlasHeader
Was this page helpful?