import * as React from 'react'; import {Card, Text, Title, withTheme} from 'react-native-paper'; import {View} from "react-native"; import {MaterialCommunityIcons} from "@expo/vector-icons"; function SquareDashboardItem(props) { const { colors } = props.theme; return ( {props.title} {props.subtitle} ); } export default withTheme(SquareDashboardItem);