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