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