Documentation Index
Fetch the complete documentation index at: https://anvil.servicetitan.com/llms.txt
Use this file to discover all available pages before exploring further.
AtlasHeader is a shared header component for messages and recommendations.
Documentation Index
Fetch the complete documentation index at: https://anvil.servicetitan.com/llms.txt
Use this file to discover all available pages before exploring further.
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"
/>
);
}
Was this page helpful?