diff --git a/src/components/TimerPickerModal.styles.ts b/src/components/TimerPickerModal.styles.ts index 5703821..9e703c5 100644 --- a/src/components/TimerPickerModal.styles.ts +++ b/src/components/TimerPickerModal.styles.ts @@ -1,16 +1,17 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ -import { StyleSheet } from "react-native"; +import { StyleSheet, Text, View } from "react-native"; import type { CustomTimerPickerStyles } from "./TimerPicker/TimerPicker.styles"; +import { ComponentProps } from "react"; export interface CustomTimerPickerModalStyles extends CustomTimerPickerStyles { - container?: any; - contentContainer?: any; - buttonContainer?: any; - button?: any; - cancelButton?: any; - confirmButton?: any; - modalTitle?: any; + container?: ComponentProps; + contentContainer?: ComponentProps; + buttonContainer?: ComponentProps; + button?: ComponentProps; + cancelButton?: ComponentProps; + confirmButton?: ComponentProps; + modalTitle?: ComponentProps; } const DARK_MODE_BACKGROUND_COLOR = "#232323";