import "./Stack.scss"; import React from "react"; import clsx from "clsx"; type StackProps = { children: React.ReactNode; gap?: number; align?: "start" | "center" | "end" | "baseline"; justifyContent?: "center" | "space-around" | "space-between"; className?: string | boolean; style?: React.CSSProperties; }; const RowStack = ({ children, gap, align, justifyContent, className, style, }: StackProps) => { return (