import { Stack } from "react-bootstrap";

export const Header = ({ title, level = 1, children }) => {
  const Tag = "h" + level;
  return (
    <Stack direction="horizontal" gap={1}>
      <Tag className="py-auto">{title}</Tag>
      {children}
    </Stack>
  );
};
