@onehat/ui
Version:
Base UI for OneHat apps
30 lines (28 loc) • 635 B
JavaScript
import {
HStack,
} from '@project-components/Gluestack';
import clsx from 'clsx';
import UiGlobals from '../../UiGlobals.js';
export default function Footer(props) {
const styles = UiGlobals.styles;
let className = clsx(
'Footer',
'w-full',
'items-center',
'justify-center',
'self-end',
'p-2',
'border-t-2',
styles.PANEL_FOOTER_CLASSNAME,
);
if (props.className) {
className += ' ' + props.className
}
return <HStack
// safeAreaBottom (see https://www.nativewind.dev/tailwind/new-concepts/safe-area-insets)
className={className}
style={props.style || {}}
>
{props.children}
</HStack>;
}