import type { StackProps } from '../types'; export function Stack({ className, style, children }: StackProps) { return (
{children}
); }