Skip to content

Commit

Permalink
πŸ§‘β€πŸ’» type timer picker modal styles properly
Browse files Browse the repository at this point in the history
  • Loading branch information
troberts-28 committed Jan 3, 2024
1 parent 864c1c2 commit 8f78e97
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/components/TimerPickerModal.styles.ts
Original file line number Diff line number Diff line change
@@ -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<typeof View>;
contentContainer?: ComponentProps<typeof View>;
buttonContainer?: ComponentProps<typeof View>;
button?: ComponentProps<typeof Text>;
cancelButton?: ComponentProps<typeof Text>;
confirmButton?: ComponentProps<typeof Text>;
modalTitle?: ComponentProps<typeof Text>;
}

const DARK_MODE_BACKGROUND_COLOR = "#232323";
Expand Down

0 comments on commit 8f78e97

Please sign in to comment.