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