this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at e28f6d2f370b4e882ed6f23d08ca0f8d94dbac5f 10 lines 258 B view raw
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}