1 import type { FC, ReactNode } from 'react';
3 import clsx from '@proton/utils/clsx';
5 export type BottomBarProps = {
11 export const BottomBar: FC<BottomBarProps> = ({ className, hidden = false, text }) => {
13 <div className={clsx('w-full anime-reveal', hidden && 'anime-reveal--hidden', className)}>
14 <div className="flex flex-nowrap gap-2 items-center justify-center text-center text-sm p-2">{text}</div>