import type { ReactNode } from "react"; import { useMemo } from "react"; import type { ViewStyle } from "react-native"; import { StyleSheet } from "react-native"; import { HStack } from "@/components/HStack"; import type { BaseTheme } from "@/helpers/tokens"; export interface CalendarRowWeekProps { children: ReactNode; spacing?: keyof BaseTheme["spacing"]; theme?: CalendarRowWeekTheme; } interface CalendarRowWeekTheme { container?: ViewStyle; } const styles = StyleSheet.create({ container: { width: "100%", }, }); export const CalendarRowWeek = ({ children, spacing = 0, theme, }: CalendarRowWeekProps) => { const { containerStyles } = useMemo(() => { return { containerStyles: { ...styles.container, ...(theme?.container ?? {}) }, }; }, [theme?.container]); return ( {children} ); };