1import {View} from 'react-native'
2import type React from 'react'
3
4import {atoms as a, type ViewStyleProp} from '#/alf'
5
6export function Fill({
7 children,
8 style,
9}: {children?: React.ReactNode} & ViewStyleProp) {
10 return <View style={[a.absolute, a.inset_0, style]}>{children}</View>
11}