···11+// Copyright (c) 2026 Joseph Hale
22+//
33+// This Source Code Form is subject to the terms of the Mozilla Public
44+// License, v. 2.0. If a copy of the MPL was not distributed with this
55+// file, You can obtain one at https://mozilla.org/MPL/2.0/.
66+77+import React from "react"
88+import { StyleSheet, View } from "react-native";
99+1010+export default function Filled(props: React.ComponentProps<typeof View>) {
1111+ return (
1212+ <View {...props} style={[props.style, styles.container]}>
1313+ {props.children}
1414+ </View>
1515+ )
1616+}
1717+1818+const styles = StyleSheet.create({
1919+ container: {
2020+ width: '100%',
2121+ height: '100%',
2222+ }
2323+});