Axinom Mosaic Libraries
    Preparing search index...

    Variable PageHeaderConst

    PageHeader: React.FC<PageHeaderProps> = ...

    Primary header for stations. Accepts a title, subtitle, actions, and actions groups.

    <PageHeader title="title" subtitle="subtitle" actions={[
    { label: 'Undo', icon: IconName.Undo, kind: 'action', onClick: onActionSelected },
    { label: 'Cancel', icon: IconName.X, kind: 'action' onClick: onActionSelected },
    { kind: 'spacer' },
    { label: 'Actions Group', kind: 'group', actions: [
    { label: 'Action 1', actionType: PageHeaderActionType.Context, icon: IconName.Delete, confirmationMode: 'Advanced', onClick: onActionSelected },
    ]}
    ]} />