diff --git a/packages/ui/src/ThemeToggle.native.tsx b/packages/ui/src/ThemeToggle.native.tsx new file mode 100644 index 000000000..90212df84 --- /dev/null +++ b/packages/ui/src/ThemeToggle.native.tsx @@ -0,0 +1,6 @@ +import type { ButtonProps } from "tamagui"; + +export const ThemeToggle = (props: ButtonProps) => { + // FIXME: implement a native ThemeToggle without using @tamagui/next-theme + return null; +};