import * as React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import Stack, { type StackProps } from './Stack'; import type { PropsWithChildren } from 'react'; interface PositionProps { top?: number; right?: number; bottom?: number; left?: number; } const AbsoluteStack = ( props: PropsWithChildren ) => { const positionStyles: StyleProp = { position: 'absolute', top: props.top, bottom: props.bottom, left: props.left, right: props.right, }; return ; }; export default AbsoluteStack;