mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
at samuel/exp-cli 11 lines 279 B view raw
1import React from 'react' 2import {View} from 'react-native' 3 4import {atoms as a, 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}