--- destinationDir: app/components/<%= props.subdirectory %> --- import { StyleProp, TextStyle, View, ViewStyle } from "react-native" import { useAppTheme } from "@/theme/context" import type { ThemedStyle } from "@/theme/types" import { Text } from "@/components/Text" export interface <%= props.pascalCaseName %>Props { /** * An optional style override useful for padding & margin. */ style?: StyleProp } /** * Describe your component here */ export const <%= props.pascalCaseName %> = (props: <%= props.pascalCaseName %>Props) => { const { style } = props const $styles = [$container, style] const { themed } = useAppTheme(); return ( Hello ) } const $container: ViewStyle = { justifyContent: "center", } const $text: ThemedStyle = ({ colors, typography }) => ({ fontFamily: typography.primary.normal, fontSize: 14, color: colors.palette.primary500, })