import { type StyleProp, StyleSheet, View, type ViewStyle } from "react-native"; import { colors } from "./colors"; interface PlaceholderProps { style: StyleProp; } export default function Placeholder({ style }: PlaceholderProps) { return ; } const styles = StyleSheet.create({ placeholder: { backgroundColor: colors.grey, borderRadius: 8, }, });