import { getVariable, useTheme } from '@tamagui/core' import React from 'react' export function themed(Component: A) { const wrapped = (props: any) => { const theme = useTheme() return ( ) } return wrapped as unknown as A }