import React from 'react'; import { HStack } from '@astryxdesign/core/HStack'; import { Heading } from '@astryxdesign/core/Heading'; // Sticky page-header bar. Offset by the real AppShell nav height (not a // hardcoded px guess) and a modest z-index so it never wins the stacking // fight against the nav — see memory astryx-sticky-header-zindex-bug. const TitleCard = ({ title, secondary, sx }) => (
{title} {secondary && secondary}
); export default TitleCard;