Fixes broken poppable ref adds Schema page Fixes schema creation not including game system id
16 lines
454 B
TypeScript
16 lines
454 B
TypeScript
import { FC, PropsWithChildren } from "react";
|
|
import { Poppable } from "@/lib/poppables/components/poppable";
|
|
import { QuestionMarkCircleIcon } from "@heroicons/react/24/solid";
|
|
|
|
export const HelpPopper: FC<PropsWithChildren> = ({ children }) => {
|
|
return (
|
|
<Poppable
|
|
content={children}
|
|
preferredAlign="centered"
|
|
preferredEdge="bottom"
|
|
>
|
|
<QuestionMarkCircleIcon className="w-4 h-4 fill-white" />
|
|
</Poppable>
|
|
);
|
|
};
|