mirror of
https://gitea.tendokyu.moe/ppc/amnet.git
synced 2026-09-26 16:18:17 +03:00
13 lines
430 B
TypeScript
13 lines
430 B
TypeScript
import {View} from "react-native";
|
|
import {Text} from "react-native-paper";
|
|
|
|
export function EmptyStatePlaceholder(props: { message: string, icon: React.ReactNode }) {
|
|
return (
|
|
<View style={{display: "flex", gap: 5, alignItems: "center"}}>
|
|
{props.icon}
|
|
<Text variant="bodyMedium" style={{color: "gray", fontSize: 14}}>
|
|
{props.message}
|
|
</Text>
|
|
</View>
|
|
)
|
|
} |