import "./Stack.css"; import React from "react"; type StackProps = { children: React.ReactNode; gap?: number; align?: "start" | "center" | "end" | "baseline"; }; function RowStack({ children, gap, align }: StackProps) { return (