import * as React from 'react'; import { cn } from '../utils/cn'; export interface StackProps extends React.HTMLAttributes { direction?: 'horizontal' | 'vertical'; spacing?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; align?: 'start' | 'center' | 'end' | 'stretch'; justify?: 'start' | 'center' | 'end' | 'between' | 'around'; } const Stack = React.forwardRef( ( { className, direction = 'vertical', spacing = 'md', align = 'stretch', justify = 'start', ...props }, ref ) => { return (
); } ); Stack.displayName = 'Stack'; export { Stack };