phx-react
Version:
PHX REACT
10 lines (9 loc) • 388 B
TypeScript
import React from 'react';
export interface HorizonProps {
justify?: 'start' | 'end' | 'center' | 'around' | 'between' | 'evenly' | 'stretch';
items?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
gapX?: any;
gapY?: string;
children?: any;
}
export declare function PHXHorizontalStack({ justify, items, gapX, gapY, children }: HorizonProps): React.JSX.Element;