import { ReactNode, CSSProperties } from "react"; import { Div } from "./Div"; export type VStackProps = { children: ReactNode; spacing?: CSSProperties['gap']; align?: CSSProperties['alignItems']; style?: Omit; }; export const VStack = ({ children, spacing = '8px', align = 'flex-start', style }: VStackProps) => { return (
{children}
); };