diff --git a/frontend/app/src/comps/InfoBox/InfoBox.tsx b/frontend/app/src/comps/InfoBox/InfoBox.tsx new file mode 100644 index 000000000..cdf9703da --- /dev/null +++ b/frontend/app/src/comps/InfoBox/InfoBox.tsx @@ -0,0 +1,30 @@ +import type { ReactNode } from "react"; + +import { css } from "@/styled-system/css"; + +export function InfoBox({ + children, + gap = 16, +}: { + children: ReactNode; + gap?: number; +}) { + return ( +