UNPKG

@ramses-superapp/ramses-ui

Version:
31 lines 836 B
import React from 'react'; import { type ViewProps, type ViewStyle, type StyleProp } from 'react-native'; export type RsRowViewProps = { /** * Custom style for the row container */ style?: StyleProp<ViewStyle>; /** * Horizontal alignment (alignItems) */ align?: ViewStyle['alignItems']; /** * Vertical alignment (justifyContent) */ justify?: ViewStyle['justifyContent']; /** * Row gap (space between children) */ gap?: number; /** * Optional background color (defaults to theme.Background.screen) */ backgroundColor?: string; /** * Children to render inside the row */ children?: React.ReactNode; } & ViewProps; declare const RsRowView: React.FC<RsRowViewProps>; export default RsRowView; //# sourceMappingURL=RsRowView.d.ts.map