diff --git a/apps/mobile/app.config.ts b/apps/mobile/app.config.ts index d8d9e7ecbe4d62d26cc8c9640921382c74af5b7e..90381ac25e703d5d905d9571517776cce5b16332 100644 --- a/apps/mobile/app.config.ts +++ b/apps/mobile/app.config.ts @@ -6,9 +6,9 @@ require('ts-node/register') // see https://docs.expo.dev/build-reference/app-versions/ // TODO somehow automatically increment version numbers on every release const versions = { - version: '1.52.0', // user-facing value visible in stores - iosBuildNumber: '1.52.0', // developer-facing build version, see https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleversion - androidVersionCode: 146, // developer-facing build version, see https://developer.android.com/studio/publish/versioning.html#versioningsettings + version: '1.52.2', // user-facing value visible in stores + iosBuildNumber: '1.52.2', // developer-facing build version, see https://developer.apple.com/documentation/bundleresources/information_property_list/cfbundleversion + androidVersionCode: 148, // developer-facing build version, see https://developer.android.com/studio/publish/versioning.html#versioningsettings } // - Environment variables are available in the mobile app source code via the expo-constants package. diff --git a/apps/mobile/navigation/EventsAppNavigator.tsx b/apps/mobile/navigation/EventsAppNavigator.tsx new file mode 100644 index 0000000000000000000000000000000000000000..96365cbbe08dbcd47020b1027c2846a7e143f847 --- /dev/null +++ b/apps/mobile/navigation/EventsAppNavigator.tsx @@ -0,0 +1,47 @@ +import React from 'react' + +import { createNativeStackNavigator, type NativeStackNavigationOptions } from '@react-navigation/native-stack' +import { RouteName } from '@holi/mobile/navigation/routeName' +import { EventList } from '@holi-apps/events/screens/EventList' +import { type EventDetailsParams, EventDetailsScreen } from '@holi-apps/events/screens/EventDetails' +import { mono } from 'holi-bricks/tokens' +import HeaderBackButton from '@holi/core/navigation/components/HeaderBackButton' +import { ArrowDownS } from '@holi/icons/src/generated' + +export type EventsAppScreens = { + [RouteName.EventDetailsScreen]: EventDetailsParams + [RouteName.EventList]: undefined +} + +const EventsAppStack = createNativeStackNavigator<EventsAppScreens>() + +const EventsAppNavigator = () => { + const eventsHomeOptions: NativeStackNavigationOptions = { + headerBackVisible: false, + headerTitleAlign: 'center', + headerLeft: ({ tintColor }) => <HeaderBackButton tintColor={tintColor} />, + } + + return ( + <EventsAppStack.Navigator + initialRouteName={RouteName.EventList} + screenOptions={{ + headerShown: true, + headerTintColor: mono['800'], + headerShadowVisible: false, + headerLeft: () => <HeaderBackButton icon={ArrowDownS} />, + headerTitle: '', // prevent showing the technical name of the screen on initial render + }} + > + <EventsAppStack.Screen name={RouteName.EventList} component={EventList} /> + + <EventsAppStack.Screen + name={RouteName.EventDetailsScreen} + options={eventsHomeOptions} + component={EventDetailsScreen} + /> + </EventsAppStack.Navigator> + ) +} + +export default EventsAppNavigator diff --git a/apps/mobile/navigation/RootNavigator.tsx b/apps/mobile/navigation/RootNavigator.tsx index 71e2d59f04ad33286293c7bfba0f7b4debe66fb6..716dec951923d21384dacca205718a35656daeeb 100644 --- a/apps/mobile/navigation/RootNavigator.tsx +++ b/apps/mobile/navigation/RootNavigator.tsx @@ -33,11 +33,13 @@ import UserProfile, { type UserProfileParams } from '@holi/core/screens/userprof import NotFound from '@holi/core/screens/404/NotFound' import { AuthSelection } from '@holi/core/auth/screens/AuthSelection' import Unsubscribe from '@holi/core/screens/mail/Unsubscribe' +import EventsAppNavigator from '@holi/mobile/navigation/EventsAppNavigator' export type RootStackScreens = { [RouteName.BottomTabs]: undefined [RouteName.Notifications]: undefined [RouteName.Spaces]: undefined + [RouteName.Events]: undefined [RouteName.Insights]: undefined [RouteName.ActHome]: undefined [RouteName.ChatStack]: undefined @@ -72,6 +74,8 @@ export type RootStackScreens = { [RouteName.Search]: SearchParams [RouteName.UserProfile]: UserProfileParams + + [RouteName.EventList]: undefined } const RootStack = createNativeStackNavigator<RootStackScreens>() @@ -180,6 +184,14 @@ const RootNavigator = () => { headerShown: false, }} /> + <RootStack.Screen + name={RouteName.EventList} + component={EventsAppNavigator} + options={{ + animation: 'slide_from_bottom', + headerShown: false, + }} + /> {/* Onboarding */} <RootStack.Screen name={RouteName.Onboarding} @@ -270,6 +282,15 @@ const RootNavigator = () => { /> <RootStack.Screen name={RouteName.Unsubscribe} component={Unsubscribe} options={{ headerShown: true }} /> + + <RootStack.Screen + name={RouteName.Events} + component={EventsAppNavigator} + options={{ + animation: 'slide_from_bottom', + headerShown: false, + }} + /> </RootStack.Navigator> ) } diff --git a/apps/mobile/navigation/linkingConfig.ts b/apps/mobile/navigation/linkingConfig.ts index 1ea20a8e35b8b2c5f6e6cc4195bc3b6fb62daf44..870d6e4f8d6a311e2199e4b2d3c10ca758c55d7e 100644 --- a/apps/mobile/navigation/linkingConfig.ts +++ b/apps/mobile/navigation/linkingConfig.ts @@ -54,6 +54,13 @@ const linkingConfig: LinkingOptions<RootStackScreens>['config'] = { }, }, + [RouteName.Events]: { + screens: { + [RouteName.EventDetailsScreen]: 'events/:eventId', + [RouteName.EventList]: 'events', + }, + }, + [RouteName.Insights]: { screens: { [RouteName.InsightsPage]: 'insights', @@ -70,7 +77,6 @@ const linkingConfig: LinkingOptions<RootStackScreens>['config'] = { [RouteName.DiscussionCommentPage]: 'insights/:insightId/discussions/:discussionId/comment', }, }, - [RouteName.Spaces]: { screens: { [RouteName.SpaceDetails]: 'spaces/:spaceIdOrName', diff --git a/apps/mobile/navigation/routeName.ts b/apps/mobile/navigation/routeName.ts index 1e4b93775b882b43c9babc22b5f5aef9e0c99cbd..28fe8b16bdb3311636a3863745db0a9acb0c82bc 100644 --- a/apps/mobile/navigation/routeName.ts +++ b/apps/mobile/navigation/routeName.ts @@ -107,6 +107,7 @@ export enum RouteName { Home = 'Home', Insights = 'Insights', Spaces = 'Spaces', + Events = 'Events', SpacesStack = 'SpacesStack', Chat = 'Chat', Auth = 'Auth', @@ -114,6 +115,7 @@ export enum RouteName { ChallengesApp = 'ChallengesApp', DonationsApp = 'DonationsApp', GoodNewsApp = 'GoodNewsApp', + EventList = 'EventList', VolunteeringApp = 'VolunteeringApp', NotFound = 'NotFound', AuthSelection = 'AuthSelection', @@ -138,4 +140,7 @@ export enum RouteName { // Report CreateReport = 'CreateReport', + + //Events + EventDetailsScreen = 'EventDetailsScreen', } diff --git a/apps/mobile/package.json b/apps/mobile/package.json index 9ed7bff44b68c1214eaa53f41e82ebb2b910ffcf..92bd0dfddb5c8e168cae84dcda0fa02899402e70 100644 --- a/apps/mobile/package.json +++ b/apps/mobile/package.json @@ -7,6 +7,7 @@ "@formatjs/intl-relativetimeformat": "^11.2.14", "@holi-apps/challenges": "*", "@holi-apps/donations": "*", + "@holi-apps/events": "*", "@holi-apps/goodnews": "*", "@holi-apps/volunteering": "*", "@holi/api": "*", diff --git a/apps/web/next.config.js b/apps/web/next.config.js index 4a35dd3ca0fa60abf96b0a317a2c531293802951..23edcc24f70e937859476e7d0f4e33f478ef0d33 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -142,6 +142,7 @@ const nextConfig = { '@holi-apps/donations', '@holi-apps/goodnews', '@holi-apps/volunteering', + '@holi-apps/events', '@holi/ui', '@holi/icons', '@holi/core', diff --git a/apps/web/pages/events/[eventId]/index.tsx b/apps/web/pages/events/[eventId]/index.tsx new file mode 100644 index 0000000000000000000000000000000000000000..db38a71a5747d663acba510dc11c12501fbb355d --- /dev/null +++ b/apps/web/pages/events/[eventId]/index.tsx @@ -0,0 +1,25 @@ +import { EventDetailsScreen } from '@holi-apps/events/screens/EventDetails' +import { NextPage, NextPageContext } from 'next' +import React from 'react' +import { createServerSideProps } from '@holi/web/helpers/createServerSideProps' +import { GetEventByIdDocument } from '@holi/api/graphql/graphql-codegen' + +const EventDetailsPage: NextPage = () => <EventDetailsScreen /> + +export const getServerSideProps = async (context: NextPageContext) => { + const { eventId } = context.query + + const queries = [ + { + query: GetEventByIdDocument, + variables: { + id: eventId, + }, + skip: !eventId, + }, + ] + + return createServerSideProps(context, queries) +} + +export default EventDetailsPage diff --git a/apps/web/pages/events/index.tsx b/apps/web/pages/events/index.tsx new file mode 100644 index 0000000000000000000000000000000000000000..483e3dcca22de51afe8de0d4e85ace1cde7f30c4 --- /dev/null +++ b/apps/web/pages/events/index.tsx @@ -0,0 +1,11 @@ +import { EventList } from '@holi-apps/events/screens/EventList' +import React, { type ReactElement } from 'react' + +import { AppLayout } from '@holi/web/layout/NavigationLayoutVolunteeringApp' +import type { NextPageWithLayout } from '@holi/web/pages/_app' + +const EventsPage: NextPageWithLayout = () => <EventList /> + +EventsPage.getLayout = (page: ReactElement) => <AppLayout>{page}</AppLayout> + +export default EventsPage diff --git a/core/components/InfoModal.tsx b/core/components/InfoModal.tsx index 6d8f7fe1308dd3630a9fbec0e3894f03536e56fb..1e02187f0031b01e030860822050e06716269677 100644 --- a/core/components/InfoModal.tsx +++ b/core/components/InfoModal.tsx @@ -57,16 +57,14 @@ const InfoModal: React.FC<InfoModalProps> = ({ <View style={isMultipleItems ? styles.card : null} key={itemKey}> <HoliBox padding={isMultipleItems ? 24 : 0} layout={{ alignItems: 'flex-start' }}> {!!item.wordmark && !!item.wordmark?.src && ( - <HoliBox padding={[18, 0]}> - <HoliLocalImage - imageSource={item.wordmark.src} - isSvg={!!item.wordmark.isSvg} - label={''} - width={item.wordmark.width || 100} - height={item.wordmark.height || 100} - resizeMode={'contain'} - /> - </HoliBox> + <HoliLocalImage + imageSource={item.wordmark.src} + isSvg={!!item.wordmark.isSvg} + label={''} + width={item.wordmark.width || 100} + height={item.wordmark.height || 100} + resizeMode={'contain'} + /> )} <HoliBox padding={[32, 0, 0, 0]}> <HoliHeading level="2" size="l"> diff --git a/core/components/RecoSlider.tsx b/core/components/RecoSlider.tsx index 595c8657fd42f22b70698e5b2ed0b31f8c17e8b7..528503eeeba9d4bd58254541bfe9fae27cfac559 100644 --- a/core/components/RecoSlider.tsx +++ b/core/components/RecoSlider.tsx @@ -14,6 +14,9 @@ import HoliMoreCard from '@holi/ui/components/atoms/HoliMoreCard' import HoliButton from '@holi/ui/components/molecules/HoliButton' import { dimensions } from '@holi/ui/styles/globalVars' import { type HoliTheme, useTheme } from '@holi/ui/styles/theme' +import { TextLinkTracked } from '@holi/core/components/Trackable' +import type { TrackingEvent } from '@holi/core/tracking' +import useTracking from '@holi/core/tracking/hooks/useTracking' type RecoSliderProps = { name: string @@ -31,6 +34,8 @@ type RecoSliderProps = { testID?: string cardWidth: number viewTrackingParams?: TrackableFlatListParams + size?: 'sm' | 'md' + seeMoreTrackingEvent?: TrackingEvent } const RecoSlider: React.FC<RecoSliderProps> = ({ @@ -47,10 +52,13 @@ const RecoSlider: React.FC<RecoSliderProps> = ({ testID, cardWidth, viewTrackingParams, + size = 'md', + seeMoreTrackingEvent, }) => { const { t } = useTranslation() const { navigate } = useRouting() const { theme } = useTheme() + const { track } = useTracking() const { colors } = theme const styles = useMemo(() => getStyles(theme, cardWidth), [theme, cardWidth]) @@ -61,6 +69,7 @@ const RecoSlider: React.FC<RecoSliderProps> = ({ } const handleSeeMore = (event: React.SyntheticEvent | GestureResponderEvent) => { + if (seeMoreTrackingEvent) track(seeMoreTrackingEvent) if (onPressSeeMore) { onPressSeeMore(event) } else if (seeAllPath) { @@ -86,6 +95,7 @@ const RecoSlider: React.FC<RecoSliderProps> = ({ label={labelSeeMore} onPress={handleSeeMore} testID={`${name}-reco-slider-load-more-button`} + size={size} > {labelSeeMore} </HoliMoreCard> @@ -127,11 +137,16 @@ const RecoSlider: React.FC<RecoSliderProps> = ({ </Text> </View> </View> - {seeAllPath && ( - <TextLink size="sm" role="none"> - {t('global.seeAll')} - </TextLink> - )} + {seeAllPath && + (seeMoreTrackingEvent ? ( + <TextLinkTracked size="sm" role="none" trackingEvent={seeMoreTrackingEvent}> + {t('global.seeAll')} + </TextLinkTracked> + ) : ( + <TextLink size="sm" role="none"> + {t('global.seeAll')} + </TextLink> + ))} </View> </HoliButton> diff --git a/core/components/Trackable.tsx b/core/components/Trackable.tsx index 90c1a0b5ae59040246808844875c7f4c3742a7a9..f161ed9149ae5555a1bc2c1430969b986a993aff 100644 --- a/core/components/Trackable.tsx +++ b/core/components/Trackable.tsx @@ -1,4 +1,4 @@ -import { Button, type ButtonProps } from 'holi-bricks/components/button' +import { Button, ButtonIcon, type ButtonIconProps, type ButtonProps } from 'holi-bricks/components/button' import { TextLink, type TextLinkProps } from 'holi-bricks/components/text' import type React from 'react' import type { GestureResponderEvent } from 'react-native' @@ -44,3 +44,4 @@ export const HoliLinkTracked = Trackable<React.PropsWithChildren<HoliLinkProps>> export const HoliTextLinkTracked = Trackable<React.PropsWithChildren<HoliTextLinkProps>>(HoliTextLink) export const TextLinkTracked = Trackable<React.PropsWithChildren<TextLinkProps>>(TextLink) export const ButtonTracked = Trackable<ButtonProps>(Button) +export const ButtonIconTracked = Trackable<ButtonIconProps>(ButtonIcon) diff --git a/core/errors/hooks/__tests__/useFieldErrors.test.ts b/core/errors/hooks/__tests__/useFieldErrors.test.ts index 072ce690687e39c923903fb55df721e8a7566b29..93f72eee250fd71316ecf58af762fbff17b6e0b3 100644 --- a/core/errors/hooks/__tests__/useFieldErrors.test.ts +++ b/core/errors/hooks/__tests__/useFieldErrors.test.ts @@ -1,7 +1,7 @@ import { renderHook } from '@testing-library/react-hooks' -import { GraphQLError } from 'graphql' +import type { GraphQLError } from 'graphql' -import { FieldErrors } from '@holi/core/errors/helpers' +import type { FieldErrors } from '@holi/core/errors/helpers' import { useFieldErrors } from '@holi/core/errors/hooks/useFieldErrors' import { HoliToastType } from '@holi/ui/components/molecules/HoliToastProvider' diff --git a/core/featureFlags/constants.ts b/core/featureFlags/constants.ts index d11298f7846ba2aebc399658a9a83566959d20df..8aa3ee208c5f78b5ab8928be7aeb4cb5835d6f96 100644 --- a/core/featureFlags/constants.ts +++ b/core/featureFlags/constants.ts @@ -2,6 +2,7 @@ export enum FeatureFlagKey { DONATIONS = 'DONATIONS', // multivariate ('on', 'off', 'maintenance') -> FeatureFlagWithMaintenance GOODNEWS = 'GOODNEWS', // multivariate ('on', 'off', 'maintenance') -> FeatureFlagWithMaintenance VOLUNTEERING = 'VOLUNTEERING', // multivariate ('on', 'off', 'maintenance') -> FeatureFlagWithMaintenance + EVENTS = 'EVENTS', // multivariate ('on', 'off', 'maintenance') -> FeatureFlagWithMaintenance CHAT = 'CHAT', // multivariate ('on', 'off', 'maintenance') -> FeatureFlagWithMaintenance NOTIFICATIONS = 'NOTIFICATIONS', // multivariate ('on', 'off', 'maintenance') -> FeatureFlagWithMaintenance STORAGE = 'STORAGE', // multivariate ('on', 'off', 'maintenance') -> FeatureFlagWithMaintenance @@ -12,4 +13,5 @@ export enum FeatureFlagKey { POST_TRANSLATION = 'POST_TRANSLATION', // boolean NEW_HOME_FEED = 'NEW_HOME_FEED', // multivariate ('control', 'test') -> FeatureFlagAB TASK_CONTACT_CTA = 'TASK_CONTACT_CTA', // boolean + CHALLENGES_CAROUSEL = 'CHALLENGES_CAROUSEL', // boolean } diff --git a/core/featureFlags/featureFlagBootstrapValues.ts b/core/featureFlags/featureFlagBootstrapValues.ts index 55dc5ed40f2448c12df8a3757d562014e1464a7a..f3721c229c8f4f37f2198db9a99ccb6879600c50 100644 --- a/core/featureFlags/featureFlagBootstrapValues.ts +++ b/core/featureFlags/featureFlagBootstrapValues.ts @@ -28,6 +28,8 @@ export const featureFlagBootstrapValues: FeatureFlagsAndPayloads = { [FeatureFlagKey.NEW_HOME_FEED]: 'control', [FeatureFlagKey.POST_TRANSLATION]: false, [FeatureFlagKey.TASK_CONTACT_CTA]: false, + [FeatureFlagKey.EVENTS]: false, + [FeatureFlagKey.CHALLENGES_CAROUSEL]: false, }, featureFlagPayloads: { [FeatureFlagKey.DONATIONS]: null, @@ -43,6 +45,8 @@ export const featureFlagBootstrapValues: FeatureFlagsAndPayloads = { [FeatureFlagKey.NEW_HOME_FEED]: null, [FeatureFlagKey.POST_TRANSLATION]: null, [FeatureFlagKey.TASK_CONTACT_CTA]: null, + [FeatureFlagKey.EVENTS]: null, + [FeatureFlagKey.CHALLENGES_CAROUSEL]: null, }, } diff --git a/core/i18n/locales/de.json b/core/i18n/locales/de.json index 21391d35941fcfe82986e52c97620f7cc4540ce0..424d5e8cf1b0076d6f74b90f8a592aa8044aa44b 100644 --- a/core/i18n/locales/de.json +++ b/core/i18n/locales/de.json @@ -1,4 +1,21 @@ { + "eventDetails.cta": "Mehr dazu auf der Partner-Website", + "eventDetails.partnersTitle": "Event über", + "act.events.createdBy": "von", + "act.events.filter.heading": "Events filtern", + "act.events.filter.submitButton": "Events anzeigen", + "act.events.fromTo": "bis", + "act.events.listing.partnerModal.headline": "Our volunteering partners", + "act.events.listing.partnerModal.Gemeinschaftswerk Nachhaltigkeit.buttonText": "Besuche voltastics.com", + "act.events.listing.partnerModal.Gemeinschaftswerk Nachhaltigkeit.headline": "Anerkennung für freiwilliges Engagement", + "act.events.listing.partnerModal.Gemeinschaftswerk Nachhaltigkeit.text": "Wir begeistern Unternehmen und Freiwillige sich digital zu vernetzen, um freiwilliges Engagement sichtbarer zu machen und gegenseitige Unterstützung besser zu organisieren.", + "act.events.opportunities": "Events", + "act.events.partnerInfoRowText": "über Gemeinschaftswerk Nachhaltigkeit", + "act.events.showAll": "Weitere Events", + "act.events.subline": "Erlebene Events mit Bedeutung", + "act.events.thumbnail.label": "Event Cover Bild", + "act.events.title": "Events", + "act.events.detail.organisationNameFallback": "Externe Initiative", "act.title": "Handeln", "allTools.drawer.comingSoon.label": "Bald", "allTools.drawer.headline": "Alle Tools", @@ -224,7 +241,7 @@ "global.dismiss": "Abbrechen", "global.done": "Fertig", "global.edit": "Bearbeiten", - "global.gotIt": "Okay", + "global.gotIt": "Zurück", "global.hours": "Stunde", "global.https.placeholder": "https://...", "global.imagepicker.failure": "Ups! Da ist ein technisches Problem beim Laden des Bildes aufgetreten! Solltest du ein sehr großes Bild auf einem älteren Gerät gewählt haben, versuche es bitte mit einem kleineren Bild.", @@ -1637,5 +1654,6 @@ "volunteering.navigation.home": "Home", "volunteering.navigation.search": "Search", "webview.error": "Laden der Seite ist fehlgeschlagen!", - "wizard.stepsCount": "Schritt {{current}} von {{total}}" + "wizard.stepsCount": "Schritt {{current}} von {{total}}", + "core.act.events.filter.remote": "Zeige nur Vor-Ort-Events" } \ No newline at end of file diff --git a/core/i18n/locales/en.json b/core/i18n/locales/en.json index 88a6397b751c756a7afffd6e44926fbaec0cb0f2..f715cab1014f70bd592946aa0566ed53684e646c 100644 --- a/core/i18n/locales/en.json +++ b/core/i18n/locales/en.json @@ -1,4 +1,21 @@ { + "eventDetails.cta": "Find more on the partner page", + "eventDetails.partnersTitle": "Opportunity provided via", + "act.events.createdBy": "by", + "act.events.filter.heading": "Filter events", + "act.events.filter.submitButton": "Show events", + "act.events.fromTo": "to", + "act.events.listing.partnerModal.headline": "Our volunteering partners", + "act.events.listing.partnerModal.Gemeinschaftswerk Nachhaltigkeit.buttonText": "Visit gemeinschaftswerk-nachhaltigkeit.de", + "act.events.listing.partnerModal.Gemeinschaftswerk Nachhaltigkeit.headline": "Create the future together", + "act.events.listing.partnerModal.Gemeinschaftswerk Nachhaltigkeit.text": "We connect committed people and organizations who promote sustainable projects and eco-friendly lifestyles. Through meaningful events, the initiative supports the transition to a resource-conserving future.", + "act.events.opportunities": "events", + "act.events.partnerInfoRowText": "provided by Gemeinschaftswerk Nachhaltigkeit", + "act.events.showAll": "See more", + "act.events.subline": "Join impactful events", + "act.events.thumbnail.label": "event cover image", + "act.events.title": "Events", + "act.events.detail.organisationNameFallback": "External Initiative", "act.title": "Act", "allTools.drawer.comingSoon.label": "Soon", "allTools.drawer.headline": "All tools", @@ -224,7 +241,7 @@ "global.dismiss": "Cancel", "global.done": "Done", "global.edit": "Edit", - "global.gotIt": "Got it", + "global.gotIt": "Go back", "global.hours": "Hours", "global.https.placeholder": "https://...", "global.imagepicker.failure": "Oops! A technical error occurred while loading the selected image! If you used a very big image on an older device, please try again with a smaller image.", @@ -255,7 +272,7 @@ "global.report.alreadyReportedMessage": "You have already reported this content. We are already on it.", "global.report.ownContentMessage": "You cannot report your own content.", "global.report.successMessage": "Thanks for your report. We'll look into it asap", - "global.reset": "Clear", + "global.reset": "Reset", "global.save": "Save", "global.seeAll": "See all", "global.seeMore": "See more", @@ -1643,5 +1660,6 @@ "volunteering.navigation.home": "Home", "volunteering.navigation.search": "Search", "webview.error": "Loading the page failed!", - "wizard.stepsCount": "Step {{current}} of {{total}}" + "wizard.stepsCount": "Step {{current}} of {{total}}", + "core.act.events.filter.remote": "Only show local events" } \ No newline at end of file diff --git a/core/layouts/DetailsScreen/index.tsx b/core/layout/DetailsScreen/index.tsx similarity index 56% rename from core/layouts/DetailsScreen/index.tsx rename to core/layout/DetailsScreen/index.tsx index 95b11566c60cce8f3534385fad43fb78b0f5fa56..b003123c715051707e8a00b9c1cfdd3b67bf9501 100644 --- a/core/layouts/DetailsScreen/index.tsx +++ b/core/layout/DetailsScreen/index.tsx @@ -1,4 +1,5 @@ import React, { type ReactNode } from 'react' +import { View } from 'react-native' import type { HoliIconType } from '@holi/icons/src/HoliIconType' import type { ImageSource as LegacyImageSource } from '@holi/ui/components/atoms/HoliImage/types' import { ChipLabel } from 'holi-bricks/components/chips' @@ -11,15 +12,23 @@ import HoliCalendarIcon from '@holi/ui/components/molecules/HoliCalendarIcon' import HoliHead from '@holi/core/components/HoliHead' import { CoverImage } from '@holi/core/components/CoverImage' import HoliRichTextOutput from '@holi/ui/components/organisms/HoliRichTextOutput' -import { DetailsScreenSkeleton } from '@holi/core/layouts/DetailsScreen/skeleton' -import { Global, Lock } from '@holi/icons/src/generated' + +import { ExternalLink, Global, Lock } from '@holi/icons/src/generated' import { AuthorBanner, type AuthorBannerProps } from 'holi-bricks/patterns/author-banner' +import { Spacing } from 'holi-bricks/tokens' +import { DetailsScreenSkeleton } from '@holi/core/layout/DetailsScreen/skeleton' +import { HtmlRenderer } from 'holi-bricks/components/html-renderer' +import { TextLinkTracked } from '@holi/core/components/Trackable' +import { TrackingEvent } from '@holi/core/tracking' +import type { ImageSource } from 'holi-bricks/components/image' +import { Avatar } from 'holi-bricks/components/avatar' export type DetailsScreenInfoList = { title: string icon: HoliIconType subtitle?: string onPress?(): void + showExternalIcon?: boolean } export type DetailsScreenChips = { @@ -27,11 +36,17 @@ export type DetailsScreenChips = { color: ChipColor } +export type Partner = { + title: string + image?: ImageSource + onPress?(): void +} + export type DetailsScreenAuthor = AuthorBannerProps export type DetailsScreenData = { - date?: Date - description?: string | ReactNode + date?: Date | string + description?: string author?: DetailsScreenAuthor chips?: DetailsScreenChips[] seoDescription?: string @@ -40,15 +55,39 @@ export type DetailsScreenData = { title: string infoList?: DetailsScreenInfoList[] coverImage?: LegacyImageSource + partners?: { + title: string + details: Partner[] + } _footer?: ReactNode | ReactNode[] // DO NOT USE, is used temporary while we develop a proper solution to manage carousels at the bottom not for main use } type DetailsScreenProps = DetailsScreenData +const isHtml = (str: string) => /<\/?[a-z][\s\S]*>/i.test(str) + +const DescriptionRenderer = ({ description }: { description?: string }) => { + if (!description) return null + + if (React.isValidElement(description)) { + return description + } + + if (typeof description === 'string') { + return isHtml(description) ? ( + <HtmlRenderer content={description} /> + ) : ( + <HoliRichTextOutput text={description as string} /> + ) + } + + return null +} + export const DetailsScreen = ({ description, coverImage, - chips, + chips = [], visibility, title, date, @@ -56,6 +95,7 @@ export const DetailsScreen = ({ loading, author, seoDescription, + partners, _footer = null, }: DetailsScreenProps) => { const { t } = useTranslation() @@ -66,7 +106,6 @@ export const DetailsScreen = ({ } const _seoDescription = seoDescription || (typeof description === 'string' ? description : '') - return ( <> <HoliHead @@ -77,7 +116,19 @@ export const DetailsScreen = ({ ogImage={coverImage?.uri} /> <Stack direction="column" flex={1} padding={{ bottom: '4xl' }}> - <CoverImage coverImage={coverImage} /> + <Stack> + <CoverImage coverImage={coverImage} /> + {date && ( + <View style={{ position: 'absolute', bottom: Spacing['sm'], left: Spacing['xs'] }}> + <HoliCalendarIcon + day={new Date(date as Date)?.getDate()} + month={new Date(date as Date)?.getMonth() + 1} + size="medium" + /> + </View> + )} + </Stack> + <Stack margin={{ bottom: '4xl' }} padding={{ left: 'xs', right: 'xs', bottom: 'sm' }} @@ -106,46 +157,59 @@ export const DetailsScreen = ({ </Stack> <Stack gap="xs" direction="row"> - {date && ( - <HoliCalendarIcon - day={new Date(date as Date)?.getDate()} - month={new Date(date as Date)?.getMonth() + 1} - size="medium" - /> - )} - <Text size="3xl" testID="detailview-title"> - {title} - </Text> + <Text size="3xl">{title}</Text> </Stack> <Stack direction="column" gap="xxs" shouldRender={!!infoList}> {infoList?.map((detail, index) => { - const TextComp = detail.onPress ? TextLink : Text + const TextComp = detail.onPress ? TextLinkTracked : Text return ( <Stack - alignItems={detail?.subtitle ? 'flex-start' : 'center'} - justifyContent="flex-start" + alignItems="flex-start" direction="row" gap="3xs" + padding={{ right: 'sm' }} onPress={detail?.onPress} key={`${detail?.title}-${index}`} > - <HoliIcon size={24} icon={detail?.icon} /> - <Stack> - <TextComp size="md">{detail?.title}</TextComp> + <HoliIcon size={Spacing.md} icon={detail?.icon} /> + <Stack flex={1}> + <TextComp size="md" trackingEvent={TrackingEvent.EventDetails.videoCall}> + {detail?.title} + </TextComp> {detail?.subtitle && ( <Text color="support" size="sm"> {detail?.subtitle} </Text> )} </Stack> + {detail.showExternalIcon ? <HoliIcon icon={ExternalLink} size={Spacing.sm} /> : null} </Stack> ) })} </Stack> - {description && React.isValidElement(description) ? <Text size="md">{description}</Text> : null} - {description && typeof description === 'string' && <HoliRichTextOutput text={description as string} />} + <DescriptionRenderer description={description} /> {author && <AuthorBanner {...author} />} + {partners && ( + <Stack direction="column" gap="xxs"> + <Text size="sm" color="support"> + {partners?.title} + </Text> + {partners.details?.map((partner, index) => { + return ( + <Stack key={`partner-block-${partner.title}-${index}`} direction="row" gap="xs"> + <Avatar shape="circle" size="xs" source={partner?.image} initials={partner.title} /> + <Stack direction="row" flex={1} justifyContent="space-between" alignItems="center"> + <TextLink onPress={partner?.onPress} size="md"> + {partner.title} + </TextLink> + {partner?.onPress ? <HoliIcon size={20} icon={ExternalLink} /> : null} + </Stack> + </Stack> + ) + })} + </Stack> + )} </Stack> </Stack> {_footer} diff --git a/core/layouts/DetailsScreen/skeleton.tsx b/core/layout/DetailsScreen/skeleton.tsx similarity index 100% rename from core/layouts/DetailsScreen/skeleton.tsx rename to core/layout/DetailsScreen/skeleton.tsx diff --git a/core/screens/act/ActHome.tsx b/core/screens/act/ActHome.tsx index e3714168b8b7e0fc8e2e2967a44f5fdec8cf377c..40ffa28dee70d3f5ddfff2d1562a55361805abc8 100644 --- a/core/screens/act/ActHome.tsx +++ b/core/screens/act/ActHome.tsx @@ -24,6 +24,7 @@ export const orderedSections = (selectedContentType?: string) => { const sections = [ ActSectionType.VOLUNTEERING, ActSectionType.CHALLENGES, + ActSectionType.EVENTS, ActSectionType.TASKS, ActSectionType.DONATIONS, ] diff --git a/core/screens/act/ActSection.tsx b/core/screens/act/ActSection.tsx index aec9c102f240cc4ed4ff79d9aab6e5882be29232..5b9bc9d2b75687815b700e681328767f2697403e 100644 --- a/core/screens/act/ActSection.tsx +++ b/core/screens/act/ActSection.tsx @@ -9,10 +9,12 @@ import TaskRecommendations from '@holi/core/screens/homeFeed/components/TaskReco import RecommendedChallenges from '@holi-apps/challenges/components/RecommendedChallenges' import DonationUpdates from '@holi-apps/donations/components/DonationUpdates' import VolunteeringRecos from '@holi-apps/volunteering/components/VolunteeringRecos' +import EventCarousel from '@holi-apps/events/components/EventCarousel' export enum ActSectionType { VOLUNTEERING = 'VOLUNTEERING', CHALLENGES = 'CHALLENGES', + EVENTS = 'EVENTS', TASKS = 'TASKS', DONATIONS = 'DONATIONS', } @@ -21,6 +23,7 @@ export const ActSection = ({ type }: { type: ActSectionType }) => { const cardWidth = useCardWidth() const displayVolunteering = useFeatureFlagWithMaintenance(FeatureFlagKey.VOLUNTEERING).isOn const displayDonations = useFeatureFlagWithMaintenance(FeatureFlagKey.DONATIONS).isOn + const displayEvents = useFeatureFlagWithMaintenance(FeatureFlagKey.EVENTS).isOn switch (type) { case ActSectionType.CHALLENGES: @@ -39,6 +42,16 @@ export const ActSection = ({ type }: { type: ActSectionType }) => { )} </> ) + case ActSectionType.EVENTS: + return ( + <> + {displayEvents && ( + <ErrorBoundary> + <EventCarousel cardWidth={cardWidth} /> + </ErrorBoundary> + )} + </> + ) case ActSectionType.TASKS: return ( <ErrorBoundary> diff --git a/core/screens/act/__tests__/ActHome.test.tsx b/core/screens/act/__tests__/ActHome.test.tsx index 1bfa02e0754cf0e4b706d0f92aab67f0e7cda331..652a8fec20c6698549e65a6e7b75f0120c54c1cd 100644 --- a/core/screens/act/__tests__/ActHome.test.tsx +++ b/core/screens/act/__tests__/ActHome.test.tsx @@ -21,12 +21,12 @@ jest.mock('@holi/core/screens/act/ActSection', () => { }) const cases = [ - { section: undefined, order: ['VOLUNTEERING', 'CHALLENGES', 'TASKS', 'DONATIONS'] }, - { section: 'SPACE', order: ['VOLUNTEERING', 'CHALLENGES', 'TASKS', 'DONATIONS'] }, - { section: 'DONATIONS', order: ['DONATIONS', 'VOLUNTEERING', 'CHALLENGES', 'TASKS'] }, - { section: 'VOLUNTEERING', order: ['VOLUNTEERING', 'CHALLENGES', 'TASKS', 'DONATIONS'] }, - { section: 'CHALLENGES', order: ['CHALLENGES', 'VOLUNTEERING', 'TASKS', 'DONATIONS'] }, - { section: 'TASKS', order: ['TASKS', 'VOLUNTEERING', 'CHALLENGES', 'DONATIONS'] }, + { section: undefined, order: ['VOLUNTEERING', 'CHALLENGES', 'EVENTS', 'TASKS', 'DONATIONS'] }, + { section: 'SPACE', order: ['VOLUNTEERING', 'CHALLENGES', 'EVENTS', 'TASKS', 'DONATIONS'] }, + { section: 'DONATIONS', order: ['DONATIONS', 'VOLUNTEERING', 'CHALLENGES', 'EVENTS', 'TASKS'] }, + { section: 'VOLUNTEERING', order: ['VOLUNTEERING', 'CHALLENGES', 'EVENTS', 'TASKS', 'DONATIONS'] }, + { section: 'CHALLENGES', order: ['CHALLENGES', 'VOLUNTEERING', 'EVENTS', 'TASKS', 'DONATIONS'] }, + { section: 'TASKS', order: ['TASKS', 'VOLUNTEERING', 'CHALLENGES', 'EVENTS', 'DONATIONS'] }, ] describe('ActHome Section', () => { diff --git a/core/screens/homeFeed/Feed.tsx b/core/screens/homeFeed/Feed.tsx index 9a262c3d49bb502b8516add1342ffb1ebd08b6d7..2408f26fd674d42df56e4ced46603edaf4456410 100644 --- a/core/screens/homeFeed/Feed.tsx +++ b/core/screens/homeFeed/Feed.tsx @@ -36,6 +36,7 @@ import { useScrollToTop } from '@react-navigation/native' import useTracking from '@holi/core/tracking/hooks/useTracking' import { useFeedStats } from '@holi/core/screens/homeFeed/helpers/useFeedStats' import ChallengesCarousel from '@holi-apps/challenges/components/feed/ChallengesCarousel' +import { useFeatureFlag } from '@holi/core/featureFlags/hooks/useFeatureFlag' const surveyUrl = 'https://tally.so/r/nrdGxX' const MemoizedChallengesCarousel = memo(({ refreshing }: { refreshing: boolean }) => { @@ -55,6 +56,8 @@ const HomeFeed = () => { setLastViewedIndex((prev) => Math.max(prev, index)) }, []) const displayFeedbackLink = useFeatureFlagWithMaintenance(FeatureFlagKey.FEEDBACK_LINK).isOn + const displayChallengesCarousel = useFeatureFlag(FeatureFlagKey.CHALLENGES_CAROUSEL) + const { initialLoading, canLoadMore, combinedFeedData, fetchMore, refetch, refreshing, insightsCreators } = useFeedQuery() @@ -130,11 +133,11 @@ const HomeFeed = () => { <HoliTransition.FadeDown visible> <View style={styles.listHeader}> <HomeFeedHeader /> - <MemoizedChallengesCarousel refreshing={refreshing} /> + {displayChallengesCarousel[0] && <MemoizedChallengesCarousel refreshing={refreshing} />} </View> </HoliTransition.FadeDown> ), - [refreshing] + [displayChallengesCarousel, refreshing] ) const listItemTrackingEvent: ListItemTrackingEvent<FeedItem> = (item) => { diff --git a/core/screens/notifications/components/__tests__/__snapshots__/NotificationConnectionItem.test.tsx.snap b/core/screens/notifications/components/__tests__/__snapshots__/NotificationConnectionItem.test.tsx.snap index c6e2cd1e1ef526d7448614cb061ca13ba2219274..76e6e8043e2f4caab4c9b3843b9163718d2da24f 100644 --- a/core/screens/notifications/components/__tests__/__snapshots__/NotificationConnectionItem.test.tsx.snap +++ b/core/screens/notifications/components/__tests__/__snapshots__/NotificationConnectionItem.test.tsx.snap @@ -282,6 +282,7 @@ exports[`NotificationConnectionItem.tsx matches snapshot 1`] = ` style={ [ { + "alignSelf": "center", "backgroundColor": "#ffffff", "borderColor": "#262424", "borderRadius": 1000, @@ -385,6 +386,7 @@ exports[`NotificationConnectionItem.tsx matches snapshot 1`] = ` style={ [ { + "alignSelf": "center", "backgroundColor": "#fdfd80", "borderColor": "#262424", "borderRadius": 1000, diff --git a/core/screens/notifications/components/__tests__/__snapshots__/NotificationSpaceConnectionItem.test.tsx.snap b/core/screens/notifications/components/__tests__/__snapshots__/NotificationSpaceConnectionItem.test.tsx.snap index 122bf52ac027dba760247425af65fdbce6ba0728..c8954acb7c931e5cd43b37fb6b2be25d7de107a0 100644 --- a/core/screens/notifications/components/__tests__/__snapshots__/NotificationSpaceConnectionItem.test.tsx.snap +++ b/core/screens/notifications/components/__tests__/__snapshots__/NotificationSpaceConnectionItem.test.tsx.snap @@ -281,6 +281,7 @@ exports[`NotificationSpaceConnectionItem with legacy notifications matches snaps style={ [ { + "alignSelf": "center", "backgroundColor": "#ffffff", "borderColor": "#262424", "borderRadius": 1000, @@ -384,6 +385,7 @@ exports[`NotificationSpaceConnectionItem with legacy notifications matches snaps style={ [ { + "alignSelf": "center", "backgroundColor": "#fdfd80", "borderColor": "#262424", "borderRadius": 1000, @@ -741,6 +743,7 @@ I would like to join! style={ [ { + "alignSelf": "center", "backgroundColor": "#ffffff", "borderColor": "#262424", "borderRadius": 1000, @@ -844,6 +847,7 @@ I would like to join! style={ [ { + "alignSelf": "center", "backgroundColor": "#fdfd80", "borderColor": "#262424", "borderRadius": 1000, diff --git a/core/screens/notifications/components/__tests__/__snapshots__/NotificationSpaceInviteItem.test.tsx.snap b/core/screens/notifications/components/__tests__/__snapshots__/NotificationSpaceInviteItem.test.tsx.snap index 34e07c5ac300d1afd45fa2012982cedc77a4a326..3fd4da3b49ad3d2dd5f4d0c2c45164f785878d30 100644 --- a/core/screens/notifications/components/__tests__/__snapshots__/NotificationSpaceInviteItem.test.tsx.snap +++ b/core/screens/notifications/components/__tests__/__snapshots__/NotificationSpaceInviteItem.test.tsx.snap @@ -275,6 +275,7 @@ exports[`NotificationSpaceInviteItem with legacy notifications matches snapshot style={ [ { + "alignSelf": "center", "backgroundColor": "#ffffff", "borderColor": "#262424", "borderRadius": 1000, @@ -378,6 +379,7 @@ exports[`NotificationSpaceInviteItem with legacy notifications matches snapshot style={ [ { + "alignSelf": "center", "backgroundColor": "#fdfd80", "borderColor": "#262424", "borderRadius": 1000, @@ -728,6 +730,7 @@ exports[`NotificationSpaceInviteItem with novu notifications notification for me style={ [ { + "alignSelf": "center", "backgroundColor": "#ffffff", "borderColor": "#262424", "borderRadius": 1000, @@ -831,6 +834,7 @@ exports[`NotificationSpaceInviteItem with novu notifications notification for me style={ [ { + "alignSelf": "center", "backgroundColor": "#fdfd80", "borderColor": "#262424", "borderRadius": 1000, diff --git a/core/screens/spaces/details/components/__tests__/__snapshots__/SpaceInvolvement.test.tsx.snap b/core/screens/spaces/details/components/__tests__/__snapshots__/SpaceInvolvement.test.tsx.snap index 73d5fe7e25a9b3c8b3355e5d14a0e6353ed347a0..b747b0b62465451808561281309a6e30b12fc047 100644 --- a/core/screens/spaces/details/components/__tests__/__snapshots__/SpaceInvolvement.test.tsx.snap +++ b/core/screens/spaces/details/components/__tests__/__snapshots__/SpaceInvolvement.test.tsx.snap @@ -1623,6 +1623,7 @@ exports[`SpaceInvolvement renders correctly for the public 1`] = ` style={ [ { + "alignSelf": "center", "backgroundColor": "#ffffff", "borderColor": "#262424", "borderRadius": 1000, diff --git a/core/screens/spaces/discover/Spaces.tsx b/core/screens/spaces/discover/Spaces.tsx index ad4d66ad079ebcfb435373a0925d3d3888b7f757..c5ee70b519ea25fbf5fb554463463daeaa479978 100644 --- a/core/screens/spaces/discover/Spaces.tsx +++ b/core/screens/spaces/discover/Spaces.tsx @@ -26,6 +26,9 @@ import { HoliHorizontalRow } from '@holi/ui/components/molecules/HoliHorizontalR import HoliLoader from '@holi/ui/components/molecules/HoliLoader' import HoliTabs from '@holi/ui/components/organisms/HoliTabs' import { type HoliTheme, useTheme } from '@holi/ui/styles/theme' +import { useBreakpointMatcher } from '@holi/core/helpers' +import { dimensions } from '@holi/ui/styles/globalVars' +import { Spacing } from 'holi-bricks/tokens' export enum Tab { MINE = 'mine', @@ -50,6 +53,11 @@ const Spaces = () => { const styles = useMemo(() => getStyles(theme), [theme]) const client = useApolloClient() const { navigateWithAuth } = useAuthRequiredNavigation() + const marginHorizontal = useBreakpointMatcher([ + [0, 0], + [dimensions.breakpointS, Spacing.lg], + [dimensions.breakpointL, Spacing['4xl']], + ]) const { onScroll: onScreenScroll } = useThrottledMobileScrollEvents() @@ -125,7 +133,7 @@ const Spaces = () => { activeTab={activeTab} onChange={onChangeTab} backgroundColor={colors.background20} - marginHorizontal={0} + marginHorizontal={marginHorizontal} data={[ { key: Tab.MINE, diff --git a/core/screens/spaces/discover/components/GetStartedView/index.tsx b/core/screens/spaces/discover/components/GetStartedView/index.tsx index c197486a924be4e11fb7d47ed4902aa8bca77914..c8c73a39283093ee401498f076f127dc2446d2d1 100644 --- a/core/screens/spaces/discover/components/GetStartedView/index.tsx +++ b/core/screens/spaces/discover/components/GetStartedView/index.tsx @@ -25,7 +25,7 @@ const GetStartedView: React.FC<GetStartedViewProps> = () => { const { styles } = useStyles(stylesheet) return ( - <HoliContainer testID="spaces-container" gap={Spacing.md} noPadding={true}> + <HoliContainer testID="spaces-container" gap={Spacing.md} noPadding> <View style={styles.description}> <View style={styles.text} testID="get-started-view-header"> <Text headingLevel="2" size="3xl"> diff --git a/core/screens/spaces/discover/components/GetStartedView/index.web.tsx b/core/screens/spaces/discover/components/GetStartedView/index.web.tsx index 23ac51ae26e10e3dfa1858ddcc8c1cd97499ecb4..1c123c804bb12261b8f455f23927fa19f7342d2a 100644 --- a/core/screens/spaces/discover/components/GetStartedView/index.web.tsx +++ b/core/screens/spaces/discover/components/GetStartedView/index.web.tsx @@ -36,7 +36,7 @@ const GetStartedView: React.FC<GetStartedViewProps> = () => { } return ( - <HoliContainer testID="spaces-container" gap={Spacing.md} noPaddingOnSmallViewports={true}> + <HoliContainer testID="spaces-container" gap={Spacing.md} noPaddingOnSmallViewports noPadding> <View style={styles.description(screenWidth)}> <View style={styles.text} testID="get-started-view-header"> <Text headingLevel="2" size="3xl"> diff --git a/core/screens/spaces/discover/components/MySpaces.tsx b/core/screens/spaces/discover/components/MySpaces.tsx index 7664270ba193ec5441b08d9b5858a9402cb4a255..db6a6abf5da05a89e8a6b3db2d2b5db01e0f2755 100644 --- a/core/screens/spaces/discover/components/MySpaces.tsx +++ b/core/screens/spaces/discover/components/MySpaces.tsx @@ -7,6 +7,8 @@ import type { SpaceSection } from '@holi/core/screens/spaces/types' import HoliContainer from '@holi/ui/components/atoms/HoliContainer' import { Text } from 'holi-bricks/components/text' import { Spacing } from 'holi-bricks/tokens' +import { useBreakpointMatcher } from '@holi/core/helpers' +import { dimensions } from '@holi/ui/styles/globalVars' export type MySpacesProps = { mySpaces: SpaceSection[] @@ -14,6 +16,11 @@ export type MySpacesProps = { const MySpaces = ({ mySpaces = [] }: MySpacesProps) => { const { t } = useTranslation() + const additionalMarginHorizontal = useBreakpointMatcher([ + [0, Spacing.xs], + [dimensions.breakpointS, 0], + [dimensions.breakpointL, 0], + ]) const mappedSpaces = mySpaces.map((section) => ({ title: t(`spaces.tabs.mine.${section.type.toLowerCase()}`), @@ -22,25 +29,27 @@ const MySpaces = ({ mySpaces = [] }: MySpacesProps) => { })) return ( - <HoliContainer> - {mappedSpaces.map((section, sectionIndex) => ( - <View key={`${sectionIndex}`} style={styles.section}> - <View testID={`section-headline-${section.type}`}> - <Text headingLevel="3" size="lg"> - {section.title} - </Text> + <View style={{ marginHorizontal: additionalMarginHorizontal }}> + <HoliContainer noPadding> + {mappedSpaces.map((section, sectionIndex) => ( + <View key={`${sectionIndex}`} style={styles.section}> + <View testID={`section-headline-${section.type}`}> + <Text headingLevel="3" size="lg"> + {section.title} + </Text> + </View> + + {section.data.map((space, spaceIndex) => ( + <SpaceMineTile + space={space} + sectionType={section.type} + key={`${sectionIndex}-${space.name}-${spaceIndex}`} + /> + ))} </View> - - {section.data.map((space, spaceIndex) => ( - <SpaceMineTile - space={space} - sectionType={section.type} - key={`${sectionIndex}-${space.name}-${spaceIndex}`} - /> - ))} - </View> - ))} - </HoliContainer> + ))} + </HoliContainer> + </View> ) } diff --git a/core/screens/spaces/edit/components/__tests__/__snapshots__/EditSpaceCollaborators.test.tsx.snap b/core/screens/spaces/edit/components/__tests__/__snapshots__/EditSpaceCollaborators.test.tsx.snap index 24402fc6ae5db292ae866591bdd19bbc4693b6a1..c57ab8bd7e5bca341dfa6551a16624af9812fdd0 100644 --- a/core/screens/spaces/edit/components/__tests__/__snapshots__/EditSpaceCollaborators.test.tsx.snap +++ b/core/screens/spaces/edit/components/__tests__/__snapshots__/EditSpaceCollaborators.test.tsx.snap @@ -962,6 +962,7 @@ exports[`EditSpaceCollaborators renders correctly 1`] = ` style={ [ { + "alignSelf": "center", "backgroundColor": "#fdfd80", "borderColor": "#262424", "borderRadius": 1000, @@ -3014,6 +3015,7 @@ exports[`EditSpaceCollaborators renders correctly with pending requests 1`] = ` style={ [ { + "alignSelf": "center", "backgroundColor": "#fdfd80", "borderColor": "#262424", "borderRadius": 1000, diff --git a/core/screens/spaces/tasks/TaskDetails.tsx b/core/screens/spaces/tasks/TaskDetails.tsx index f394ae9ff267e3d07687b1f58a626759d00bd27f..7e1b654707680660a44527f537ccf5f87f397bb8 100644 --- a/core/screens/spaces/tasks/TaskDetails.tsx +++ b/core/screens/spaces/tasks/TaskDetails.tsx @@ -1,6 +1,6 @@ import React, { memo, useCallback } from 'react' import { Screen } from '@holi/core/components/Screen' -import { DetailsScreen } from '@holi/core/layouts/DetailsScreen' + import { Stack } from 'holi-bricks/components/stack' import { useTaskDetailsData } from '@holi/core/screens/spaces/tasks/useTaskDetailsData/useTaskDetailsData' import HeaderBackButton from '@holi/core/navigation/components/HeaderBackButton' @@ -10,6 +10,7 @@ import { white } from 'holi-bricks/tokens' import { ContactOrganization } from '@holi/core/screens/spaces/tasks/components/ContactOrganization' import { useFeatureFlag } from '@holi/core/featureFlags/hooks/useFeatureFlag' import { FeatureFlagKey } from '@holi/core/featureFlags/constants' +import { DetailsScreen } from '@holi/core/layout/DetailsScreen' const isIos = Platform.OS === 'ios' @@ -18,15 +19,7 @@ export type TaskDetailsParams = { } const TaskDetailsContainer = () => { - const { - data: { loading, title, coverImage, infoList, visibility, description, chips, author }, - isOwner, - spaceName, - id, - refetch, - spaceId, - spaceTitle, - } = useTaskDetailsData() + const { data, isOwner, spaceName, id, refetch, spaceId, spaceTitle } = useTaskDetailsData() const displayCta = useFeatureFlag(FeatureFlagKey.TASK_CONTACT_CTA) const renderActionDrawer = useCallback( @@ -67,7 +60,7 @@ const TaskDetailsContainer = () => { {displayCta && ( <ContactOrganization spaceIdOrName={spaceName} - taskName={title} + taskName={data?.title} taskId={id} spaceTitle={spaceTitle} spaceId={spaceId} @@ -76,16 +69,7 @@ const TaskDetailsContainer = () => { </Stack> } > - <DetailsScreen - loading={loading} - coverImage={coverImage} - title={title} - infoList={infoList} - visibility={visibility} - description={description} - author={author} - chips={chips} - /> + <DetailsScreen {...data} /> </Screen> ) } diff --git a/core/screens/spaces/tasks/useTaskDetailsData/useTaskDetailsData.ts b/core/screens/spaces/tasks/useTaskDetailsData/useTaskDetailsData.ts index 9064382acf6179805b4b390b1152b613554997fb..b30216daeb8c62e41dcf275f98f5abd4b110e876 100644 --- a/core/screens/spaces/tasks/useTaskDetailsData/useTaskDetailsData.ts +++ b/core/screens/spaces/tasks/useTaskDetailsData/useTaskDetailsData.ts @@ -3,13 +3,13 @@ import { useErrorHandling } from '@holi/core/errors/hooks' import { isSSR } from '@holi/core/helpers/isSSR' import createParamHooks from '@holi/core/navigation/hooks/useParam' import useRouting from '@holi/core/navigation/hooks/useRouting' -import type { DetailsScreenChips, DetailsScreenData, DetailsScreenInfoList } from '@holi/core/layouts/DetailsScreen' import { SpaceUserConnectionType, VisibilityType, useTaskByIdQuery } from '@holi/api/graphql/graphql-codegen' import { CalendarEvent, MapPin2, UserFilled } from '@holi/icons/src/generated' import { useTranslation } from 'react-i18next' import { useLoggedInUser } from '@holi/core/auth/hooks/useLoggedInUser' import { getFormattedDate } from '@holi/core/i18n/helpers/dateHelper' import { useRateLimit } from '@holi/ui/helper' +import type { DetailsScreenChips, DetailsScreenData, DetailsScreenInfoList } from '@holi/core/layout/DetailsScreen' export type TaskDetailsParams = { spaceIdOrName: string @@ -31,7 +31,7 @@ const { useParam, useUUIDParam } = createParamHooks<TaskDetailsParams>() export const useTaskDetailsData = (): UseTaskDetailsData => { const [spaceIdOrName] = useParam('spaceIdOrName') const { displayError } = useErrorHandling() - const { replaceRoute } = useRouting() + const { replaceRoute, navigate } = useRouting() const { t, i18n } = useTranslation() const [taskId] = useUUIDParam('taskId') const loginState = useLoggedInUser() @@ -127,6 +127,7 @@ export const useTaskDetailsData = (): UseTaskDetailsData => { topTitle: `${formattedDate} ∙ ${t('postedOnHoli')}`, title: data?.taskById?.space?.name || data?.taskById?.name || '??', subtitle: data?.taskById?.creator?.fullName, + onPress: () => navigate('/spaces/' + data?.taskById?.space?.id), mainAvatar: { source: data?.taskById?.space?.avatar, initials: data?.taskById?.space?.name || data?.taskById?.name || '??', diff --git a/core/tracking/events.ts b/core/tracking/events.ts index ae0a3a951518879bd0ef45a5b7bca2126795c4ce..3f9ee3c5f41c57bfab3e0b36685b0e0ccd7a0ef4 100644 --- a/core/tracking/events.ts +++ b/core/tracking/events.ts @@ -124,6 +124,46 @@ export namespace TrackingEvent { }, } + export const EventDetails = { + shared: (eventId: string) => ({ + name: 'event_shareButton_pressed', + properties: { + eventId, + }, + ...versionOne, + }), + findMore: { + name: 'events_findMore_pressed', + ...versionOne, + }, + videoCall: { + name: 'events_videoCallLink_pressed', + ...versionOne, + }, + } + + export const Events = { + selected: (eventId: string) => ({ + name: 'event_selected', + properties: { + eventId, + }, + ...versionOne, + }), + seeAll: { + name: 'events_seeAll_pressed', + ...versionOne, + }, + filter: { + name: 'events_filter_pressed', + ...versionOne, + }, + loadMore: { + name: 'events_loadMore_pressed', + ...versionOne, + }, + } + export const Engaging = { reacted: (reactableType: string, reactableId: string): TrackingEvent => ({ name: 'reacted', diff --git a/holi-apps/events/.eslintrc.cjs b/holi-apps/events/.eslintrc.cjs new file mode 100644 index 0000000000000000000000000000000000000000..699061981d24aa54bb7da7feb5ce9fe9045f80ee --- /dev/null +++ b/holi-apps/events/.eslintrc.cjs @@ -0,0 +1,3 @@ +module.exports = { + extends: ['../../.eslintrc.js'], +} diff --git a/holi-apps/events/components/EventCard.tsx b/holi-apps/events/components/EventCard.tsx new file mode 100644 index 0000000000000000000000000000000000000000..7c6f0b563c8f260fe0863abf01885fa2b125b5f2 --- /dev/null +++ b/holi-apps/events/components/EventCard.tsx @@ -0,0 +1,51 @@ +import React from 'react' + +import { MapPin2Filled } from '@holi/icons/src/generated' +import { ChipLabel } from 'holi-bricks/components/chips' +import { useTranslation } from 'react-i18next' +import type { HoliEvent } from '@holi-apps/events/types' +import { CompactCard } from 'holi-bricks/components/card/CompactCard' +import { HoliLinkTracked } from '@holi/core/components/Trackable' +import { useFormattedEventDates } from '@holi-apps/events/helpers/useFormattedEventDates' +import { TrackingEvent } from '@holi/core/tracking' + +export interface EventProps { + event: HoliEvent + maxCardWidth?: number +} + +const EventCard = ({ event, maxCardWidth: cardWidth }: EventProps) => { + const { t } = useTranslation() + + const formattedDates = useFormattedEventDates(event.startDate, event.endDate) + + const location = event.isRemote ? 'Remote' : event.location ? event.location.city : '' + + const organisationName = `${t('act.events.createdBy')} ${event.organisationName}` + const ChipComponent = () => ( + <ChipLabel color="mono" size="sm"> + {event?.startDate && formattedDates} + </ChipLabel> + ) + + return ( + <HoliLinkTracked + href={`/events/${event.id}`} + label={event.title} + trackingEvent={TrackingEvent.Events.selected(event.id)} + > + <CompactCard + title={event.title} + topLabel={location} + subtitle={organisationName} + topLabelIcon={MapPin2Filled} + imageSrc={event.imageUrl} + startDate={event?.startDate} + {...(event.startDate && { chips: [ChipComponent] })} + maxWidth={cardWidth} + /> + </HoliLinkTracked> + ) +} + +export default EventCard diff --git a/holi-apps/events/components/EventCarousel.tsx b/holi-apps/events/components/EventCarousel.tsx new file mode 100644 index 0000000000000000000000000000000000000000..ec05c4f7f44169ee15b48a0902b8c8617b64e09d --- /dev/null +++ b/holi-apps/events/components/EventCarousel.tsx @@ -0,0 +1,52 @@ +import React from 'react' +import RecoSlider from '@holi/core/components/RecoSlider' +import { CalendarEventFilled } from '@holi/icons/src/generated' +import { useTranslation } from 'react-i18next' +import EventCard from '@holi-apps/events/components/EventCard' +import { Stack } from 'holi-bricks/components/stack' +import { useNearbyEventsQuery } from '@holi/api/graphql/graphql-codegen' +import { useLoggedInUser } from '@holi/core/auth/hooks/useLoggedInUser' +import { TrackingEvent } from '@holi/core/tracking' + +type EventCarouselProps = { + cardWidth: number +} + +const EventCarousel = ({ cardWidth }: EventCarouselProps) => { + const { t } = useTranslation() + const user = useLoggedInUser() + const { data } = useNearbyEventsQuery({ + variables: { + geolocationId: user.user?.geolocationId, + }, + }) + + const events = data?.appEvents_nearbyEvents.data + + if (!events) return + + return ( + <RecoSlider + name="events" + renderItem={({ item }) => { + return ( + <Stack margin={{ right: 'xxs' }}> + <EventCard event={item} maxCardWidth={311} /> + </Stack> + ) + }} + data={events} + loading={user.isLoading} + icon={CalendarEventFilled} + heading={t('act.events.title')} + subline={t('act.events.subline')} + labelSeeMore={t('act.events.showAll')} + seeAllPath="/events" + cardWidth={cardWidth} + size="sm" + seeMoreTrackingEvent={TrackingEvent.Events.seeAll} + /> + ) +} + +export default EventCarousel diff --git a/holi-apps/events/components/EventsFilterForm.tsx b/holi-apps/events/components/EventsFilterForm.tsx new file mode 100644 index 0000000000000000000000000000000000000000..b7ecc2d2da347e1866f2f916847b0f69aff2514f --- /dev/null +++ b/holi-apps/events/components/EventsFilterForm.tsx @@ -0,0 +1,80 @@ +import React, { useCallback, useState } from 'react' +import { useTranslation } from 'react-i18next' +import { StyleSheet, View } from 'react-native' + +import { Close } from '@holi/icons/src/generated' +import HoliModalContentWrapper from '@holi/ui/components/molecules/HoliModalContentWrapper' + +import { Button } from 'holi-bricks/components/button' +import { Text } from 'holi-bricks/components/text' +import HoliSwitch from '@holi/ui/components/molecules/HoliSwitch' +import { Spacing } from 'holi-bricks/tokens' +import { Stack } from 'holi-bricks/components/stack' + +export type EventFilters = { + localOnly: boolean + date?: string +} + +export type EventFilterFormProps = { + filters: EventFilters + onSubmit: (filters: EventFilters) => void +} + +const EventsFilterForm = ({ onSubmit, filters }: EventFilterFormProps) => { + const { t } = useTranslation() + const [localOnly, setLocalOnly] = useState<boolean>(filters.localOnly) + // const [selectedDate, setSelectedDate] = useState<string>('3') + + const submit = useCallback(() => { + onSubmit({ + localOnly: localOnly, + }) + }, [onSubmit, localOnly]) + + const resetForm = () => { + setLocalOnly(false) + // setSelectedDate('3') + } + + return ( + <HoliModalContentWrapper + actionButtonText={t('act.events.filter.submitButton')} + onActionButtonPress={submit} + keyboardShouldPersistTaps="handled" + hideFooterWhenKeyboardIsOpen={true} + > + <View style={styles.modalContent}> + <Stack direction="row" alignItems="center" justifyContent="space-between" gap="3xs"> + <Text size="3xl">{t('act.events.filter.heading')}</Text> + <Button + disabled={localOnly} + label={t('global.reset')} + inline + onPress={resetForm} + variant="secondary" + size="sm" + icon={Close} + /> + </Stack> + + <Stack direction="row" alignItems="center" justifyContent="space-between"> + <Text size="md">{t('core.act.events.filter.remote')}</Text> + <HoliSwitch value={localOnly} size="small" onChange={setLocalOnly} /> + </Stack> + </View> + </HoliModalContentWrapper> + ) +} + +export default EventsFilterForm + +const styles = StyleSheet.create({ + modalContent: { + padding: Spacing.xs, + paddingBottom: Spacing.xl, + gap: Spacing.md, + height: '100%', + flexShrink: 1, + }, +}) diff --git a/holi-apps/events/helpers/__tests__/useFormattedEventDates.test.ts b/holi-apps/events/helpers/__tests__/useFormattedEventDates.test.ts new file mode 100644 index 0000000000000000000000000000000000000000..a07092ba94c3dde005fe273f85ef3a8d83f980ec --- /dev/null +++ b/holi-apps/events/helpers/__tests__/useFormattedEventDates.test.ts @@ -0,0 +1,111 @@ +import { renderHook } from '@testing-library/react-native' +import { useFormattedEventDates } from '@holi-apps/events/helpers/useFormattedEventDates' + +jest.mock('react-i18next', () => { + const mockTranslations = { + en: { 'act.events.fromTo': 'to' }, + de: { 'act.events.fromTo': 'bis' }, + } + + return { + useTranslation: () => ({ + i18n: { + language: 'en', // Default to English + changeLanguage: jest.fn(), + exists: () => true, + }, + t: (key: keyof (typeof mockTranslations)['en']) => mockTranslations['en'][key] || key, + }), + } +}) + +describe.skip('useFormattedEventDates', () => { + beforeEach(() => { + jest.resetModules() // Ensures fresh module state for each test + }) + it('should return correctly formatted date if no start date is passed', async () => { + const startDate = undefined + const endDate = '2025-03-26T13:00:00+01:00' + + const { result } = renderHook(() => useFormattedEventDates(startDate, endDate)) + + expect(result.current).toEqual(undefined) + }) + it('should return correctly formatted date if empty start date is passed', async () => { + const startDate = '' + const endDate = '2025-03-26T13:00:00+01:00' + + const { result } = renderHook(() => useFormattedEventDates(startDate, endDate)) + + expect(result.current).toEqual(undefined) + }) + it('should return correctly formatted date if no end date is passed', async () => { + const startDate = '2025-03-26T13:00:00+01:00' + const endDate = undefined + + const { result } = renderHook(() => useFormattedEventDates(startDate, endDate)) + + expect(result.current).toEqual('Wed, 26 Mar ∙ 01:00 PM') + }) + it('should return correctly formatted date if start date and end date are the same', async () => { + const startDate = '2025-03-26T13:00:00+01:00' + const endDate = '2025-03-26T13:00:00+01:00' + + const { result } = renderHook(() => useFormattedEventDates(startDate, endDate)) + + expect(result.current).toEqual('Wed, 26 Mar ∙ 01:00 PM') + }) + it('should return correctly formatted date if start date and end date are both 00:00', async () => { + const startDate = '2025-03-26T00:00:00+01:00' + const endDate = '2025-03-26T00:00:00+01:00' + + const { result } = renderHook(() => useFormattedEventDates(startDate, endDate)) + + expect(result.current).toEqual('Wed, 26 Mar') + }) + it('should return correctly formatted date if the event lasts multiple days', async () => { + const startDate = '2025-03-26T13:00:00+01:00' + const endDate = '2025-03-27T10:00:00+01:00' + + const { result } = renderHook(() => useFormattedEventDates(startDate, endDate)) + + expect(result.current).toEqual('Wed, 26 Mar to Thu, 27 Mar') + }) + it('should return correctly formatted date in any other case', async () => { + const startDate = '2025-03-26T13:00:00+01:00' + const endDate = '2025-03-26T18:00:00+01:00' + + const { result } = renderHook(() => useFormattedEventDates(startDate, endDate)) + + expect(result.current).toEqual('Wed, 26 Mar ∙ 01:00 PM to 06:00 PM') + }) + it('should return correctly formatted date in German', () => { + jest.doMock('react-i18next', () => { + const mockTranslations = { + en: { 'act.events.fromTo': 'to' }, + de: { 'act.events.fromTo': 'bis' }, + } + + return { + useTranslation: () => ({ + i18n: { + language: 'de', + changeLanguage: jest.fn(), + exists: () => true, + }, + t: (key: keyof (typeof mockTranslations)['de']) => mockTranslations['de'][key] || key, + }), + } + }) + + jest.resetModules() + const { useFormattedEventDates } = require('@holi-apps/events/helpers/useFormattedEventDates') + + const { result } = renderHook(() => + useFormattedEventDates('2025-03-26T13:00:00+01:00', '2025-03-27T10:00:00+01:00') + ) + + // Expect "to" to be translated as "bis" + expect(result.current).toEqual('Mi, 26 Mär bis Do, 27 Mär') + }) +}) diff --git a/holi-apps/events/helpers/eventsSourceMapping.ts b/holi-apps/events/helpers/eventsSourceMapping.ts new file mode 100644 index 0000000000000000000000000000000000000000..bf978e26c3bc0ed87b79d48ebd4aee4664d93318 --- /dev/null +++ b/holi-apps/events/helpers/eventsSourceMapping.ts @@ -0,0 +1,20 @@ +import type { InfoModalItemProps } from '@holi/core/components/InfoModal' + +export const EVENTS_SOURCE_MAPPING: { + [name: string]: InfoModalItemProps +} = { + 'Gemeinschaftswerk Nachhaltigkeit': { + text: 'Gemeinschaftswerk Nachhaltigkeit', + logo: { + src: require('@holi/ui/assets/img/events/gemeinschaftswerk-nachhaltigkeit-logo.svg'), + isSvg: true, + }, + wordmark: { + src: require('@holi/ui/assets/img/events/gemeinschaftswerk-nachhaltigkeit-wordmark.png'), + width: 119, + height: 34, + isSvg: false, + }, + url: 'https://gemeinschaftswerk-nachhaltigkeit.de', + }, +} diff --git a/holi-apps/events/helpers/useEventDetailsData/index.ts b/holi-apps/events/helpers/useEventDetailsData/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..0af5c0c181e8180db4b9f92584fac3963e8c56cb --- /dev/null +++ b/holi-apps/events/helpers/useEventDetailsData/index.ts @@ -0,0 +1,2 @@ +export { useEventDetailsData } from './useEventDetailsData' +export type { UseEventDetailsData } from './useEventDetailsData' diff --git a/holi-apps/events/helpers/useEventDetailsData/useEventDetailsData.ts b/holi-apps/events/helpers/useEventDetailsData/useEventDetailsData.ts new file mode 100644 index 0000000000000000000000000000000000000000..0008b0d0a554910fb7565c854dec7029988d549e --- /dev/null +++ b/holi-apps/events/helpers/useEventDetailsData/useEventDetailsData.ts @@ -0,0 +1,137 @@ +import { useTranslation } from 'react-i18next' +import { useGetEventByIdQuery } from '@holi/api/graphql/graphql-codegen' +import { CalendarEvent, MapPin2, VideoChat } from '@holi/icons/src/generated' +import type { DetailsScreenData, DetailsScreenInfoList } from '@holi/core/layout/DetailsScreen' +import { isSSR } from '@holi/core/helpers/isSSR' +import { isForbiddenError, isNotFoundError } from '@holi/core/errors/helpers' +import useRouting from '@holi/core/navigation/hooks/useRouting' +import { useErrorHandling } from '@holi/core/errors/hooks' +import { Linking } from 'react-native' +import { useFormattedEventDates } from '@holi-apps/events/helpers/useFormattedEventDates' +import type { ImageSource } from 'holi-bricks/components/image' +import { useRateLimit } from '@holi/ui/helper' +import useTracking from '@holi/core/tracking/hooks/useTracking' +import { LinkType, useShareLink } from '@holi/core/hooks/useShareLink' +import { TrackingEvent } from '@holi/core/tracking' +import { EVENTS_SOURCE_MAPPING } from '@holi-apps/events/helpers/eventsSourceMapping' + +export type UseEventDetailsData = { + data: DetailsScreenData + id?: string + url?: string + spaceName?: string + isOwner?: boolean + refetch(): Promise<void> + onShare(): Promise<void> + spaceId?: string + spaceTitle?: string +} + +export const useEventDetailsData = (eventId?: string): UseEventDetailsData => { + const { displayError } = useErrorHandling() + const { replaceRoute } = useRouting() + const { track } = useTracking() + const { data, loading, refetch } = useGetEventByIdQuery({ + variables: { + id: eventId as string, + }, + skip: !eventId, + fetchPolicy: isSSR ? 'cache-first' : 'cache-and-network', + onError: (error) => { + if (isNotFoundError(error) || isForbiddenError(error)) { + return replaceRoute('/404') + } + displayError(error, 'Failed to load event', { + location: 'EventDetails.eventByIdQuery', + eventId, + }) + }, + }) + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const { t } = useTranslation() + + const event = data?.appEvents_event?.data + const formattedDates = useFormattedEventDates(event?.startDate, event?.endDate) as string + const [, shareLink] = useShareLink({ + link: `/events/${eventId}`, + linkType: LinkType.UNIVERSAL, + message: `${event?.title} ${formattedDates && '- ' + formattedDates} ${event?.location && ' - ' + event.location}`, + }) + + const addressParts = [ + event?.location?.street, + event?.location?.streetNo, + event?.location?.zipCode, + event?.location?.city, + ].filter(Boolean) + + const fullAddress = addressParts.length > 0 ? addressParts.join(' ') : undefined + + const organizationName = event?.organisationName ?? event?.title ?? t('act.events.detail.organisationNameFallback') + + const eventDates = formattedDates ? { title: formattedDates, icon: CalendarEvent } : undefined + const infoList: DetailsScreenInfoList[] = [ + { title: organizationName, subtitle: fullAddress || undefined, icon: MapPin2 }, + ] + + if (eventDates) { + infoList.push(eventDates) + } + + if (event?.isRemote) { + const remoteLink = event.eventDetails.meetingLink ?? event.eventDetails.meetingLink ?? '' + infoList.push({ + title: remoteLink, + icon: VideoChat, + showExternalIcon: true, + onPress: () => Linking.openURL(remoteLink), + }) + } + + const refetchData = useRateLimit(() => refetch({ id: eventId })) + + const onShare = async () => { + if ((await shareLink()) === 'shared') { + track(TrackingEvent.EventDetails.shared(event?.id as string)) + } + } + const partner = EVENTS_SOURCE_MAPPING?.['Gemeinschaftswerk Nachhaltigkeit'] + + return { + refetch: async () => { + await refetchData() + }, + onShare, + id: event?.id, + url: event?.eventDetails?.externalLink, + data: { + visibility: 'public', + loading: loading, + title: event?.title ?? '', + description: event?.eventDetails.description || '', + infoList, + coverImage: { uri: event?.imageUrl }, + date: event?.startDate ? event?.startDate : undefined, + partners: { + title: t('eventDetails.partnersTitle'), + details: [ + { + title: partner.text as string, + image: partner?.logo?.src as ImageSource, + onPress: () => { + if (partner?.url) Linking.openURL(partner?.url) + }, + }, + ], + }, + author: { + topTitle: 'posted via Gemeinschaftswerk Nachhaltigkeit', + title: organizationName, + mainAvatar: { + source: EVENTS_SOURCE_MAPPING?.['Gemeinschaftswerk Nachhaltigkeit'].logo?.src as ImageSource, + initials: organizationName, + }, + }, + }, + } +} diff --git a/holi-apps/events/helpers/useEventListData.ts b/holi-apps/events/helpers/useEventListData.ts new file mode 100644 index 0000000000000000000000000000000000000000..4bc74e1d3c14786aaf750ff9e3d75ae0b1ee32cb --- /dev/null +++ b/holi-apps/events/helpers/useEventListData.ts @@ -0,0 +1,52 @@ +import { useAllEventsQuery } from '@holi/api/graphql/graphql-codegen' +import { logError } from '@holi/core/errors/helpers' +import { isSSR } from '@holi/core/helpers/isSSR' +import { useCallback, useState } from 'react' + +export const useEventListData = (limit: number, localOnly: boolean) => { + const [isLoadingMore, setIsLoadingMore] = useState(false) + + const { data, fetchMore, loading } = useAllEventsQuery({ + fetchPolicy: isSSR ? 'cache-first' : 'cache-and-network', + variables: { + limit: limit, + offset: 0, + localOnly: localOnly, + }, + }) + + const events = data?.appEvents_events.data + const totalResults = data?.appEvents_events.totalResults + const canLoadMore = !loading && events?.length && events?.length < (totalResults || 0) + + const fetchMoreEvents = useCallback(async () => { + if (isLoadingMore) return + setIsLoadingMore(true) + + try { + await fetchMore({ + variables: { + limit: 10, + offset: events?.length ? Math.ceil(events?.length / 10) : 0, + }, + updateQuery: (prev, { fetchMoreResult }) => { + if (!fetchMoreResult || !fetchMoreResult.appEvents_events.data) return prev + return { + appEvents_events: { + ...prev.appEvents_events, + data: [...(prev.appEvents_events.data || []), ...fetchMoreResult.appEvents_events.data], + }, + } + }, + }) + } catch (error) { + logError(error, 'Failed to fetch more', { + location: 'EventList.fetchMoreEvents', + }) + } finally { + setIsLoadingMore(false) + } + }, [isLoadingMore, fetchMore, events?.length]) + + return { events, canLoadMore, fetchMoreEvents } +} diff --git a/holi-apps/events/helpers/useFormattedEventDates.ts b/holi-apps/events/helpers/useFormattedEventDates.ts new file mode 100644 index 0000000000000000000000000000000000000000..79a4f58ff3dd2606168ecc3f39a0b28fe225a930 --- /dev/null +++ b/holi-apps/events/helpers/useFormattedEventDates.ts @@ -0,0 +1,33 @@ +import { useTranslation } from 'react-i18next' + +export const useFormattedEventDates = (startDate?: string, endDate?: string) => { + const { t, i18n } = useTranslation() + + if (!startDate) { + return undefined + } + const startDateObj = new Date(startDate) + const endDateObj = endDate ? new Date(endDate) : undefined + + const startDay = startDateObj.getDate() + const startWeekday = startDateObj.toLocaleDateString(i18n.language, { weekday: 'short' }) + const startMonthName = startDateObj.toLocaleDateString(i18n.language, { month: 'short' }) + const startTime = startDateObj.toLocaleTimeString(i18n.language, { hour: '2-digit', minute: '2-digit' }) + + if (!endDateObj || startDateObj?.getTime() === endDateObj?.getTime()) { + return startTime === '00:00' || startTime === '12:00 AM' + ? `${startWeekday}, ${startDay} ${startMonthName}` + : `${startWeekday}, ${startDay} ${startMonthName} ∙ ${startTime}` + } + + const endDay = endDateObj.getDate() + const endWeekday = endDateObj.toLocaleDateString(i18n.language, { weekday: 'short' }) + const endMonthName = endDateObj.toLocaleDateString(i18n.language, { month: 'short' }) + const endTime = endDateObj.toLocaleTimeString(i18n.language, { hour: '2-digit', minute: '2-digit' }) + + if (startDay !== endDay) { + return `${startWeekday}, ${startDay} ${startMonthName} ${t('act.events.fromTo')} ${endWeekday}, ${endDay} ${endMonthName}` + } + + return `${startWeekday}, ${startDay} ${startMonthName} ∙ ${startTime} ${t('act.events.fromTo')} ${endTime}` +} diff --git a/holi-apps/events/package.json b/holi-apps/events/package.json new file mode 100644 index 0000000000000000000000000000000000000000..2d2bcb839466cc3599ef88abab13b01e32f2758a --- /dev/null +++ b/holi-apps/events/package.json @@ -0,0 +1,16 @@ +{ + "name": "@holi-apps/events", + "version": "1.0.0", + "scripts": { + "lint": "TIMING=1 eslint .", + "test": "echo 'unit testing goes here'", + "clean": "echo 'nothing to be done'", + "clean:all": "npx rimraf node_modules" + }, + "devDependencies": { + "eslint": "^8.33.0", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "4.6.2", + "eslint-plugin-react-native": "^4.1.0" + } +} diff --git a/holi-apps/events/query.graphql b/holi-apps/events/query.graphql new file mode 100644 index 0000000000000000000000000000000000000000..5eea689902c18be12130e71ff92fa03c31e877c5 --- /dev/null +++ b/holi-apps/events/query.graphql @@ -0,0 +1,45 @@ +query getEventById($id: String!) { + appEvents_event(id: $id) { + data { + ...FullEvent + } + } +} + +query allEvents($offset: Int = 0, $limit: Int = 5, $localOnly: Boolean) { + appEvents_events(offset: $offset, limit: $limit, localOnly: $localOnly) { + totalResults + data { + ...FullEvent + } + } +} + +query nearbyEvents($limit: Int = 5, $geolocationId: ID) { + appEvents_nearbyEvents(limit: $limit, geolocationId: $geolocationId) { + data { + ...FullEvent + } + } +} + +fragment FullEvent on AppEvents_Event { + id + title + organisationName + startDate + endDate + location { + street + streetNo + city + zipCode + } + isRemote + imageUrl + eventDetails { + description + externalLink + meetingLink + } +} diff --git a/holi-apps/events/screens/EventDetails.tsx b/holi-apps/events/screens/EventDetails.tsx new file mode 100644 index 0000000000000000000000000000000000000000..4027b6a84dbcad33183224ce3de4038a16613af0 --- /dev/null +++ b/holi-apps/events/screens/EventDetails.tsx @@ -0,0 +1,81 @@ +import React from 'react' +import { Screen } from '@holi/core/components/Screen' +import { Linking } from 'react-native' +import { Stack } from 'holi-bricks/components/stack' +import HeaderBackButton from '@holi/core/navigation/components/HeaderBackButton' +import { Platform, Pressable } from 'react-native' +import { white } from 'holi-bricks/tokens' +import { ButtonTracked } from '@holi/core/components/Trackable' +import createParamHooks from '@holi/core/navigation/hooks/useParam' +import { useEventDetailsData } from '@holi-apps/events/helpers/useEventDetailsData/useEventDetailsData' +import { DetailsScreen } from '@holi/core/layout/DetailsScreen' +import { ExternalLink, Share } from '@holi/icons/src/generated' +import { useTranslation } from 'react-i18next' +import { HoliIcon } from '@holi/icons/src/HoliIcon' +import { TrackingEvent } from '@holi/core/tracking' + +export type EventDetailsParams = { + eventId: string +} + +const { useParam } = createParamHooks<EventDetailsParams>() + +export const EventDetailsScreen = () => { + const [eventId] = useParam('eventId') + const { data, url: eventUrl, refetch, onShare } = useEventDetailsData(eventId as string) + const { t } = useTranslation() + return ( + <Screen + onRefresh={refetch} + preset="auto" + statusBarProps={{ + barStyle: Platform.OS === 'ios' ? 'light-content' : 'default', + }} + headerOptions={{ + animation: 'slide_from_left', + headerBackVisible: false, + headerTitleAlign: 'center', + ...Platform.select({ + native: { + headerTintColor: white, + title: '', + headerTransparent: true, + }, + }), + headerLeft: ({ tintColor }) => <HeaderBackButton tintColor={tintColor} />, + headerRight: ({ tintColor }) => ( + <Pressable onPress={() => onShare()}> + <HoliIcon color={tintColor} size={24} icon={Share} /> + </Pressable> + ), + navigationCustomOptions: { + footerShown: false, + }, + }} + StickyBottomComponent={ + <Stack + padding={{ left: 'md', right: 'md', bottom: 'lg' }} + alignItems="center" + justifyContent="center" + alignSelf="center" + width="100%" + > + {eventUrl && ( + <Stack width={'100%'} maxWidth="xs"> + <ButtonTracked + icon={ExternalLink} + label={t('eventDetails.cta')} + onPress={() => { + Linking.openURL(eventUrl) + }} + trackingEvent={TrackingEvent.EventDetails.findMore} + /> + </Stack> + )} + </Stack> + } + > + <DetailsScreen {...data} /> + </Screen> + ) +} diff --git a/holi-apps/events/screens/EventList.tsx b/holi-apps/events/screens/EventList.tsx new file mode 100644 index 0000000000000000000000000000000000000000..d63c65c3dfc02be563a2523f982b17f3e34a1ac9 --- /dev/null +++ b/holi-apps/events/screens/EventList.tsx @@ -0,0 +1,152 @@ +import React, { useCallback, useState } from 'react' +import { useTranslation } from 'react-i18next' +import { Platform, View } from 'react-native' + +import InfoModal from '@holi/core/components/InfoModal' +import HoliBox from '@holi/ui/components/atoms/HoliBox' +import HoliGridCell from '@holi/ui/components/atoms/HoliGridCell' +import HoliGridWrapper from '@holi/ui/components/atoms/HoliGridWrapper' +import { Image } from 'holi-bricks/components/image' +import HoliModal, { useModalState } from '@holi/ui/components/molecules/HoliModal' + +import { Text } from 'holi-bricks/components/text' +import HeaderBackButton from '@holi/core/navigation/components/HeaderBackButton' +import HoliButton from '@holi/ui/components/molecules/HoliButton' +import EventsFilterForm, { type EventFilters } from '@holi-apps/events/components/EventsFilterForm' +import EventCard from '@holi-apps/events/components/EventCard' +import { Stack } from 'holi-bricks/components/stack' +import { ButtonTracked } from '@holi/core/components/Trackable' +import { HoliHorizontalRow } from '@holi/ui/components/molecules/HoliHorizontalRow' +import { HoliButtonBell } from '@holi/ui/components/molecules/HoliButtonBell' +import { Filter3 } from '@holi/icons/src/generated' +import { Screen } from '@holi/core/components/Screen' +import { TrackingEvent } from '@holi/core/tracking' +import { useEventListData } from '@holi-apps/events/helpers/useEventListData' +import { EVENTS_SOURCE_MAPPING } from '@holi-apps/events/helpers/eventsSourceMapping' + +export const ENGAGEMENT_PAGE_SIZE = 10 +const PAGE_SIZE_EXTERNAL_DATA = 10 + +export const EventList = () => { + const { t } = useTranslation() + + const [fetchLocalOnlyEvents, setFetchLocalOnlyEvents] = useState(false) + const [isFiltering, setIsFiltering] = useState(false) + const { events, canLoadMore, fetchMoreEvents } = useEventListData(PAGE_SIZE_EXTERNAL_DATA, fetchLocalOnlyEvents) + + const partner = EVENTS_SOURCE_MAPPING + + // info modal + const { show: showPartnerModal, hide: closePartnerModal, visible: partnerModalVisible } = useModalState() + // filter modal + const { show: showFilterModal, hide: closeFilterModal, visible: filterModalVisible } = useModalState() + + const handleFilterChange = useCallback( + async (filters: EventFilters) => { + setFetchLocalOnlyEvents(filters.localOnly) + setIsFiltering(filters.localOnly) + closeFilterModal() + }, + [closeFilterModal] + ) + + const filterButton = ( + <HoliButtonBell + label={t('volunteering:filter.heading')} + icon={Filter3} + onPress={showFilterModal} + testID="btn-to-volunteering-filter-modal" + trackingEvent={TrackingEvent.Events.filter} + showBell={isFiltering} + /> + ) + + return ( + <Screen + preset="scroll" + padding={{ left: 'sm', right: 'sm' }} + headerOptions={{ + headerTitle: () => ( + <Text headingLevel="2" size="lg"> + {t('act.events.title')} + </Text> + ), + headerLeft: () => <HeaderBackButton />, + headerRight: () => + Platform.OS === 'web' ? <HoliHorizontalRow>{filterButton}</HoliHorizontalRow> : filterButton, + headerBackVisible: false, + headerTitleAlign: 'center', + }} + > + <Stack padding={{ top: 'md' }}> + {events && events.length > 0 && ( + <Stack gap="xs"> + <Text headingLevel="2" size="3xl"> + {t('act.events.title')} + </Text> + <HoliButton transparent onPress={showPartnerModal} label={t('act.events.partnerInfoRowText')}> + <Stack direction="row" alignItems="center" gap="3xs"> + <Image + source={require('@holi/ui/assets/img/events/gemeinschaftswerk-nachhaltigkeit-logo.png')} + width={33} + height={33} + alt="Logo Gemeinschaftswerk Nachhaltigkeit" + /> + <View style={{ flex: 3 }}> + <Text size="lg">{t('act.events.partnerInfoRowText')}</Text> + </View> + </Stack> + </HoliButton> + + <Text size="lg" color="support"> + {events.length} {t('act.events.opportunities')} + </Text> + + {/* info modal */} + <InfoModal + headline={t('volunteering:listing.partnerModal.headline')} + items={partner} + shown={partnerModalVisible} + onDismiss={closePartnerModal} + i18nPrefix={'act.events.listing.partnerModal'} + /> + + {/* filter modal */} + <HoliModal label={'Filter Events'} shown={filterModalVisible} onDismiss={closeFilterModal} autoHeight> + <EventsFilterForm + filters={{ + localOnly: fetchLocalOnlyEvents, + }} + onSubmit={handleFilterChange} + /> + </HoliModal> + </Stack> + )} + <HoliBox padding={[24, 0, 24, 0]}> + <HoliGridWrapper gap={8}> + {Array.isArray(events) && + events.map((event) => { + return ( + <HoliGridCell key={event.id}> + <EventCard event={event} /> + </HoliGridCell> + ) + })} + </HoliGridWrapper> + </HoliBox> + {canLoadMore && ( + <Stack padding={{ bottom: 'md' }}> + <ButtonTracked + label={t('global.seeMore')} + loadingLabel={t('global.loading')} + inline + onPress={fetchMoreEvents} + testID="btn-fetch-more" + trackingEvent={TrackingEvent.Events.loadMore} + /> + </Stack> + )} + </Stack> + </Screen> + ) +} diff --git a/holi-apps/events/tsconfig.json b/holi-apps/events/tsconfig.json new file mode 100644 index 0000000000000000000000000000000000000000..4082f16a5d91ce6f21a9092b14170eeecc8f1d75 --- /dev/null +++ b/holi-apps/events/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "../../tsconfig.json" +} diff --git a/holi-apps/events/types.ts b/holi-apps/events/types.ts new file mode 100644 index 0000000000000000000000000000000000000000..5b391953d16972cbe3ec73369e1144e66406deeb --- /dev/null +++ b/holi-apps/events/types.ts @@ -0,0 +1,24 @@ +export type EventLocation = { + street?: string + streetNo?: string + zipCode?: string + city?: string +} + +export type EventDetails = { + description: string + meetingLink?: string + externalLink?: string +} + +export type HoliEvent = { + id: string + title: string + organisationName: string + startDate?: string + endDate?: string + isRemote: boolean + imageUrl: string + eventDetails: EventDetails + location?: EventLocation +} diff --git a/holi-apps/volunteering/components/VolunteeringFilterForm.tsx b/holi-apps/volunteering/components/VolunteeringFilterForm.tsx index 32db98551b17f49fd88f9e588d1625b9b637367f..5087c684d93e29fd7bc8950b79bb15efbe10f42b 100644 --- a/holi-apps/volunteering/components/VolunteeringFilterForm.tsx +++ b/holi-apps/volunteering/components/VolunteeringFilterForm.tsx @@ -4,7 +4,7 @@ import { StyleSheet, View } from 'react-native' import PlacesAutocomplete, { type GeolocationSuggestion } from '@holi/core/geolocation/components/PlacesAutocomplete' import { Close } from '@holi/icons/src/generated' -import { HoliHeading } from '@holi/ui/components/atoms/HoliHeading' +import { Text } from 'holi-bricks/components/text' import HoliModalContentWrapper from '@holi/ui/components/molecules/HoliModalContentWrapper' import HoliSelect, { type HoliSelectOption } from '@holi/ui/components/molecules/HoliSelect' @@ -87,7 +87,7 @@ export const VolunteeringFilterForm = ({ filters, onSubmit, clearFilters }: Volu > <View style={styles.container}> <View style={styles.header}> - <HoliHeading testID="volunteering-filter-heading">{t('volunteering:filter.heading')}</HoliHeading> + <Text size="3xl">{t('volunteering:filter.heading')}</Text> <Button label={t('global.reset')} inline onPress={resetForm} variant="secondary" size="sm" icon={Close} /> </View> <PlacesAutocomplete diff --git a/holi-apps/volunteering/hooks/useVolunteeringDetailsData/useVolunteeringDetailsData.ts b/holi-apps/volunteering/hooks/useVolunteeringDetailsData/useVolunteeringDetailsData.ts index 26aa972b916418accaa85868b0fa0162631257fa..a534c711de2a1f1a805494cab8c23f833e82ddfc 100644 --- a/holi-apps/volunteering/hooks/useVolunteeringDetailsData/useVolunteeringDetailsData.ts +++ b/holi-apps/volunteering/hooks/useVolunteeringDetailsData/useVolunteeringDetailsData.ts @@ -3,11 +3,11 @@ import { isForbiddenError, isNotFoundError } from '@holi/core/errors/helpers' import useRouting from '@holi/core/navigation/hooks/useRouting' import { isSSR } from '@holi/core/helpers/isSSR' import { useErrorHandling } from '@holi/core/errors/hooks' -import type { DetailsScreenChips, DetailsScreenData, DetailsScreenInfoList } from '@holi/core/layouts/DetailsScreen' import { MapPin2 } from '@holi/icons/src/generated' import { useTranslation } from 'react-i18next' import type { InfoModalItemProps } from '@holi/core/components/InfoModal' import { useRateLimit } from '@holi/ui/helper' +import type { DetailsScreenChips, DetailsScreenData, DetailsScreenInfoList } from '@holi/core/layout/DetailsScreen' export const VOLUNTEERING_IMG_SOURCES_MAPPING: { [name: string]: InfoModalItemProps diff --git a/holi-apps/volunteering/screens/VolunteeringEngagementDetail.tsx b/holi-apps/volunteering/screens/VolunteeringEngagementDetail.tsx index 5cc105303b78ca72c4aa84ffd8734e7da2d0d5c9..0309d85ef5b28480de0aa4f8f682e7f1e8f9bc72 100644 --- a/holi-apps/volunteering/screens/VolunteeringEngagementDetail.tsx +++ b/holi-apps/volunteering/screens/VolunteeringEngagementDetail.tsx @@ -2,14 +2,13 @@ import { withProfiler } from '@sentry/react' import React, { useRef, memo, useEffect } from 'react' import { useTranslation } from 'react-i18next' import { Platform, Linking } from 'react-native' -import RenderHtml from 'react-native-render-html' import { logError } from '@holi/core/errors/helpers' import PosthogFeatureFlagGuard from '@holi/core/featureFlags/components/PosthogFeatureFlagGuard' import { FeatureFlagKey } from '@holi/core/featureFlags/constants' import createParamHooks from '@holi/core/navigation/hooks/useParam' import { useCardWidth } from '@holi/core/screens/homeFeed/components/Recommendations' import { Text } from 'holi-bricks/components/text' -import { DetailsScreen } from '@holi/core/layouts/DetailsScreen' + import { Screen } from '@holi/core/components/Screen' import { Stack } from 'holi-bricks/components/stack' import HeaderBackButton from '@holi/core/navigation/components/HeaderBackButton' @@ -24,6 +23,7 @@ import { useTheme } from '@holi/ui/styles/theme' import HoliModal, { useModalState } from '@holi/ui/components/molecules/HoliModal' import { ButtonTracked } from '@holi/core/components/Trackable' import { TrackingEvent } from '@holi/core/tracking' +import { DetailsScreen } from '@holi/core/layout/DetailsScreen' export type VolunteeringEngagementDetailParams = { engagementId: string @@ -110,11 +110,7 @@ export const VolunteeringEngagementDetail = () => { title={data?.title} infoList={data?.infoList} visibility="public" - description={ - data?.description && ( - <RenderHtml defaultTextProps={{ selectable: true }} source={{ html: data?.description }} contentWidth={0} /> - ) - } + description={data?.description} author={data?.author} chips={data?.chips} // TODO Stefano: Move inside the layout and remove _footer prop diff --git a/holi-bricks/components/avatar/Avatar.stories.tsx b/holi-bricks/components/avatar/Avatar.stories.tsx index 38d542d3c83b714a2a00dd7e33493252414c1c69..a0c71864462f8f5052541aca71069ff034b13b66 100644 --- a/holi-bricks/components/avatar/Avatar.stories.tsx +++ b/holi-bricks/components/avatar/Avatar.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react' import { Avatar } from 'holi-bricks/components/avatar/Avatar' -import React from 'react' import { Chat3 } from '@holi/icons/src/generated' @@ -36,9 +35,6 @@ export const AvatarWithInitials: Story = { border: 'strong', shape: 'circle', }, - render: function Render(args) { - return <Avatar {...args} /> - }, } export const AvatarWithIcon: Story = { @@ -52,9 +48,6 @@ export const AvatarWithIcon: Story = { size: 'md', icon: Chat3, }, - render: function Render(args) { - return <Avatar {...args} /> - }, } export const AvatarWithImage: Story = { @@ -68,9 +61,6 @@ export const AvatarWithImage: Story = { size: 'md', source: 'https://picsum.photos/id/64/100/100', }, - render: function Render(args) { - return <Avatar {...args} /> - }, } export default meta diff --git a/holi-bricks/components/avatar/AvatarPile.stories.tsx b/holi-bricks/components/avatar/AvatarPile.stories.tsx new file mode 100644 index 0000000000000000000000000000000000000000..748c300e02b0437dcdaf74e28c09529660a2819e --- /dev/null +++ b/holi-bricks/components/avatar/AvatarPile.stories.tsx @@ -0,0 +1,116 @@ +import type { Meta, StoryObj } from '@storybook/react' +import React from 'react' + +import { HandHeartThinFilledRaised } from '@holi/icons/src/generated' +import AvatarPile from 'holi-bricks/components/avatar/AvatarPile' +import { View } from 'react-native' + +const availableShapes = ['circle', 'square'] as const +const availableBorders = ['strong', 'light'] as const + +const meta: Meta<typeof AvatarPile> = { + title: 'Components/Avatar/AvatarPile', + component: AvatarPile, + args: { + users: [ + { + id: '1', + identity: 'user one', + avatarDefaultColor: 'blue', + fullName: 'User One', + avatar: 'https://picsum.photos/id/64/100/100', + avatarLabel: 'User One', + }, + { + id: '2', + identity: 'user two', + avatarDefaultColor: 'red', + fullName: 'User Two', + avatarLabel: 'User Two', + }, + { + id: '3', + identity: 'user three', + avatarDefaultColor: 'green', + fullName: 'User Three', + avatarLabel: 'User Three', + }, + ], + size: 'md', + testID: 'holi-user-avatar-pile', + border: 'light', + shape: 'circle', + }, +} + +type Story = StoryObj<typeof AvatarPile> + +export const Default: Story = { + argTypes: {}, + args: { + users: [ + { + id: '1', + identity: 'user one', + avatarDefaultColor: 'blue', + fullName: 'User One', + avatar: 'https://picsum.photos/id/64/100/100', + avatarLabel: 'User One', + }, + { + id: '2', + identity: 'user two', + avatarDefaultColor: 'red', + fullName: 'User Two', + avatarLabel: 'User Two', + }, + { + id: '3', + identity: 'user three', + avatarDefaultColor: 'green', + fullName: 'User Three', + avatarLabel: 'User Three', + }, + ], + size: 'md', + testID: 'holi-user-avatar-pile', + border: 'strong', + shape: 'circle', + }, +} + +export const ByShape: Story = { + render: function Render(args) { + return ( + <> + {availableShapes.map((shape) => ( + <View key={shape} style={{ margin: 6 }}> + <AvatarPile {...args} shape={shape} /> + </View> + ))} + </> + ) + }, +} + +export const ByBorder: Story = { + render: function Render(args) { + return ( + <> + {availableBorders.map((border) => ( + <View key={border} style={{ margin: 6 }}> + <AvatarPile {...args} border={border} /> + </View> + ))} + </> + ) + }, +} + +export const WithIcon: Story = { + render: function Render(args) { + return <AvatarPile {...args} icon={HandHeartThinFilledRaised} /> + }, +} + +export default meta diff --git a/holi-bricks/components/avatar/AvatarPile.tsx b/holi-bricks/components/avatar/AvatarPile.tsx index 8f603fb6c8a2b743ac53acf793dabd3b9edc9d4b..39c1b3b739303378f433ee8b6a2138c12936db13 100644 --- a/holi-bricks/components/avatar/AvatarPile.tsx +++ b/holi-bricks/components/avatar/AvatarPile.tsx @@ -8,7 +8,7 @@ import { createStyleSheet } from 'holi-bricks/utils' // eslint-disable-next-line no-restricted-imports import type { User } from '@holi/core/domain/shared/types' -interface AvatarPileProps extends Omit<AvatarProps, 'initials'> { +interface AvatarPileProps extends Omit<AvatarProps, 'initials' | 'label' | 'imgSrc' | 'initials' | 'imgPlaceholder'> { users: User[] } @@ -18,6 +18,7 @@ const AvatarPile = ({ testID = 'holi-user-avatar-pile', border, shape, + icon, }: React.PropsWithChildren<AvatarPileProps>) => { const { styles } = useStyles(stylesheet) return ( @@ -33,8 +34,9 @@ const AvatarPile = ({ label={user.fullName} source={user.avatar} initials={user.avatarLabel} - testID="pile-avatar" + testID={'pile-avatar'} imgPlaceholder={user.avatarBlurhash} + icon={icon} /> </View> ) diff --git a/holi-bricks/components/button/Button.stories.tsx b/holi-bricks/components/button/Button.stories.tsx index e7e046a8663768a3b550f145bed0df91cbd6a0c4..d1a604208beee02e10c7b9bbae2fc8a1e07ccf09 100644 --- a/holi-bricks/components/button/Button.stories.tsx +++ b/holi-bricks/components/button/Button.stories.tsx @@ -42,7 +42,7 @@ const meta: Meta<typeof Button> = { type Story = StoryObj<typeof Button> -export const Playground: Story = { +export const Default: Story = { argTypes: { label: { description: 'Button text', required: false }, variant: { control: 'select', options: availableVariants }, diff --git a/holi-bricks/components/button/Button.tsx b/holi-bricks/components/button/Button.tsx index 6ff721e27a5c28cc9f913b3728b208633653b530..fb9fbdb5c9c6272e57ccbcfbc49c7bdf7dc14e79 100644 --- a/holi-bricks/components/button/Button.tsx +++ b/holi-bricks/components/button/Button.tsx @@ -136,6 +136,7 @@ const stylesheet = createStyleSheet((theme) => ({ return { ...buttonBaseStyle, width: inline ? 'auto' : '100%', + alignSelf: inline ? 'center' : 'auto', variants: { variant: { primary: getButtonVariantStyle({ variant: 'primary', theme, pressed, hovered }), diff --git a/holi-bricks/components/button/ButtonIcon.stories.tsx b/holi-bricks/components/button/ButtonIcon.stories.tsx index 0c6d1d9a2480220a50c5c4b38153fee97508ba97..cea817a034ad262d35518945de691d800cf6b031 100644 --- a/holi-bricks/components/button/ButtonIcon.stories.tsx +++ b/holi-bricks/components/button/ButtonIcon.stories.tsx @@ -38,7 +38,7 @@ const meta: Meta<typeof ButtonIcon> = { type Story = StoryObj<typeof ButtonIcon> -export const Playground: Story = { +export const Default: Story = { argTypes: { variant: { control: 'select', options: availableVariants }, size: { control: 'select', options: availableSizes }, diff --git a/holi-bricks/components/card/CompactCard.stories.tsx b/holi-bricks/components/card/CompactCard.stories.tsx new file mode 100644 index 0000000000000000000000000000000000000000..ddd0b73d2fc1b14b294bb1148835e6529ffec9e9 --- /dev/null +++ b/holi-bricks/components/card/CompactCard.stories.tsx @@ -0,0 +1,50 @@ +/* eslint-disable no-restricted-imports */ +import type { Meta, StoryObj } from '@storybook/react' +import React from 'react' + +import { CompactCard } from 'holi-bricks/components/card/CompactCard' +import { MapPin2Filled } from '@holi/icons/src/generated' +import { ChipLabel } from 'holi-bricks/components/chips' + +const disabledProps = [ + 'aria-hidden', + 'aria-label', + 'aria-labelledby', + 'aria-disabled', + 'topLabelIcon', + 'bottomLabelIcon', +] + +const meta: Meta<typeof CompactCard> = { + title: 'Components/CompactCard', + component: CompactCard, + argTypes: { + title: { description: 'Title of the card', required: true }, + subtitle: { description: 'Subtitle of the card', required: false }, + topLabel: { description: 'Top label of the card', required: false }, + chips: { description: 'Chips of the card', required: false }, + ...Object.fromEntries(disabledProps.map((prop) => [prop, { table: { disable: true } }])), + }, +} + +type Story = StoryObj<typeof CompactCard> + +export const Default: Story = { + args: { + title: 'Title', + topLabel: 'Top label', + subtitle: 'Subtitle', + maxWidth: 300, + startDate: new Date().toISOString(), + chips: [ + () => ( + <ChipLabel color="mono" size="sm"> + chip label + </ChipLabel> + ), + ], + topLabelIcon: MapPin2Filled, + }, +} + +export default meta diff --git a/holi-bricks/components/card/CompactCard.tsx b/holi-bricks/components/card/CompactCard.tsx new file mode 100644 index 0000000000000000000000000000000000000000..937ed178bbe88d85742c4a7f4652eae74bbe2fe3 --- /dev/null +++ b/holi-bricks/components/card/CompactCard.tsx @@ -0,0 +1,156 @@ +import { HoliIcon } from '@holi/icons/src/HoliIcon' +/* eslint-disable no-restricted-imports */ +import HoliCalendarIcon from '@holi/ui/components/molecules/HoliCalendarIcon' +import type { ChipLabel } from 'holi-bricks/components/chips' +import { TextLink } from 'holi-bricks/components/text' +import { BorderRadius } from 'holi-bricks/tokens' +import { View } from 'react-native' +import { createStyleSheet, useStyles } from 'react-native-unistyles' +import { useTranslation } from 'react-i18next' +import type { HoliIconType } from '@holi/icons/src/HoliIconType' +import React, { useRef, useState } from 'react' +import { Image, type ImageSource } from 'holi-bricks/components/image' +import { Stack } from 'holi-bricks/components/stack' +import { Text as RNText } from 'react-native' + +export interface CompactCardProps { + title: string + subtitle?: string + topLabel?: string + topLabelIcon?: HoliIconType + chips?: Array<typeof ChipLabel> + imageSrc?: ImageSource + startDate?: string + maxWidth?: number +} + +export const CompactCard = ({ + title, + topLabel, + subtitle, + chips, + topLabelIcon, + imageSrc, + startDate, + maxWidth, +}: CompactCardProps) => { + const { styles } = useStyles(stylesheet) + const { t } = useTranslation() + + const date = startDate ? new Date(startDate) : undefined + + const [imageError, setImageError] = useState(false) + const handleImageError = () => { + setImageError(true) + } + + const placeholderImages = [ + require('@holi/ui/assets/img/events/thumbnail-green.svg'), + require('@holi/ui/assets/img/events/thumbnail-blue.svg'), + require('@holi/ui/assets/img/events/thumbnail-purple.svg'), + require('@holi/ui/assets/img/events/thumbnail-yellow.svg'), + require('@holi/ui/assets/img/events/thumbnail-green-full.svg'), + require('@holi/ui/assets/img/events/thumbnail-blue-full.svg'), + require('@holi/ui/assets/img/events/thumbnail-purple-full.svg'), + require('@holi/ui/assets/img/events/thumbnail-yellow-full.svg'), + ] + const randomPlaceholderImage = useRef(placeholderImages[Math.floor(Math.random() * placeholderImages.length)]).current + return ( + <View style={styles.cardContainer(maxWidth)}> + <Stack borderWidth={1} borderColor="support" borderStyle="solid" borderRadius="md"> + <Stack direction="row" padding="3xs" backgroundColor="container" borderRadius="md" gap="4xs"> + {/* Card Cover */} + <Stack alignItems="center" justifyContent="center"> + {/* cover image */} + <View style={styles.image}> + <Image + source={!imageError && imageSrc ? imageSrc : randomPlaceholderImage} + height={120} + width={90} + alt={t('act.events.thumbnail.label')} + onError={handleImageError} + whiteOverlay + /> + </View> + + {/* calendar icon */} + {date && ( + <View style={[styles.calendarIconContainer, { transform: [{ translateX: -20 }, { translateY: -20 }] }]}> + <HoliCalendarIcon day={date.getDate()} month={date.getMonth() + 1} size="small" colored={false} /> + </View> + )} + </Stack> + + {/* Card Body */} + <Stack gap="3xs" padding="4xs" flexShrink={1}> + <Stack gap="3xs" padding={{ left: '5xs' }}> + <Stack direction="row" alignItems="center" gap="4xs"> + {topLabelIcon && <HoliIcon icon={topLabelIcon} color={styles.topIconColor.color} size={16} />} + + {/* <Text ellipsizeMode="tail" size="xs" numberOfLines={1} color="support"> + {topLabel} + </Text> */} + <RNText numberOfLines={1} ellipsizeMode="tail" style={styles.labelText}> + {topLabel} + </RNText> + </Stack> + + <Stack gap="4xs"> + <TextLink ellipsizeMode="tail" size="sm" numberOfLines={2}> + {title} + </TextLink> + + {/* <Text ellipsizeMode="tail" size="xs" numberOfLines={1} color="support"> + {subtitle} + </Text> */} + <RNText numberOfLines={1} ellipsizeMode="tail" style={styles.labelText}> + {subtitle} + </RNText> + </Stack> + </Stack> + + <Stack direction="row" wrap="wrap" gap="xxs" flexShrink={2}> + {chips?.map((ChipLabel, index) => ( + <ChipLabel key={index} /> + ))} + </Stack> + </Stack> + </Stack> + </Stack> + </View> + ) +} + +const stylesheet = createStyleSheet((theme) => ({ + topIconColor: { + color: theme.colors.fill.support, + }, + bottomIconColor: { + color: theme.colors.fill.default, + }, + image: { + borderRadius: BorderRadius.xs, + borderColor: theme.colors.border.default, + borderStyle: 'solid', + borderWidth: 1, + overflow: 'hidden', + }, + calendarIconContainer: { + position: 'absolute', + top: '50%', + left: '50%', + maxWidth: '100%', + flexDirection: 'row', + alignItems: 'center', + borderRadius: 6, + }, + cardContainer: (maxWidth?: number) => ({ + maxWidth: maxWidth ?? undefined, + }), + labelText: { + lineHeight: 16, + color: theme.colors.fill.support, + fontSize: 13, + letterSpacing: 0.104, + }, +})) diff --git a/holi-bricks/components/chips/ChipAction.stories.tsx b/holi-bricks/components/chips/ChipAction.stories.tsx index c2a0e258286c77700643541444c824ef0bc2c8df..43a02e4bdf1fd73a057cc67d807fd1f294a8554f 100644 --- a/holi-bricks/components/chips/ChipAction.stories.tsx +++ b/holi-bricks/components/chips/ChipAction.stories.tsx @@ -39,7 +39,7 @@ const meta: Meta<typeof ChipAction> = { type Story = StoryObj<typeof ChipAction> -export const Playground: Story = { +export const Default: Story = { argTypes: { color: { control: 'select', options: availableColors }, size: { control: 'select', options: availableSizes }, diff --git a/holi-bricks/components/chips/ChipLabel.stories.tsx b/holi-bricks/components/chips/ChipLabel.stories.tsx index dd3ec18d45776d70801a522713184e55e713ebc7..fb6517660c0eb9ed6b2c0d9001dbe32c9093ff5a 100644 --- a/holi-bricks/components/chips/ChipLabel.stories.tsx +++ b/holi-bricks/components/chips/ChipLabel.stories.tsx @@ -34,7 +34,7 @@ const meta: Meta<typeof ChipLabel> = { type Story = StoryObj<typeof ChipLabel> -export const Playground: Story = { +export const Default: Story = { argTypes: { color: { control: 'select', options: availableColors }, size: { control: 'select', options: availableSizes }, diff --git a/holi-bricks/components/chips/ChipSelect.stories.tsx b/holi-bricks/components/chips/ChipSelect.stories.tsx index 2a7d827e3adbe0c2eed0f08e00296978f1a1982f..6174d54970a34ae3336b10740ab644540a367736 100644 --- a/holi-bricks/components/chips/ChipSelect.stories.tsx +++ b/holi-bricks/components/chips/ChipSelect.stories.tsx @@ -50,7 +50,7 @@ const meta: Meta<typeof ChipSelect> = { type Story = StoryObj<typeof ChipSelect> -export const Playground: Story = { +export const Default: Story = { argTypes: { selectedColor: { control: 'select', options: availableColors }, size: { control: 'select', options: availableSizes }, diff --git a/holi-bricks/components/html-renderer/html-renderer.tsx b/holi-bricks/components/html-renderer/html-renderer.tsx new file mode 100644 index 0000000000000000000000000000000000000000..914bc8cd574a9047a12fce69bcd37ad155c45855 --- /dev/null +++ b/holi-bricks/components/html-renderer/html-renderer.tsx @@ -0,0 +1,53 @@ +import { fontFamilies } from 'holi-bricks/components/text/fontFamilies' +import { useStyles } from 'holi-bricks/hooks' +import type React from 'react' +import { useWindowDimensions } from 'react-native' +import RenderHTML from 'react-native-render-html' + +export interface HtmlRendererProps { + content: string + contentWidth?: number +} + +export const HtmlRenderer: React.FC<HtmlRendererProps> = ({ content, contentWidth }) => { + const { theme } = useStyles() + const { width } = useWindowDimensions() + if (!content) return null + const commonTextStyle = { + color: theme.colors.fill.main, + fontFamily: fontFamilies.regular, + fontSize: 16, + lineHeight: 16 * 1.48, + letterSpacing: -0.128, + } + + return ( + <RenderHTML + contentWidth={contentWidth || width} + source={{ html: content }} + systemFonts={[fontFamilies.regular, fontFamilies.bold]} + tagsStyles={{ + div: { + ...commonTextStyle, + }, + span: { + ...commonTextStyle, + }, + a: { + ...commonTextStyle, + fontFamily: fontFamilies.bold, + fontVariant: ['lining-nums', 'tabular-nums'], + fontWeight: '500', + textDecorationColor: theme.colors.fill.main, + }, + p: { + ...commonTextStyle, + fontVariant: ['lining-nums', 'tabular-nums'], + fontWeight: '400', + margin: 0, + }, + }} + enableExperimentalMarginCollapsing + /> + ) +} diff --git a/holi-bricks/components/html-renderer/index.ts b/holi-bricks/components/html-renderer/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..7c3a13c5fcdb0727ca3f05f609826db41b239be7 --- /dev/null +++ b/holi-bricks/components/html-renderer/index.ts @@ -0,0 +1 @@ +export { HtmlRenderer } from './html-renderer' diff --git a/holi-bricks/components/image/Image.tsx b/holi-bricks/components/image/Image.tsx index 4165ca905010f3b4132470ba33ece69ead6b93a0..4b9420e0b0a4dab5a4d201b7639ea4be4aa6a4e0 100644 --- a/holi-bricks/components/image/Image.tsx +++ b/holi-bricks/components/image/Image.tsx @@ -1,10 +1,12 @@ import type React from 'react' import { useState } from 'react' -import { Image as RNImage } from 'react-native' +import { Image as RNImage, View } from 'react-native' import { Image as ExpoImage } from 'expo-image' //import { WithLocalSvg } from 'react-native-svg/css' import { accessibilityProps } from 'holi-bricks/accessibility' import type { ImageProps } from 'holi-bricks/components/image/type' +import { createStyleSheet } from 'holi-bricks/utils' +import { useStyles } from 'holi-bricks/hooks' import { isRemoteSource, setScalingParams } from 'holi-bricks/components/image/helpers' const isLocalSvg = (source: number) => { @@ -28,12 +30,14 @@ export const Image: React.FC<ImageProps> = ({ fallbackSource, blurhash, alt, + whiteOverlay: overlay, ...otherProps }) => { const [hasError, setHasError] = useState(false) const transformedSource = setScalingParams(source, width, height) const isRemote = isRemoteSource(source) const localSvg = typeof source === 'number' && isLocalSvg(source) + const { styles } = useStyles(stylesheet) if (!source) return null @@ -55,25 +59,39 @@ export const Image: React.FC<ImageProps> = ({ } return ( - <ExpoImage - source={hasError && fallbackSource ? fallbackSource : transformedSource} - alt={alt} - role="img" - accessibilityLabel={alt} - accessibilityRole={otherProps?.['aria-hidden'] === true ? 'none' : 'image'} - accessible={otherProps?.['aria-hidden'] === true} - placeholder={isRemote ? blurhash : undefined} - style={[{ width, height }]} - contentFit={resizeMode} - onError={() => { - setHasError(true) - // eslint-disable-next-line no-console - console.warn(`[Image] Failed to load image: ${source}`) - if (onError) onError() - }} - aria-label={alt} - onLoadEnd={onLoadEnd} - {...accessibilityProps(otherProps)} - /> + <> + <ExpoImage + source={hasError && fallbackSource ? fallbackSource : transformedSource} + alt={alt} + role="img" + accessibilityLabel={alt} + accessibilityRole={otherProps?.['aria-hidden'] === true ? 'none' : 'image'} + accessible={otherProps?.['aria-hidden'] === true} + placeholder={isRemote ? blurhash : undefined} + style={[{ width, height }]} + contentFit={resizeMode} + onError={() => { + setHasError(true) + // eslint-disable-next-line no-console + console.warn(`[Image] Failed to load image: ${source}`) + if (onError) onError() + }} + aria-label={alt} + onLoadEnd={onLoadEnd} + {...accessibilityProps(otherProps)} + /> + {overlay && <View style={styles.overlay} />} + </> ) } + +const stylesheet = createStyleSheet({ + overlay: { + position: 'absolute', + top: 0, + left: 0, + width: '100%', + height: '100%', + backgroundColor: 'rgba(255, 255, 255, 0.2)', + }, +}) diff --git a/holi-bricks/components/image/Image.web.tsx b/holi-bricks/components/image/Image.web.tsx index 09ab4f5d44479f8c86c273a8204cfc0d7c130e78..9be9ad7440da35b4616b50783a59e8c9a183454d 100644 --- a/holi-bricks/components/image/Image.web.tsx +++ b/holi-bricks/components/image/Image.web.tsx @@ -3,7 +3,14 @@ import type React from 'react' import { useState } from 'react' import NextImage from 'next/image' import { accessibilityProps } from 'holi-bricks/accessibility' -import { isRemoteSource, setScalingParams } from 'holi-bricks/components/image/helpers' +import { setScalingParams } from 'holi-bricks/components/image/helpers' +import { createStyleSheet } from 'holi-bricks/utils' +import { useStyles } from 'holi-bricks/hooks' +import { View } from 'react-native' + +export const isRemoteSource = (source: string): source is string => { + return /^(https?:)?\/\//i.test(source) +} export const Image: React.FC<ImageProps> = ({ source, @@ -15,30 +22,46 @@ export const Image: React.FC<ImageProps> = ({ onLoadEnd, fallbackSource, blurhash, + whiteOverlay: overlay, ...otherProps }) => { const [hasError, setHasError] = useState(false) const isRemote = isRemoteSource(source as string) const transformedSource = (isRemote ? setScalingParams(source as string, width, height) : source) as string + const { styles } = useStyles(stylesheet) return ( - <NextImage - src={hasError && fallbackSource ? (fallbackSource as string) : transformedSource} - alt={alt} - role="img" - aria-label={alt} - blurDataURL={isRemote ? blurhash : undefined} - width={width} - height={height} - style={{ objectFit: resizeMode }} - onError={() => { - setHasError(true) - // eslint-disable-next-line no-console - console.warn(`[Image] Failed to load image: ${transformedSource}`) - if (onError) onError() - }} - onLoad={onLoadEnd} - {...accessibilityProps(otherProps)} - /> + <> + <NextImage + src={hasError && fallbackSource ? (fallbackSource as string) : transformedSource} + alt={alt} + role="img" + aria-label={alt} + blurDataURL={isRemote ? blurhash : undefined} + width={width} + height={height} + style={{ objectFit: resizeMode }} + onError={() => { + setHasError(true) + // eslint-disable-next-line no-console + console.warn(`[Image] Failed to load image: ${transformedSource}`) + if (onError) onError() + }} + onLoad={onLoadEnd} + {...accessibilityProps(otherProps)} + /> + {overlay && <View style={styles.overlay} />} + </> ) } + +const stylesheet = createStyleSheet({ + overlay: { + position: 'absolute', + top: 0, + left: 0, + width: '100%', + height: '100%', + backgroundColor: 'rgba(255, 255, 255, 0.2)', + }, +}) diff --git a/holi-bricks/components/image/type.ts b/holi-bricks/components/image/type.ts index 322c58b0c680dccedd0932e749cede7250284b7b..861a3196961b7568e74efae6da917596121f5019 100644 --- a/holi-bricks/components/image/type.ts +++ b/holi-bricks/components/image/type.ts @@ -13,4 +13,5 @@ export interface ImageProps extends AccessibilityProps { fallbackSource?: string | number blurhash?: string alt: string + whiteOverlay?: boolean } diff --git a/holi-bricks/components/stack/Stack.tsx b/holi-bricks/components/stack/Stack.tsx index 16203795775d091bd0efd6fefdca16424843e84a..a598489b7b30f0f9599ee2686748baa58169646f 100644 --- a/holi-bricks/components/stack/Stack.tsx +++ b/holi-bricks/components/stack/Stack.tsx @@ -19,6 +19,9 @@ interface StackProps extends React.PropsWithChildren { padding?: SizeToEdge margin?: SizeToEdge borderRadius?: RadiusToEdge + borderWidth?: number + borderStyle?: 'solid' | 'dotted' | 'dashed' + borderColor?: BorderColors flex?: number shouldRender?: boolean onPress?: () => void @@ -28,9 +31,12 @@ interface StackProps extends React.PropsWithChildren { testID?: string maxWidth?: BreakpointsSize maxHeight?: DimensionValue + minWidth?: DimensionValue + minHeight?: DimensionValue height?: DimensionValue width?: DimensionValue wrap?: FlexStyle['flexWrap'] + flexShrink?: FlexStyle['flexShrink'] } export const Stack = ({ children, shouldRender = true, accessibilityRole = 'none', ...otherProps }: StackProps) => { @@ -55,6 +61,7 @@ export const Stack = ({ children, shouldRender = true, accessibilityRole = 'none const containerStylesheet = createStyleSheet((theme) => ({ container: (props: Omit<StackProps, 'children'>) => ({ backgroundColor: props?.backgroundColor ? theme.colors.bg[props?.backgroundColor] : undefined, + borderColor: props?.borderColor ? theme.colors.border[props?.borderColor] : undefined, gap: props?.gap ? Spacing[props?.gap] : 0, display: 'flex', height: props.height, @@ -64,11 +71,16 @@ const containerStylesheet = createStyleSheet((theme) => ({ justifyContent: props?.justifyContent || 'flex-start', textAlign: props.textAlign || 'left', flex: props.flex || undefined, + flexShrink: props?.flexShrink, alignItems: props?.alignItems || undefined, maxWidth: props?.maxWidth ? breakpoints[props?.maxWidth] : undefined, maxHeight: props?.maxHeight, + minWidth: props?.minWidth, + minHeight: props?.minHeight, alignSelf: props?.alignSelf, flexWrap: props?.wrap, + borderWidth: props?.borderWidth, + borderStyle: props?.borderStyle, ...makePadding(props?.padding), ...makeMargin(props?.margin), ...makeRadius(props?.borderRadius), diff --git a/holi-bricks/main.d.ts b/holi-bricks/main.d.ts index b144ea4da016b9ef20f73786ee23a39bb71fe864..a8a0d32f478b2f7c836f2ce137ede202da50f51e 100644 --- a/holi-bricks/main.d.ts +++ b/holi-bricks/main.d.ts @@ -22,6 +22,7 @@ declare global { } type BgColors = 'container' | 'page' | 'selected' | 'disabled' + type BorderColors = 'main' | 'support' | 'default' | 'quaternary' } type Themes = { diff --git a/holi-bricks/package.json b/holi-bricks/package.json index 680dcb911b868cf7156bc97b5170fb511c805798..69ddde32b6e79bfb5c2b7cd202051afa03847e2b 100755 --- a/holi-bricks/package.json +++ b/holi-bricks/package.json @@ -25,6 +25,7 @@ "react": "18.2.0", "react-dom": "18.2.0", "react-native": "0.74.7", + "react-native-render-html": "^6.3.4", "react-native-svg": "15.2.0", "react-native-unistyles": "^2.10.0", "react-native-web": "^0.19.12" @@ -75,6 +76,7 @@ "react-native": "0.74.7", "react-native-gesture-handler": "~2.16.1", "react-native-reanimated": "~3.10.1", + "react-native-render-html": "^6.3.4", "react-native-safe-area-context": "4.10.9", "react-native-svg": "15.2.0", "react-native-unistyles": "^2.11.0", diff --git a/holi-bricks/themes/dark.ts b/holi-bricks/themes/dark.ts index a8a715902282becaabbf3360d43ded1a93264d6c..5022243dd9d2c8bc6bec4bde4a603419f22bad57 100644 --- a/holi-bricks/themes/dark.ts +++ b/holi-bricks/themes/dark.ts @@ -32,6 +32,8 @@ export const darkTheme = { decorative: { black: mono[800], white: mono[100], + greyLight: mono[300], + greyDark: mono[600], yellowLight: yellow[300], yellowDefault: yellow[400], yellowDark: yellow[600], diff --git a/holi-bricks/themes/light.ts b/holi-bricks/themes/light.ts index 351e3defbb7719516295f1cc0dcb27bf6476edce..b83f7059e82b076f15962ed853cf6f4d12b04bce 100644 --- a/holi-bricks/themes/light.ts +++ b/holi-bricks/themes/light.ts @@ -32,6 +32,8 @@ export const lightTheme = { decorative: { black: mono[800], white: mono[100], + greyLight: mono[300], + greyDark: mono[600], yellowLight: yellow[300], yellowDefault: yellow[400], yellowDark: yellow[600], diff --git a/holi-bricks/tokens/dimensions/spacing.ts b/holi-bricks/tokens/dimensions/spacing.ts index 63bb0aa6cd4d18d6d303d1876405742902ba976c..654074fce1f9d04e2a5ffba95ed2ff08600010da 100644 --- a/holi-bricks/tokens/dimensions/spacing.ts +++ b/holi-bricks/tokens/dimensions/spacing.ts @@ -1,4 +1,5 @@ export const Spacing = { + '5xs': 2, '4xs': 4, '3xs': 8, xxs: 12, diff --git a/packages/api/graphql/client.ts b/packages/api/graphql/client.ts index bb4e299c70e4995770e453cae850a100f2dc05a8..a8d1eb9f0a4b17427294a183654d90a7566f02a7 100644 --- a/packages/api/graphql/client.ts +++ b/packages/api/graphql/client.ts @@ -8,7 +8,7 @@ import { holiApiUrl } from '@holi/api/config' import { isSSR } from '@holi/core/helpers/isSSR' import authorizationHeaderLink from './authorizationHeaderLink' -import { alwaysReplacePolicy, pagedPolicy } from './cachePolicies' +import { alwaysReplacePolicy, keyArgsWithoutLimitAndOffset, pagedPolicy } from './cachePolicies' import createLocaleHeaderLink from './createLocaleHeaderLink' import errorLink from './errorLink' @@ -88,6 +88,9 @@ const uploadCapableTerminatingLink: ApolloLink = createUploadLink({ export const createCache = () => new InMemoryCache({ typePolicies: { + AppEvents_Event: { + keyFields: ['id'], + }, User: { fields: { interests: alwaysReplacePolicy, @@ -134,8 +137,9 @@ export const createCache = () => }, Query: { fields: { - // here, we can specify e.g. pagination behavior, depending on the - // query, see https://www.apollographql.com/docs/react/pagination/overview + appEvents_events: pagedPolicy((args: Record<string, unknown> | null) => { + return keyArgsWithoutLimitAndOffset(args) + }), appointments: pagedPolicy(), lastInsights: pagedPolicy(), appDonations_projects: pagedPolicy(), diff --git a/packages/api/graphql/graphql-codegen.ts b/packages/api/graphql/graphql-codegen.ts index 1155ff0db970965a3aebfe83f3b4296423198302..4f67c844cce6653488f8601806c4fe3921ba370b 100644 --- a/packages/api/graphql/graphql-codegen.ts +++ b/packages/api/graphql/graphql-codegen.ts @@ -130,10 +130,15 @@ export type AppEvents_Event = { export type AppEvents_EventDetails = { __typename?: 'AppEvents_EventDetails' description: Scalars['String']['output'] - externalLink: Scalars['String']['output'] + externalLink?: Maybe<Scalars['String']['output']> meetingLink?: Maybe<Scalars['String']['output']> } +export type AppEvents_EventResponse = { + __typename?: 'AppEvents_EventResponse' + data?: Maybe<AppEvents_Event> +} + export type AppEvents_EventsResponse = { __typename?: 'AppEvents_EventsResponse' data?: Maybe<Array<Maybe<AppEvents_Event>>> @@ -148,6 +153,11 @@ export type AppEvents_Location = { zipCode?: Maybe<Scalars['String']['output']> } +export type AppEvents_NearbyEventsResponse = { + __typename?: 'AppEvents_NearbyEventsResponse' + data?: Maybe<Array<Maybe<AppEvents_Event>>> +} + export enum AppGoodNews_Category { AnimalRights = 'ANIMAL_RIGHTS', Climate = 'CLIMATE', @@ -274,7 +284,7 @@ export type AppVolunteering_TrackEngagementViewResponse = { id?: Maybe<Scalars['String']['output']> } -/** Appointment(id, title, slug, invite_only, start_date_time, end_date_time, location, geolocation, location_details, video_call_link, description, thumbnail, thumbnail_blurhash, permission, space, creator, created, modified, is_deleted, deleted_at) */ +/** Appointment(id, title, slug, invite_only, start_date_time, end_date_time, location, geolocation, geolocation_geojson, location_details, video_call_link, description, thumbnail, thumbnail_blurhash, permission, space, creator, created, modified, is_deleted, deleted_at) */ export type Appointment = { __typename?: 'Appointment' creator?: Maybe<User> @@ -630,7 +640,7 @@ export type FeedItemPaged = { totalResults: Scalars['Int']['output'] } -/** FeedPost(id, title, slug, description, visibility, topics_v2, category, creator, created_at, image, image_blurhash, link_preview, language_code, location, geolocation, priority_duration) */ +/** FeedPost(id, title, slug, description, visibility, topics_v2, category, creator, created_at, image, image_blurhash, link_preview, language_code, location, geolocation, geolocation_geojson, priority_duration) */ export type FeedPost = { __typename?: 'FeedPost' category?: Maybe<FeedPostCategory> @@ -657,7 +667,7 @@ export type FeedPost = { visibility: VisibilityLevel } -/** FeedPost(id, title, slug, description, visibility, topics_v2, category, creator, created_at, image, image_blurhash, link_preview, language_code, location, geolocation, priority_duration) */ +/** FeedPost(id, title, slug, description, visibility, topics_v2, category, creator, created_at, image, image_blurhash, link_preview, language_code, location, geolocation, geolocation_geojson, priority_duration) */ export type FeedPostCommentersArgs = { limit?: Scalars['Int']['input'] offset?: Scalars['Int']['input'] @@ -875,7 +885,7 @@ export type LinkPreview = { url: Scalars['String']['output'] } -/** LocationDetails(id, complete_address, geolocation, city, state, country) */ +/** LocationDetails(id, complete_address, geolocation, geolocation_geojson, city, state, country) */ export type LocationDetails = { __typename?: 'LocationDetails' city?: Maybe<Scalars['String']['output']> @@ -1497,7 +1507,9 @@ export type Query = { allPosts: GenericPostPaged appDonations_project: AppDonations_Project appDonations_projects: AppDonations_ProjectsResponse + appEvents_event: AppEvents_EventResponse appEvents_events: AppEvents_EventsResponse + appEvents_nearbyEvents: AppEvents_NearbyEventsResponse appGoodNews_articles?: Maybe<AppGoodNews_GoodNewsArticlesQueryResponse> appVolunteering_engagement?: Maybe<AppVolunteering_Engagement> /** @@ -1585,9 +1597,19 @@ export type QueryAppDonations_ProjectsArgs = { offset?: InputMaybe<Scalars['Int']['input']> } +export type QueryAppEvents_EventArgs = { + id: Scalars['String']['input'] +} + export type QueryAppEvents_EventsArgs = { limit?: InputMaybe<Scalars['Int']['input']> - location?: InputMaybe<Scalars['String']['input']> + localOnly?: InputMaybe<Scalars['Boolean']['input']> + offset?: InputMaybe<Scalars['Int']['input']> +} + +export type QueryAppEvents_NearbyEventsArgs = { + geolocationId?: InputMaybe<Scalars['ID']['input']> + limit?: InputMaybe<Scalars['Int']['input']> offset?: InputMaybe<Scalars['Int']['input']> } @@ -1973,7 +1995,7 @@ export type SkillPaged = { totalResults: Scalars['Int']['output'] } -/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, contact_description, contact_email, contact_phone) */ +/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, geolocation_geojson, contact_description, contact_email, contact_phone) */ export type Space = { __typename?: 'Space' appointments: AppointmentPaged @@ -2017,38 +2039,38 @@ export type Space = { topicsV2: Array<Scalars['String']['output']> } -/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, contact_description, contact_email, contact_phone) */ +/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, geolocation_geojson, contact_description, contact_email, contact_phone) */ export type SpaceAppointmentsArgs = { limit?: Scalars['Int']['input'] offset?: Scalars['Int']['input'] } -/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, contact_description, contact_email, contact_phone) */ +/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, geolocation_geojson, contact_description, contact_email, contact_phone) */ export type SpaceChildSpacesArgs = { geolocation?: InputMaybe<Scalars['GeoJSON']['input']> limit?: Scalars['Int']['input'] offset?: Scalars['Int']['input'] } -/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, contact_description, contact_email, contact_phone) */ +/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, geolocation_geojson, contact_description, contact_email, contact_phone) */ export type SpaceInvitesArgs = { limit?: Scalars['Int']['input'] offset?: Scalars['Int']['input'] } -/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, contact_description, contact_email, contact_phone) */ +/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, geolocation_geojson, contact_description, contact_email, contact_phone) */ export type SpaceMembersArgs = { limit?: Scalars['Int']['input'] offset?: Scalars['Int']['input'] } -/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, contact_description, contact_email, contact_phone) */ +/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, geolocation_geojson, contact_description, contact_email, contact_phone) */ export type SpaceMembershipRequestsArgs = { limit?: Scalars['Int']['input'] offset?: Scalars['Int']['input'] } -/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, contact_description, contact_email, contact_phone) */ +/** Community(id, creator, name, title, description, rules, avatar, avatar_blurhash, cover, cover_blurhash, created, type, color, user_adjective, users_adjective, invites_enabled, is_deleted, location, topics_v2, geolocation, geolocation_geojson, contact_description, contact_email, contact_phone) */ export type SpacePostsArgs = { limit?: Scalars['Int']['input'] offset?: Scalars['Int']['input'] @@ -2129,7 +2151,7 @@ export enum StatusType { Upcoming = 'UPCOMING', } -/** Task(id, name, description, community, creator, created, slots_available, slots_taken, visibility, location_type, location, geolocation, regularity, skills_v2, thumbnail, thumbnail_blurhash, contact_email, contact_phone, deleted_at) */ +/** Task(id, name, description, community, creator, created, slots_available, slots_taken, visibility, location_type, location, geolocation, geolocation_geojson, regularity, skills_v2, thumbnail, thumbnail_blurhash, contact_email, contact_phone, deleted_at) */ export type Task = { __typename?: 'Task' contactEmail: Scalars['String']['output'] @@ -2590,6 +2612,130 @@ export type AuthenticatedUserQuery = { } } +export type GetEventByIdQueryVariables = Exact<{ + id: Scalars['String']['input'] +}> + +export type GetEventByIdQuery = { + __typename?: 'Query' + appEvents_event: { + __typename?: 'AppEvents_EventResponse' + data?: { + __typename?: 'AppEvents_Event' + id: string + title: string + organisationName: string + startDate?: string + endDate?: string + isRemote: boolean + imageUrl: string + location?: { + __typename?: 'AppEvents_Location' + street?: string + streetNo?: string + city?: string + zipCode?: string + } + eventDetails: { + __typename?: 'AppEvents_EventDetails' + description: string + externalLink?: string + meetingLink?: string + } + } + } +} + +export type AllEventsQueryVariables = Exact<{ + offset?: InputMaybe<Scalars['Int']['input']> + limit?: InputMaybe<Scalars['Int']['input']> + localOnly?: InputMaybe<Scalars['Boolean']['input']> +}> + +export type AllEventsQuery = { + __typename?: 'Query' + appEvents_events: { + __typename?: 'AppEvents_EventsResponse' + totalResults: number + data?: Array<{ + __typename?: 'AppEvents_Event' + id: string + title: string + organisationName: string + startDate?: string + endDate?: string + isRemote: boolean + imageUrl: string + location?: { + __typename?: 'AppEvents_Location' + street?: string + streetNo?: string + city?: string + zipCode?: string + } + eventDetails: { + __typename?: 'AppEvents_EventDetails' + description: string + externalLink?: string + meetingLink?: string + } + }> + } +} + +export type NearbyEventsQueryVariables = Exact<{ + limit?: InputMaybe<Scalars['Int']['input']> + geolocationId?: InputMaybe<Scalars['ID']['input']> +}> + +export type NearbyEventsQuery = { + __typename?: 'Query' + appEvents_nearbyEvents: { + __typename?: 'AppEvents_NearbyEventsResponse' + data?: Array<{ + __typename?: 'AppEvents_Event' + id: string + title: string + organisationName: string + startDate?: string + endDate?: string + isRemote: boolean + imageUrl: string + location?: { + __typename?: 'AppEvents_Location' + street?: string + streetNo?: string + city?: string + zipCode?: string + } + eventDetails: { + __typename?: 'AppEvents_EventDetails' + description: string + externalLink?: string + meetingLink?: string + } + }> + } +} + +export type FullEventFragment = { + __typename?: 'AppEvents_Event' + id: string + title: string + organisationName: string + startDate?: string + endDate?: string + isRemote: boolean + imageUrl: string + location?: { __typename?: 'AppEvents_Location'; street?: string; streetNo?: string; city?: string; zipCode?: string } + eventDetails: { + __typename?: 'AppEvents_EventDetails' + description: string + externalLink?: string + meetingLink?: string + } +} + export type VolunteeringByIdQueryVariables = Exact<{ id: Scalars['String']['input'] }> @@ -2695,6 +2841,28 @@ export const FullUserFragmentDoc = gql` connectionStatusToMyself } ` +export const FullEventFragmentDoc = gql` + fragment FullEvent on AppEvents_Event { + id + title + organisationName + startDate + endDate + location { + street + streetNo + city + zipCode + } + isRemote + imageUrl + eventDetails { + description + externalLink + meetingLink + } +} + ` export const SpaceRecommendationDocument = gql` query SpaceRecommendation($limit: Int) { recommendedSpaces(limit: $limit) { @@ -2920,6 +3088,153 @@ export type AuthenticatedUserQueryHookResult = ReturnType<typeof useAuthenticate export type AuthenticatedUserLazyQueryHookResult = ReturnType<typeof useAuthenticatedUserLazyQuery> export type AuthenticatedUserSuspenseQueryHookResult = ReturnType<typeof useAuthenticatedUserSuspenseQuery> export type AuthenticatedUserQueryResult = Apollo.QueryResult<AuthenticatedUserQuery, AuthenticatedUserQueryVariables> +export const GetEventByIdDocument = gql` + query getEventById($id: String!) { + appEvents_event(id: $id) { + data { + ...FullEvent + } + } +} + ${FullEventFragmentDoc}` + +/** + * __useGetEventByIdQuery__ + * + * To run a query within a React component, call `useGetEventByIdQuery` and pass it any options that fit your needs. + * When your component renders, `useGetEventByIdQuery` returns an object from Apollo Client that contains loading, error, and data properties + * you can use to render your UI. + * + * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; + * + * @example + * const { data, loading, error } = useGetEventByIdQuery({ + * variables: { + * id: // value for 'id' + * }, + * }); + */ +export function useGetEventByIdQuery( + baseOptions: Apollo.QueryHookOptions<GetEventByIdQuery, GetEventByIdQueryVariables> & + ({ variables: GetEventByIdQueryVariables; skip?: boolean } | { skip: boolean }) +) { + const options = { ...defaultOptions, ...baseOptions } + return Apollo.useQuery<GetEventByIdQuery, GetEventByIdQueryVariables>(GetEventByIdDocument, options) +} +export function useGetEventByIdLazyQuery( + baseOptions?: Apollo.LazyQueryHookOptions<GetEventByIdQuery, GetEventByIdQueryVariables> +) { + const options = { ...defaultOptions, ...baseOptions } + return Apollo.useLazyQuery<GetEventByIdQuery, GetEventByIdQueryVariables>(GetEventByIdDocument, options) +} +export function useGetEventByIdSuspenseQuery( + baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<GetEventByIdQuery, GetEventByIdQueryVariables> +) { + const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions } + return Apollo.useSuspenseQuery<GetEventByIdQuery, GetEventByIdQueryVariables>(GetEventByIdDocument, options) +} +export type GetEventByIdQueryHookResult = ReturnType<typeof useGetEventByIdQuery> +export type GetEventByIdLazyQueryHookResult = ReturnType<typeof useGetEventByIdLazyQuery> +export type GetEventByIdSuspenseQueryHookResult = ReturnType<typeof useGetEventByIdSuspenseQuery> +export type GetEventByIdQueryResult = Apollo.QueryResult<GetEventByIdQuery, GetEventByIdQueryVariables> +export const AllEventsDocument = gql` + query allEvents($offset: Int = 0, $limit: Int = 5, $localOnly: Boolean) { + appEvents_events(offset: $offset, limit: $limit, localOnly: $localOnly) { + totalResults + data { + ...FullEvent + } + } +} + ${FullEventFragmentDoc}` + +/** + * __useAllEventsQuery__ + * + * To run a query within a React component, call `useAllEventsQuery` and pass it any options that fit your needs. + * When your component renders, `useAllEventsQuery` returns an object from Apollo Client that contains loading, error, and data properties + * you can use to render your UI. + * + * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; + * + * @example + * const { data, loading, error } = useAllEventsQuery({ + * variables: { + * offset: // value for 'offset' + * limit: // value for 'limit' + * localOnly: // value for 'localOnly' + * }, + * }); + */ +export function useAllEventsQuery(baseOptions?: Apollo.QueryHookOptions<AllEventsQuery, AllEventsQueryVariables>) { + const options = { ...defaultOptions, ...baseOptions } + return Apollo.useQuery<AllEventsQuery, AllEventsQueryVariables>(AllEventsDocument, options) +} +export function useAllEventsLazyQuery( + baseOptions?: Apollo.LazyQueryHookOptions<AllEventsQuery, AllEventsQueryVariables> +) { + const options = { ...defaultOptions, ...baseOptions } + return Apollo.useLazyQuery<AllEventsQuery, AllEventsQueryVariables>(AllEventsDocument, options) +} +export function useAllEventsSuspenseQuery( + baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<AllEventsQuery, AllEventsQueryVariables> +) { + const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions } + return Apollo.useSuspenseQuery<AllEventsQuery, AllEventsQueryVariables>(AllEventsDocument, options) +} +export type AllEventsQueryHookResult = ReturnType<typeof useAllEventsQuery> +export type AllEventsLazyQueryHookResult = ReturnType<typeof useAllEventsLazyQuery> +export type AllEventsSuspenseQueryHookResult = ReturnType<typeof useAllEventsSuspenseQuery> +export type AllEventsQueryResult = Apollo.QueryResult<AllEventsQuery, AllEventsQueryVariables> +export const NearbyEventsDocument = gql` + query nearbyEvents($limit: Int = 5, $geolocationId: ID) { + appEvents_nearbyEvents(limit: $limit, geolocationId: $geolocationId) { + data { + ...FullEvent + } + } +} + ${FullEventFragmentDoc}` + +/** + * __useNearbyEventsQuery__ + * + * To run a query within a React component, call `useNearbyEventsQuery` and pass it any options that fit your needs. + * When your component renders, `useNearbyEventsQuery` returns an object from Apollo Client that contains loading, error, and data properties + * you can use to render your UI. + * + * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options; + * + * @example + * const { data, loading, error } = useNearbyEventsQuery({ + * variables: { + * limit: // value for 'limit' + * geolocationId: // value for 'geolocationId' + * }, + * }); + */ +export function useNearbyEventsQuery( + baseOptions?: Apollo.QueryHookOptions<NearbyEventsQuery, NearbyEventsQueryVariables> +) { + const options = { ...defaultOptions, ...baseOptions } + return Apollo.useQuery<NearbyEventsQuery, NearbyEventsQueryVariables>(NearbyEventsDocument, options) +} +export function useNearbyEventsLazyQuery( + baseOptions?: Apollo.LazyQueryHookOptions<NearbyEventsQuery, NearbyEventsQueryVariables> +) { + const options = { ...defaultOptions, ...baseOptions } + return Apollo.useLazyQuery<NearbyEventsQuery, NearbyEventsQueryVariables>(NearbyEventsDocument, options) +} +export function useNearbyEventsSuspenseQuery( + baseOptions?: Apollo.SkipToken | Apollo.SuspenseQueryHookOptions<NearbyEventsQuery, NearbyEventsQueryVariables> +) { + const options = baseOptions === Apollo.skipToken ? baseOptions : { ...defaultOptions, ...baseOptions } + return Apollo.useSuspenseQuery<NearbyEventsQuery, NearbyEventsQueryVariables>(NearbyEventsDocument, options) +} +export type NearbyEventsQueryHookResult = ReturnType<typeof useNearbyEventsQuery> +export type NearbyEventsLazyQueryHookResult = ReturnType<typeof useNearbyEventsLazyQuery> +export type NearbyEventsSuspenseQueryHookResult = ReturnType<typeof useNearbyEventsSuspenseQuery> +export type NearbyEventsQueryResult = Apollo.QueryResult<NearbyEventsQuery, NearbyEventsQueryVariables> export const VolunteeringByIdDocument = gql` query VolunteeringById($id: String!) { appVolunteering_engagement(id: $id) { diff --git a/packages/chat/src/components/ChatTabsBar.tsx b/packages/chat/src/components/ChatTabsBar.tsx index 97f91e5e898d6ce6bc78e9f2cb2d0aea44cec1fa..c8a65ded73c94d500277fa93c1f89679be3cd6eb 100644 --- a/packages/chat/src/components/ChatTabsBar.tsx +++ b/packages/chat/src/components/ChatTabsBar.tsx @@ -7,10 +7,10 @@ import type { ChatRoom } from '@holi/chat/src/client/types' import { roomAtomsRecordAtom, spaceRoomIdToChildRoomsAtom, spaceRoomIdsAtom } from '@holi/chat/src/store' import { isWeb } from '@holi/chat/src/utils' import useRouting from '@holi/core/navigation/hooks/useRouting' -import BotomLineSeperator from '@holi/ui/components/organisms/HoliTabs/BotomLineSeperator' +import BottomLineSeperator from '@holi/ui/components/organisms/HoliTabs/BotomLineSeperator' import TabButton from '@holi/ui/components/organisms/HoliTabs/TabButton' import TabButtonList from '@holi/ui/components/organisms/HoliTabs/TabButtonList' -import { HoliTabItem } from '@holi/ui/components/organisms/HoliTabs/types' +import type { HoliTabItem } from '@holi/ui/components/organisms/HoliTabs/types' import Spacing from '@holi/ui/foundations/Spacing' export const DEFAULT_TAB_ID = 'all' as const @@ -62,7 +62,7 @@ const ChatTabBar = ({ selectedTabId }: Props) => { return ( <View onLayout={(event) => setComponentWidth(event.nativeEvent.layout.width)} style={{ width: '100%' }}> - <BotomLineSeperator /> + <BottomLineSeperator /> <TabButtonList activeTab={selectedTabId} data={tabs} diff --git a/packages/ui/assets/img/events/gemeinschaftswerk-nachhaltigkeit-logo.png b/packages/ui/assets/img/events/gemeinschaftswerk-nachhaltigkeit-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..739f79b07bd240403584f37c9940efb3d7ed0b53 Binary files /dev/null and b/packages/ui/assets/img/events/gemeinschaftswerk-nachhaltigkeit-logo.png differ diff --git a/packages/ui/assets/img/events/gemeinschaftswerk-nachhaltigkeit-logo.svg b/packages/ui/assets/img/events/gemeinschaftswerk-nachhaltigkeit-logo.svg new file mode 100644 index 0000000000000000000000000000000000000000..ee7ecf8103915aefc330d8a11cd572f938207cab --- /dev/null +++ b/packages/ui/assets/img/events/gemeinschaftswerk-nachhaltigkeit-logo.svg @@ -0,0 +1,10 @@ +<svg width="121" height="121" viewBox="0 0 121 121" xmlns="http://www.w3.org/2000/svg"> + <image + href="data:image/png;base64,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" + x="10" + y="10" + width="101" + height="101" + preserveAspectRatio="xMidYMid meet" + /> +</svg> diff --git a/packages/ui/assets/img/events/gemeinschaftswerk-nachhaltigkeit-wordmark.png b/packages/ui/assets/img/events/gemeinschaftswerk-nachhaltigkeit-wordmark.png new file mode 100644 index 0000000000000000000000000000000000000000..f387241caaee383f7fc6280b084ac0ec7c12a6b9 Binary files /dev/null and b/packages/ui/assets/img/events/gemeinschaftswerk-nachhaltigkeit-wordmark.png differ diff --git a/packages/ui/assets/img/events/thumbnail-blue-full.svg b/packages/ui/assets/img/events/thumbnail-blue-full.svg new file mode 100644 index 0000000000000000000000000000000000000000..7e9a66db25868eff263f255c40a342076846080a --- /dev/null +++ b/packages/ui/assets/img/events/thumbnail-blue-full.svg @@ -0,0 +1,7 @@ +<svg width="92" height="128" viewBox="0 0 92 128" fill="none" xmlns="http://www.w3.org/2000/svg"> +<rect width="92" height="128" fill="#90DDFF"/> +<mask id="path-1-inside-1_65_9281" fill="white"> +<path fill-rule="evenodd" clip-rule="evenodd" d="M83.7222 107.546C83.7222 100.918 78.3496 95.5459 71.7222 95.5459L65.6641 95.5459C63.5803 95.5459 61.8911 93.8567 61.8911 91.773C61.8911 89.6892 63.5803 88 65.6641 88L70.2 88C74.6804 88 76.9206 88 78.6319 87.1281C80.1372 86.3611 81.3611 85.1372 82.1281 83.6319C83 81.9206 83 79.6804 83 75.2L83 20.8C83 16.3196 83 14.0794 82.1281 12.3681C81.3611 10.8628 80.1372 9.63893 78.6319 8.87195C76.9206 8 74.6804 8 70.2 8L19.8 8C15.3196 8 13.0794 8 11.3681 8.87195C9.86278 9.63893 8.63893 10.8628 7.87195 12.3681C7 14.0794 7 16.3196 7 20.8L7.00001 75.2C7.00001 79.6804 7.00001 81.9206 7.87195 83.6319C8.63894 85.1372 9.86278 86.3611 11.3681 87.1281C13.0794 88 15.3196 88 19.8 88L47.7797 88C49.8634 88 51.5526 89.6892 51.5526 91.773C51.5526 93.8567 49.8634 95.5459 47.7797 95.5459L38.7222 95.5459C32.0947 95.5459 26.7222 100.918 26.7222 107.546C26.7222 114.173 32.0947 119.546 38.7222 119.546L71.7222 119.546C78.3496 119.546 83.7222 114.173 83.7222 107.546Z"/> +</mask> +<path d="M78.6319 87.1281L78.1779 86.237L78.1779 86.237L78.6319 87.1281ZM82.1281 83.6319L81.237 83.1779L81.237 83.1779L82.1281 83.6319ZM83 75.2L84 75.2L83 75.2ZM83 20.8L82 20.8L83 20.8ZM82.1281 12.3681L83.0191 11.9141L83.0191 11.9141L82.1281 12.3681ZM78.6319 8.87195L78.1779 9.76295L78.1779 9.76295L78.6319 8.87195ZM70.2 8L70.2 9L70.2 8ZM19.8 8L19.8 7L19.8 8ZM11.3681 8.87195L11.8221 9.76296L11.3681 8.87195ZM7.87195 12.3681L8.76296 12.8221L7.87195 12.3681ZM7.87195 83.6319L8.76296 83.1779L8.76296 83.1779L7.87195 83.6319ZM11.3681 87.1281L10.9141 88.0191L11.3681 87.1281ZM38.7222 95.5459L38.7222 96.5459L38.7222 95.5459ZM47.7797 95.5459L47.7797 96.5459L47.7797 95.5459ZM71.7222 94.5459C78.9019 94.5459 84.7222 100.366 84.7222 107.546L82.7222 107.546C82.7222 101.471 77.7973 96.5459 71.7222 96.5459L71.7222 94.5459ZM65.6641 94.5459L71.7222 94.5459L71.7222 96.5459L65.6641 96.5459L65.6641 94.5459ZM65.6641 87L70.2 87L70.2 89L65.6641 89L65.6641 87ZM70.2 87C72.4567 87 74.0891 86.9992 75.373 86.8943C76.6451 86.7904 77.4868 86.5892 78.1779 86.237L79.0859 88.0191C78.0658 88.5388 76.9317 88.7736 75.5358 88.8877C74.1516 89.0008 72.4237 89 70.2 89L70.2 87ZM78.1779 86.237C79.4951 85.5659 80.5659 84.4951 81.237 83.1779L83.0191 84.0859C82.1562 85.7794 80.7794 87.1562 79.0859 88.0191L78.1779 86.237ZM81.237 83.1779C81.5892 82.4868 81.7904 81.6451 81.8943 80.373C81.9992 79.0891 82 77.4567 82 75.2L84 75.2C84 77.4237 84.0008 79.1516 83.8877 80.5358C83.7736 81.9317 83.5388 83.0658 83.0191 84.0859L81.237 83.1779ZM82 75.2L82 20.8L84 20.8L84 75.2L82 75.2ZM82 20.8C82 18.5433 81.9992 16.9109 81.8943 15.627C81.7904 14.3549 81.5892 13.5132 81.237 12.8221L83.0191 11.9141C83.5388 12.9342 83.7736 14.0683 83.8877 15.4642C84.0008 16.8484 84 18.5763 84 20.8L82 20.8ZM81.237 12.8221C80.5659 11.5049 79.4951 10.4341 78.1779 9.76295L79.0859 7.98094C80.7794 8.8438 82.1562 10.2206 83.0191 11.9141L81.237 12.8221ZM78.1779 9.76295C77.4868 9.41078 76.6451 9.20961 75.373 9.10568C74.0891 9.00078 72.4567 9 70.2 9L70.2 7C72.4237 7 74.1516 6.99922 75.5358 7.11231C76.9317 7.22636 78.0658 7.46117 79.0859 7.98094L78.1779 9.76295ZM70.2 9L19.8 9L19.8 7L70.2 7L70.2 9ZM19.8 9C17.5433 9 15.9109 9.00078 14.627 9.10568C13.3549 9.20961 12.5132 9.41078 11.8221 9.76296L10.9141 7.98094C11.9342 7.46117 13.0683 7.22637 14.4642 7.11232C15.8484 6.99922 17.5763 7 19.8 7L19.8 9ZM11.8221 9.76296C10.5049 10.4341 9.43407 11.5049 8.76296 12.8221L6.98094 11.9141C7.8438 10.2206 9.22063 8.8438 10.9141 7.98094L11.8221 9.76296ZM8.76296 12.8221C8.41078 13.5132 8.20961 14.3549 8.10568 15.627C8.00078 16.9109 8 18.5433 8 20.8L6 20.8C6 18.5763 5.99922 16.8484 6.11232 15.4642C6.22637 14.0683 6.46117 12.9342 6.98094 11.9141L8.76296 12.8221ZM8 20.8L8.00001 75.2L6.00001 75.2L6 20.8L8 20.8ZM8.00001 75.2C8.00001 77.4567 8.00078 79.0891 8.10568 80.373C8.20962 81.6451 8.41079 82.4868 8.76296 83.1779L6.98095 84.0859C6.46117 83.0658 6.22637 81.9317 6.11232 80.5358C5.99923 79.1516 6.00001 77.4237 6.00001 75.2L8.00001 75.2ZM8.76296 83.1779C9.43407 84.4951 10.5049 85.5659 11.8221 86.237L10.9141 88.0191C9.22063 87.1562 7.8438 85.7794 6.98095 84.0859L8.76296 83.1779ZM11.8221 86.237C12.5133 86.5892 13.3549 86.7904 14.6271 86.8943C15.9109 86.9992 17.5433 87 19.8 87L19.8 89C17.5763 89 15.8484 89.0008 14.4642 88.8877C13.0683 88.7736 11.9342 88.5388 10.9141 88.0191L11.8221 86.237ZM19.8 87L47.7797 87L47.7797 89L19.8 89L19.8 87ZM38.7222 94.5459L47.7797 94.5459L47.7797 96.5459L38.7222 96.5459L38.7222 94.5459ZM25.7222 107.546C25.7222 100.366 31.5425 94.5459 38.7222 94.5459L38.7222 96.5459C32.647 96.5459 27.7222 101.471 27.7222 107.546L25.7222 107.546ZM38.7222 120.546C31.5425 120.546 25.7222 114.726 25.7222 107.546L27.7222 107.546C27.7222 113.621 32.647 118.546 38.7222 118.546L38.7222 120.546ZM71.7222 120.546L38.7222 120.546L38.7222 118.546L71.7222 118.546L71.7222 120.546ZM84.7222 107.546C84.7222 114.726 78.9019 120.546 71.7222 120.546L71.7222 118.546C77.7973 118.546 82.7222 113.621 82.7222 107.546L84.7222 107.546ZM52.5526 91.773C52.5526 94.409 50.4157 96.5459 47.7797 96.5459L47.7797 94.5459C49.3112 94.5459 50.5526 93.3044 50.5526 91.773L52.5526 91.773ZM47.7797 87C50.4157 87 52.5526 89.1369 52.5526 91.773L50.5526 91.773C50.5526 90.2415 49.3112 89 47.7797 89L47.7797 87ZM60.8911 91.773C60.8911 89.1369 63.028 87 65.6641 87L65.6641 89C64.1326 89 62.8911 90.2415 62.8911 91.773L60.8911 91.773ZM65.6641 96.5459C63.028 96.5459 60.8911 94.409 60.8911 91.773L62.8911 91.773C62.8911 93.3044 64.1326 94.5459 65.6641 94.5459L65.6641 96.5459Z" fill="#262424" mask="url(#path-1-inside-1_65_9281)"/> +</svg> diff --git a/packages/ui/assets/img/events/thumbnail-blue.svg b/packages/ui/assets/img/events/thumbnail-blue.svg new file mode 100644 index 0000000000000000000000000000000000000000..edf503b5a7a12fe5f07ba722c0a93bdcb4fb0523 --- /dev/null +++ b/packages/ui/assets/img/events/thumbnail-blue.svg @@ -0,0 +1,11 @@ +<svg width="92" height="128" viewBox="0 0 92 128" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0_65_9384)"> +<rect width="92" height="128" fill="#90DDFF"/> +<path d="M48.9419 125.67L48.9423 125.668C51.8812 116.122 58.0932 107.961 66.4505 102.664C74.8076 97.3678 84.7574 95.2848 94.4968 96.7919C104.236 98.2991 113.123 103.297 119.545 110.882C125.967 118.467 129.5 128.137 129.5 138.138L129.498 227.189C129.498 251.161 110.907 267.584 88.1342 267.5C65.5045 267.414 47.0778 251.162 47.0778 227.189V168.054C47.0778 165.613 46.1222 163.271 44.419 161.543C42.7155 159.814 40.4035 158.842 37.9912 158.842C35.5789 158.842 33.2669 159.814 31.5634 161.543C29.8601 163.271 28.9045 165.613 28.9045 168.054V241.905C28.9045 248.117 27.0331 253.632 23.402 257.589C19.7769 261.539 14.3544 263.985 7.1504 263.985H-31.7434C-38.7912 263.985 -44.2143 261.761 -47.8772 257.926C-51.5434 254.087 -53.5 248.577 -53.5 241.903V45.58C-53.5 38.68 -51.3943 33.1716 -47.6543 29.3897C-43.9149 25.6084 -38.4893 23.5 -31.7459 23.5H8.04396C14.9525 23.5 20.1466 25.6821 23.6185 29.4899C27.0967 33.3046 28.9049 38.8153 28.9049 45.58V122.515C28.9049 125.272 29.9842 127.917 31.9077 129.869C33.831 131.82 36.4411 132.918 39.1643 132.918C41.3445 132.924 43.4687 132.223 45.2274 130.918C46.986 129.614 48.2869 127.775 48.9419 125.67Z" stroke="#262424"/> +</g> +<defs> +<clipPath id="clip0_65_9384"> +<rect width="92" height="128" fill="white"/> +</clipPath> +</defs> +</svg> diff --git a/packages/ui/assets/img/events/thumbnail-green-full.svg b/packages/ui/assets/img/events/thumbnail-green-full.svg new file mode 100644 index 0000000000000000000000000000000000000000..9e27bcad1f5ff827bbbb2c7babca433e6d20819f --- /dev/null +++ b/packages/ui/assets/img/events/thumbnail-green-full.svg @@ -0,0 +1,7 @@ +<svg width="92" height="128" viewBox="0 0 92 128" fill="none" xmlns="http://www.w3.org/2000/svg"> +<rect width="92" height="128" fill="#ABFF8B"/> +<mask id="path-1-inside-1_65_9271" fill="white"> +<path fill-rule="evenodd" clip-rule="evenodd" d="M84.5338 20C84.5338 26.6274 79.1612 32 72.5338 32L67.7094 32C66.0525 32 64.7094 33.3431 64.7094 35C64.7094 36.6569 66.0525 38 67.7094 38L71.2001 38C75.6805 38 77.9208 38 79.632 38.8719C81.1373 39.6389 82.3612 40.8628 83.1282 42.3681C84.0001 44.0794 84.0001 46.3196 84.0001 50.8L84.0001 107.2C84.0001 111.68 84.0001 113.921 83.1282 115.632C82.3612 117.137 81.1373 118.361 79.632 119.128C77.9208 120 75.6805 120 71.2001 120L20.8001 120C16.3197 120 14.0795 120 12.3682 119.128C10.8629 118.361 9.63906 117.137 8.87207 115.632C8.00013 113.921 8.00013 111.68 8.00013 107.2L8.00013 50.8C8.00013 46.3196 8.00013 44.0794 8.87208 42.3681C9.63906 40.8628 10.8629 39.6389 12.3682 38.8719C14.0795 38 16.3197 38 20.8001 38L52.2229 38C53.8797 38 55.2229 36.6569 55.2229 35C55.2229 33.3431 53.8797 32 52.2229 32L38.5338 32C31.9064 32 26.5338 26.6274 26.5338 20C26.5338 13.3726 31.9064 8 38.5338 8L72.5338 8C79.1612 8 84.5338 13.3726 84.5338 20Z"/> +</mask> +<path d="M72.5338 32L72.5338 31L72.5338 32ZM79.632 38.8719L79.1781 39.763L79.1781 39.763L79.632 38.8719ZM83.1282 42.3681L82.2372 42.8221L82.2372 42.8221L83.1282 42.3681ZM83.1282 115.632L84.0192 116.086L84.0192 116.086L83.1282 115.632ZM79.632 119.128L79.1781 118.237L79.1781 118.237L79.632 119.128ZM12.3682 119.128L12.8222 118.237L12.3682 119.128ZM8.87207 115.632L9.76308 115.178L8.87207 115.632ZM8.87208 42.3681L9.76308 42.8221L9.76308 42.8221L8.87208 42.3681ZM12.3682 38.8719L11.9142 37.9809L12.3682 38.8719ZM38.5338 8L38.5338 9L38.5338 8ZM72.5338 8L72.5338 7L72.5338 8ZM72.5338 33C79.7135 33 85.5338 27.1797 85.5338 20L83.5338 20C83.5338 26.0751 78.6089 31 72.5338 31L72.5338 33ZM67.7094 33L72.5338 33L72.5338 31L67.7094 31L67.7094 33ZM67.7094 39L71.2001 39L71.2001 37L67.7094 37L67.7094 39ZM71.2001 39C73.4568 39 75.0892 39.0008 76.3731 39.1057C77.6453 39.2096 78.4869 39.4108 79.1781 39.763L80.086 37.9809C79.0659 37.4612 77.9318 37.2264 76.5359 37.1123C75.1518 36.9992 73.4238 37 71.2001 37L71.2001 39ZM79.1781 39.763C80.4952 40.4341 81.5661 41.5049 82.2372 42.8221L84.0192 41.9141C83.1563 40.2206 81.7795 38.8438 80.086 37.9809L79.1781 39.763ZM82.2372 42.8221C82.5893 43.5132 82.7905 44.3549 82.8945 45.627C82.9993 46.9109 83.0001 48.5433 83.0001 50.8L85.0001 50.8C85.0001 48.5763 85.0009 46.8484 84.8878 45.4642C84.7738 44.0683 84.539 42.9342 84.0192 41.9141L82.2372 42.8221ZM83.0001 50.8L83.0001 107.2L85.0001 107.2L85.0001 50.8L83.0001 50.8ZM83.0001 107.2C83.0001 109.457 82.9993 111.089 82.8945 112.373C82.7905 113.645 82.5893 114.487 82.2372 115.178L84.0192 116.086C84.539 115.066 84.7738 113.932 84.8878 112.536C85.0009 111.152 85.0001 109.424 85.0001 107.2L83.0001 107.2ZM82.2372 115.178C81.5661 116.495 80.4952 117.566 79.1781 118.237L80.086 120.019C81.7795 119.156 83.1563 117.779 84.0192 116.086L82.2372 115.178ZM79.1781 118.237C78.4869 118.589 77.6453 118.79 76.3731 118.894C75.0892 118.999 73.4568 119 71.2001 119L71.2001 121C73.4238 121 75.1518 121.001 76.5359 120.888C77.9318 120.774 79.0659 120.539 80.086 120.019L79.1781 118.237ZM71.2001 119L20.8001 119L20.8001 121L71.2001 121L71.2001 119ZM20.8001 119C18.5434 119 16.911 118.999 15.6272 118.894C14.355 118.79 13.5134 118.589 12.8222 118.237L11.9142 120.019C12.9343 120.539 14.0684 120.774 15.4643 120.888C16.8485 121.001 18.5764 121 20.8001 121L20.8001 119ZM12.8222 118.237C11.5051 117.566 10.4342 116.495 9.76308 115.178L7.98107 116.086C8.84392 117.779 10.2208 119.156 11.9142 120.019L12.8222 118.237ZM9.76308 115.178C9.41091 114.487 9.20974 113.645 9.1058 112.373C9.0009 111.089 9.00013 109.457 9.00013 107.2L7.00013 107.2C7.00013 109.424 6.99935 111.152 7.11244 112.536C7.22649 113.932 7.46129 115.066 7.98107 116.086L9.76308 115.178ZM9.00013 107.2L9.00013 50.8L7.00013 50.8L7.00013 107.2L9.00013 107.2ZM9.00013 50.8C9.00013 48.5433 9.00091 46.9109 9.1058 45.627C9.20974 44.3549 9.41091 43.5132 9.76308 42.8221L7.98107 41.9141C7.46129 42.9342 7.22649 44.0683 7.11244 45.4642C6.99935 46.8484 7.00013 48.5763 7.00013 50.8L9.00013 50.8ZM9.76308 42.8221C10.4342 41.5049 11.5051 40.4341 12.8222 39.763L11.9142 37.9809C10.2208 38.8438 8.84392 40.2206 7.98107 41.9141L9.76308 42.8221ZM12.8222 39.763C13.5134 39.4108 14.355 39.2096 15.6272 39.1057C16.911 39.0008 18.5434 39 20.8001 39L20.8001 37C18.5764 37 16.8485 36.9992 15.4643 37.1123C14.0684 37.2264 12.9343 37.4612 11.9142 37.9809L12.8222 39.763ZM20.8001 39L52.2229 39L52.2229 37L20.8001 37L20.8001 39ZM38.5338 33L52.2229 33L52.2229 31L38.5338 31L38.5338 33ZM25.5338 20C25.5338 27.1797 31.3541 33 38.5338 33L38.5338 31C32.4587 31 27.5338 26.0751 27.5338 20L25.5338 20ZM38.5338 7C31.3541 7 25.5338 12.8203 25.5338 20L27.5338 20C27.5338 13.9249 32.4587 9 38.5338 9L38.5338 7ZM72.5338 7L38.5338 7L38.5338 9L72.5338 9L72.5338 7ZM85.5338 20C85.5338 12.8203 79.7135 7 72.5338 7L72.5338 9C78.6089 9 83.5338 13.9249 83.5338 20L85.5338 20ZM56.2229 35C56.2229 32.7909 54.432 31 52.2229 31L52.2229 33C53.3274 33 54.2229 33.8954 54.2229 35L56.2229 35ZM52.2229 39C54.432 39 56.2229 37.2091 56.2229 35L54.2229 35C54.2229 36.1046 53.3274 37 52.2229 37L52.2229 39ZM63.7094 35C63.7094 37.2091 65.5002 39 67.7094 39L67.7094 37C66.6048 37 65.7094 36.1046 65.7094 35L63.7094 35ZM67.7094 31C65.5002 31 63.7094 32.7909 63.7094 35L65.7094 35C65.7094 33.8954 66.6048 33 67.7094 33L67.7094 31Z" fill="#262424" mask="url(#path-1-inside-1_65_9271)"/> +</svg> diff --git a/packages/ui/assets/img/events/thumbnail-green.svg b/packages/ui/assets/img/events/thumbnail-green.svg new file mode 100644 index 0000000000000000000000000000000000000000..75e43f889d21a6d997fbf3c9c77a2eac4ea849a4 --- /dev/null +++ b/packages/ui/assets/img/events/thumbnail-green.svg @@ -0,0 +1,11 @@ +<svg width="92" height="128" viewBox="0 0 92 128" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0_65_9372)"> +<rect width="92" height="128" fill="#ABFF8B"/> +<path d="M54.3258 15.1438L54.3263 15.1423C56.5218 8.00064 61.1625 1.89637 67.4051 -2.06544C73.6474 -6.02713 81.079 -7.58495 88.3534 -6.45773C95.6279 -5.3305 102.266 -1.59239 107.063 4.08124C111.861 9.75506 114.5 16.9888 114.5 24.4713L114.499 91.3499C114.499 109.279 100.617 121.563 83.6011 121.5C66.6919 121.436 52.9334 109.28 52.9334 91.3499V46.9387C52.9334 45.0733 52.2041 43.2827 50.9035 41.9613C49.6026 40.6396 47.8366 39.8956 45.9934 39.8956C44.1502 39.8956 42.3842 40.6396 41.0833 41.9613C39.7827 43.2827 39.0534 45.0733 39.0534 46.9387V102.402C39.0534 107.043 37.6572 111.153 34.9591 114.097C32.2672 117.035 28.2356 118.86 22.8628 118.86H-6.30756C-11.5662 118.86 -15.5981 117.2 -18.3172 114.349C-21.0398 111.494 -22.5 107.389 -22.5 102.401V-45.0419C-22.5 -50.1987 -20.9289 -54.3017 -18.1516 -57.1139C-15.375 -59.9255 -11.3403 -61.5 -6.30939 -61.5H23.533C28.6868 -61.5 32.5458 -59.8708 35.1213 -57.0424C37.7032 -54.2067 39.0537 -50.1014 39.0537 -45.0419V12.7377C39.0537 14.8404 39.8758 16.8585 41.3415 18.3476C42.8072 19.8368 44.7967 20.675 46.8729 20.6753C48.5353 20.6796 50.1548 20.1442 51.4953 19.1486C52.8357 18.153 53.8268 16.7496 54.3258 15.1438Z" stroke="#262424"/> +</g> +<defs> +<clipPath id="clip0_65_9372"> +<rect width="92" height="128" fill="white"/> +</clipPath> +</defs> +</svg> diff --git a/packages/ui/assets/img/events/thumbnail-purple-full.svg b/packages/ui/assets/img/events/thumbnail-purple-full.svg new file mode 100644 index 0000000000000000000000000000000000000000..fdc52a26a4845159cdab2098fc1f04b2924c8ccc --- /dev/null +++ b/packages/ui/assets/img/events/thumbnail-purple-full.svg @@ -0,0 +1,8 @@ +<svg width="92" height="128" viewBox="0 0 92 128" fill="none" xmlns="http://www.w3.org/2000/svg"> +<rect width="92" height="128" fill="#8B95FF"/> +<mask id="path-1-inside-1_65_9276" fill="white"> +<path fill-rule="evenodd" clip-rule="evenodd" d="M20.063 120.307C26.6904 120.307 32.063 114.934 32.063 108.307V96.679C32.063 95.5918 32.9443 94.7105 34.0315 94.7105C35.1187 94.7105 36 95.5918 36 96.679V107.596C36 112.076 36 114.317 36.8719 116.028C37.6389 117.533 38.8628 118.757 40.3681 119.524C42.0794 120.396 44.3196 120.396 48.8 120.396H71.2C75.6804 120.396 77.9206 120.396 79.6319 119.524C81.1372 118.757 82.3611 117.533 83.1281 116.028C84 114.317 84 112.076 84 107.596V75.1959C84 70.7155 84 68.4752 83.1281 66.764C82.3611 65.2587 81.1372 64.0348 79.6319 63.2678C77.9206 62.3959 75.6804 62.3959 71.2 62.3959H48.8C44.3196 62.3959 42.0794 62.3959 40.3681 63.2678C38.8628 64.0348 37.6389 65.2587 36.8719 66.764C36 68.4752 36 70.7155 36 75.1959V84.532C36 85.6191 35.1187 86.5005 34.0315 86.5005C32.9443 86.5005 32.063 85.6191 32.063 84.532V20.307C32.063 13.6796 26.6904 8.30701 20.063 8.30701C13.4356 8.30701 8.06299 13.6796 8.06299 20.307V108.307C8.06299 114.934 13.4356 120.307 20.063 120.307Z"/> +</mask> +<path d="M36.8719 116.028L35.9809 116.482L36.8719 116.028ZM40.3681 119.524L40.8221 118.633H40.8221L40.3681 119.524ZM79.6319 119.524L79.1779 118.633H79.1779L79.6319 119.524ZM83.1281 116.028L84.0191 116.482L84.0191 116.482L83.1281 116.028ZM83.1281 66.764L82.237 67.2179H82.237L83.1281 66.764ZM79.6319 63.2678L79.1779 64.1588L79.6319 63.2678ZM40.3681 63.2678L40.8221 64.1588L40.3681 63.2678ZM36.8719 66.764L37.763 67.2179L36.8719 66.764ZM33.063 108.307C33.063 115.487 27.2427 121.307 20.063 121.307V119.307C26.1381 119.307 31.063 114.382 31.063 108.307H33.063ZM33.063 96.679V108.307H31.063V96.679H33.063ZM37 96.679V107.596H35V96.679H37ZM37 107.596C37 109.853 37.0008 111.485 37.1057 112.769C37.2096 114.041 37.4108 114.883 37.763 115.574L35.9809 116.482C35.4612 115.462 35.2264 114.328 35.1123 112.932C34.9992 111.548 35 109.82 35 107.596H37ZM37.763 115.574C38.4341 116.891 39.5049 117.962 40.8221 118.633L39.9141 120.415C38.2206 119.552 36.8438 118.175 35.9809 116.482L37.763 115.574ZM40.8221 118.633C41.5132 118.985 42.3549 119.186 43.627 119.29C44.9109 119.395 46.5433 119.396 48.8 119.396V121.396C46.5763 121.396 44.8484 121.397 43.4642 121.284C42.0683 121.17 40.9342 120.935 39.9141 120.415L40.8221 118.633ZM48.8 119.396H71.2V121.396H48.8V119.396ZM71.2 119.396C73.4567 119.396 75.0891 119.395 76.373 119.29C77.6451 119.186 78.4868 118.985 79.1779 118.633L80.0859 120.415C79.0658 120.935 77.9317 121.17 76.5358 121.284C75.1516 121.397 73.4237 121.396 71.2 121.396V119.396ZM79.1779 118.633C80.4951 117.962 81.5659 116.891 82.237 115.574L84.0191 116.482C83.1562 118.175 81.7794 119.552 80.0859 120.415L79.1779 118.633ZM82.237 115.574C82.5892 114.883 82.7904 114.041 82.8943 112.769C82.9992 111.485 83 109.853 83 107.596H85C85 109.82 85.0008 111.548 84.8877 112.932C84.7736 114.328 84.5388 115.462 84.0191 116.482L82.237 115.574ZM83 107.596V75.1959H85V107.596H83ZM83 75.1959C83 72.9392 82.9992 71.3068 82.8943 70.0229C82.7904 68.7507 82.5892 67.9091 82.237 67.2179L84.0191 66.31C84.5388 67.3301 84.7736 68.4642 84.8877 69.8601C85.0008 71.2442 85 72.9722 85 75.1959H83ZM82.237 67.2179C81.5659 65.9008 80.4951 64.8299 79.1779 64.1588L80.0859 62.3768C81.7794 63.2397 83.1562 64.6165 84.0191 66.31L82.237 67.2179ZM79.1779 64.1588C78.4868 63.8067 77.6451 63.6055 76.373 63.5015C75.0891 63.3967 73.4567 63.3959 71.2 63.3959V61.3959C73.4237 61.3959 75.1516 61.3951 76.5358 61.5082C77.9317 61.6222 79.0658 61.857 80.0859 62.3768L79.1779 64.1588ZM71.2 63.3959H48.8V61.3959H71.2V63.3959ZM48.8 63.3959C46.5433 63.3959 44.9109 63.3967 43.627 63.5015C42.3549 63.6055 41.5132 63.8067 40.8221 64.1588L39.9141 62.3768C40.9342 61.857 42.0683 61.6222 43.4642 61.5082C44.8484 61.3951 46.5763 61.3959 48.8 61.3959V63.3959ZM40.8221 64.1588C39.5049 64.8299 38.4341 65.9008 37.763 67.2179L35.9809 66.31C36.8438 64.6165 38.2206 63.2397 39.9141 62.3768L40.8221 64.1588ZM37.763 67.2179C37.4108 67.9091 37.2096 68.7507 37.1057 70.0229C37.0008 71.3068 37 72.9392 37 75.1959H35C35 72.9722 34.9992 71.2442 35.1123 69.8601C35.2264 68.4642 35.4612 67.3301 35.9809 66.31L37.763 67.2179ZM37 75.1959V84.532H35V75.1959H37ZM33.063 20.307V84.532H31.063V20.307H33.063ZM20.063 7.30701C27.2427 7.30701 33.063 13.1273 33.063 20.307H31.063C31.063 14.2319 26.1381 9.30701 20.063 9.30701V7.30701ZM7.06299 20.307C7.06299 13.1273 12.8833 7.30701 20.063 7.30701V9.30701C13.9879 9.30701 9.06299 14.2319 9.06299 20.307H7.06299ZM7.06299 108.307V20.307H9.06299V108.307H7.06299ZM20.063 121.307C12.8833 121.307 7.06299 115.487 7.06299 108.307H9.06299C9.06299 114.382 13.9879 119.307 20.063 119.307V121.307ZM34.0315 87.5005C32.392 87.5005 31.063 86.1714 31.063 84.532H33.063C33.063 85.0668 33.4966 85.5005 34.0315 85.5005V87.5005ZM37 84.532C37 86.1714 35.671 87.5005 34.0315 87.5005V85.5005C34.5664 85.5005 35 85.0668 35 84.532H37ZM34.0315 93.7105C35.671 93.7105 37 95.0395 37 96.679H35C35 96.1441 34.5664 95.7105 34.0315 95.7105V93.7105ZM31.063 96.679C31.063 95.0395 32.392 93.7105 34.0315 93.7105V95.7105C33.4966 95.7105 33.063 96.1441 33.063 96.679H31.063Z" fill="#262424" mask="url(#path-1-inside-1_65_9276)"/> +<rect x="84" width="8" height="8" fill="#D9D9D9"/> +</svg> diff --git a/packages/ui/assets/img/events/thumbnail-purple.svg b/packages/ui/assets/img/events/thumbnail-purple.svg new file mode 100644 index 0000000000000000000000000000000000000000..66430ae340a9713c12a1b2e10791e39edf06aae9 --- /dev/null +++ b/packages/ui/assets/img/events/thumbnail-purple.svg @@ -0,0 +1,11 @@ +<svg width="92" height="128" viewBox="0 0 92 128" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0_65_9376)"> +<rect width="92" height="128" fill="#8B95FF"/> +<path d="M49.9231 7.42197L49.9236 7.42053C53.994 -5.87192 62.598 -17.2346 74.1732 -24.6098C85.7482 -31.9847 99.5293 -34.8851 113.019 -32.7865C126.509 -30.6879 138.817 -23.7288 147.712 -13.1678C156.607 -2.60657 161.499 10.8575 161.5 24.784L161.498 148.364C161.498 181.751 135.736 204.617 104.206 204.5C72.875 204.381 47.3411 181.751 47.3411 148.364V66.2997C47.3411 62.9637 46.042 59.7623 43.7264 57.4004C41.4105 55.0382 38.2674 53.7093 34.9878 53.7093C31.7083 53.7093 28.5651 55.0382 26.2492 57.4004C23.9337 59.7623 22.6345 62.9637 22.6345 66.2997V168.786C22.6345 177.446 20.0392 185.15 14.9876 190.684C9.94234 196.211 2.4035 199.621 -7.58586 199.621H-61.2762C-71.0457 199.621 -78.5853 196.522 -83.6845 191.155C-88.7874 185.783 -91.5 178.084 -91.5 168.784V-103.664C-91.5 -113.281 -88.5801 -120.978 -83.3745 -126.27C-78.1698 -131.561 -70.6279 -134.5 -61.2796 -134.5H-6.35235C3.22527 -134.5 10.4507 -131.458 15.2869 -126.125C20.1298 -120.786 22.6351 -113.086 22.6351 -103.664V3.10233C22.6351 6.87675 24.105 10.4986 26.7245 13.1704C29.344 15.8423 32.8988 17.3454 36.6077 17.3457C39.5768 17.3533 42.4697 16.3934 44.8647 14.6076C47.2596 12.8218 49.0311 10.3039 49.9231 7.42197Z" stroke="#262424"/> +</g> +<defs> +<clipPath id="clip0_65_9376"> +<rect width="92" height="128" fill="white"/> +</clipPath> +</defs> +</svg> diff --git a/packages/ui/assets/img/events/thumbnail-yellow-full.svg b/packages/ui/assets/img/events/thumbnail-yellow-full.svg new file mode 100644 index 0000000000000000000000000000000000000000..ee469d7bdc15d7a683f1c7fb33135de07c67a37d --- /dev/null +++ b/packages/ui/assets/img/events/thumbnail-yellow-full.svg @@ -0,0 +1,14 @@ +<svg width="92" height="128" viewBox="0 0 92 128" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0_65_9266)"> +<rect width="92" height="128" fill="#FDFD80"/> +<mask id="path-1-inside-1_65_9266" fill="white"> +<path fill-rule="evenodd" clip-rule="evenodd" d="M-117 20.8C-117 16.3196 -117 14.0794 -116.128 12.3681C-115.361 10.8628 -114.137 9.63893 -112.632 8.87195C-110.921 8 -108.681 8 -104.2 8H40.1999C44.6803 8 46.9205 8 48.6318 8.87195C50.1371 9.63893 51.3609 10.8628 52.1279 12.3681C52.9999 14.0794 52.9999 16.3196 52.9999 20.8V78.0771C52.9999 80.0101 54.5669 81.5771 56.4999 81.5771C58.4329 81.5771 59.9999 80.0101 59.9999 78.0771V53.1367C59.9999 46.5093 65.3725 41.1367 71.9999 41.1367C78.6273 41.1367 83.9999 46.5093 83.9999 53.1367V108.137C83.9999 114.764 78.6273 120.137 71.9999 120.137C65.3725 120.137 59.9999 114.764 59.9999 108.137V95.3233C59.9999 93.3903 58.4329 91.8233 56.4999 91.8233C54.5669 91.8233 52.9999 93.3903 52.9999 95.3233V107.2C52.9999 111.68 52.9999 113.921 52.1279 115.632C51.3609 117.137 50.1371 118.361 48.6318 119.128C46.9205 120 44.6803 120 40.1999 120H-104.2C-108.681 120 -110.921 120 -112.632 119.128C-114.137 118.361 -115.361 117.137 -116.128 115.632C-117 113.921 -117 111.68 -117 107.2V20.8Z"/> +</mask> +<path d="M-116.128 12.3681L-117.019 11.9141H-117.019L-116.128 12.3681ZM-112.632 8.87195L-113.086 7.98094V7.98094L-112.632 8.87195ZM48.6318 8.87195L49.0858 7.98094V7.98094L48.6318 8.87195ZM52.1279 12.3681L51.2369 12.8221V12.8221L52.1279 12.3681ZM52.1279 115.632L51.2369 115.178L52.1279 115.632ZM48.6318 119.128L49.0858 120.019L48.6318 119.128ZM-112.632 119.128L-112.178 118.237H-112.178L-112.632 119.128ZM-116.128 115.632L-117.019 116.086L-117.019 116.086L-116.128 115.632ZM-117.019 11.9141C-117.539 12.9342 -117.774 14.0683 -117.888 15.4642C-118.001 16.8484 -118 18.5763 -118 20.8H-116C-116 18.5433 -115.999 16.9109 -115.894 15.627C-115.791 14.3549 -115.589 13.5132 -115.237 12.8221L-117.019 11.9141ZM-113.086 7.98094C-114.779 8.8438 -116.156 10.2206 -117.019 11.9141L-115.237 12.8221C-114.566 11.5049 -113.495 10.4341 -112.178 9.76295L-113.086 7.98094ZM-104.2 7C-106.424 7 -108.152 6.99922 -109.536 7.11231C-110.932 7.22636 -112.066 7.46117 -113.086 7.98094L-112.178 9.76295C-111.487 9.41078 -110.645 9.20961 -109.373 9.10567C-108.089 9.00078 -106.457 9 -104.2 9V7ZM40.1999 7H-104.2V9H40.1999V7ZM49.0858 7.98094C48.0657 7.46117 46.9315 7.22636 45.5357 7.11231C44.1515 6.99922 42.4236 7 40.1999 7V9C42.4566 9 44.089 9.00078 45.3728 9.10567C46.645 9.20961 47.4866 9.41078 48.1778 9.76296L49.0858 7.98094ZM53.0189 11.9141C52.1561 10.2206 50.7793 8.8438 49.0858 7.98094L48.1778 9.76295C49.4949 10.4341 50.5658 11.5049 51.2369 12.8221L53.0189 11.9141ZM53.9999 20.8C53.9999 18.5763 54.0007 16.8484 53.8876 15.4642C53.7735 14.0683 53.5387 12.9342 53.0189 11.9141L51.2369 12.8221C51.5891 13.5132 51.7903 14.3549 51.8942 15.627C51.9991 16.9109 51.9999 18.5433 51.9999 20.8H53.9999ZM53.9999 78.0771V20.8H51.9999V78.0771H53.9999ZM60.9999 78.0771V53.1367H58.9999V78.0771H60.9999ZM60.9999 53.1367C60.9999 47.0616 65.9248 42.1367 71.9999 42.1367V40.1367C64.8202 40.1367 58.9999 45.957 58.9999 53.1367H60.9999ZM71.9999 42.1367C78.075 42.1367 82.9999 47.0616 82.9999 53.1367H84.9999C84.9999 45.957 79.1796 40.1367 71.9999 40.1367V42.1367ZM82.9999 53.1367V108.137H84.9999V53.1367H82.9999ZM82.9999 108.137C82.9999 114.212 78.075 119.137 71.9999 119.137V121.137C79.1796 121.137 84.9999 115.316 84.9999 108.137H82.9999ZM71.9999 119.137C65.9248 119.137 60.9999 114.212 60.9999 108.137H58.9999C58.9999 115.316 64.8202 121.137 71.9999 121.137V119.137ZM60.9999 108.137V95.3233H58.9999V108.137H60.9999ZM53.9999 107.2V95.3233H51.9999V107.2H53.9999ZM53.0189 116.086C53.5387 115.066 53.7735 113.932 53.8876 112.536C54.0007 111.152 53.9999 109.424 53.9999 107.2H51.9999C51.9999 109.457 51.9991 111.089 51.8942 112.373C51.7903 113.645 51.5891 114.487 51.2369 115.178L53.0189 116.086ZM49.0858 120.019C50.7793 119.156 52.1561 117.779 53.0189 116.086L51.2369 115.178C50.5658 116.495 49.4949 117.566 48.1778 118.237L49.0858 120.019ZM40.1999 121C42.4236 121 44.1515 121.001 45.5357 120.888C46.9315 120.774 48.0657 120.539 49.0858 120.019L48.1778 118.237C47.4866 118.589 46.645 118.79 45.3728 118.894C44.089 118.999 42.4566 119 40.1999 119V121ZM-104.2 121H40.1999V119H-104.2V121ZM-113.086 120.019C-112.066 120.539 -110.932 120.774 -109.536 120.888C-108.152 121.001 -106.424 121 -104.2 121V119C-106.457 119 -108.089 118.999 -109.373 118.894C-110.645 118.79 -111.487 118.589 -112.178 118.237L-113.086 120.019ZM-117.019 116.086C-116.156 117.779 -114.779 119.156 -113.086 120.019L-112.178 118.237C-113.495 117.566 -114.566 116.495 -115.237 115.178L-117.019 116.086ZM-118 107.2C-118 109.424 -118.001 111.152 -117.888 112.536C-117.774 113.932 -117.539 115.066 -117.019 116.086L-115.237 115.178C-115.589 114.487 -115.791 113.645 -115.894 112.373C-115.999 111.089 -116 109.457 -116 107.2H-118ZM-118 20.8V107.2H-116V20.8H-118ZM56.4999 90.8233C54.0146 90.8233 51.9999 92.838 51.9999 95.3233H53.9999C53.9999 93.9426 55.1192 92.8233 56.4999 92.8233V90.8233ZM60.9999 95.3233C60.9999 92.838 58.9852 90.8233 56.4999 90.8233V92.8233C57.8806 92.8233 58.9999 93.9426 58.9999 95.3233H60.9999ZM56.4999 82.5771C58.9852 82.5771 60.9999 80.5624 60.9999 78.0771H58.9999C58.9999 79.4579 57.8806 80.5771 56.4999 80.5771V82.5771ZM51.9999 78.0771C51.9999 80.5624 54.0146 82.5771 56.4999 82.5771V80.5771C55.1192 80.5771 53.9999 79.4579 53.9999 78.0771H51.9999Z" fill="#262424" mask="url(#path-1-inside-1_65_9266)"/> +</g> +<defs> +<clipPath id="clip0_65_9266"> +<rect width="92" height="128" fill="white"/> +</clipPath> +</defs> +</svg> diff --git a/packages/ui/assets/img/events/thumbnail-yellow.svg b/packages/ui/assets/img/events/thumbnail-yellow.svg new file mode 100644 index 0000000000000000000000000000000000000000..a30fcae78fe54b7450fa4511b0ac5624213f3ef3 --- /dev/null +++ b/packages/ui/assets/img/events/thumbnail-yellow.svg @@ -0,0 +1,11 @@ +<svg width="92" height="128" viewBox="0 0 92 128" fill="none" xmlns="http://www.w3.org/2000/svg"> +<g clip-path="url(#clip0_65_9368)"> +<rect width="92" height="128" fill="#FDFD80"/> +<path d="M68.2359 79.3493L68.2363 79.3479C70.6907 71.3385 75.8783 64.4928 82.8563 60.0498C89.8341 55.6069 98.1413 53.86 106.273 55.1241C114.404 56.3882 121.824 60.5802 127.187 66.943C132.55 73.3061 135.5 81.4186 135.5 89.8103L135.499 164.685C135.499 184.796 119.977 198.571 100.96 198.5C82.0633 198.428 66.6793 184.796 66.6793 164.685V114.964C66.6793 112.892 65.8717 110.902 64.4313 109.434C62.9905 107.965 61.0344 107.139 58.9926 107.139C56.9509 107.139 54.9947 107.965 53.554 109.434C52.1135 110.902 51.306 112.892 51.306 114.964V177.059C51.306 182.267 49.7442 186.884 46.7212 190.193C43.7046 193.496 39.1893 195.544 33.1802 195.544H0.627796C-5.25257 195.544 -9.76821 193.681 -12.8157 190.476C-15.8668 187.266 -17.5 182.654 -17.5 177.057V11.9857C-17.5 6.19961 -15.7426 1.58955 -12.6302 -1.57228C-9.51853 -4.7333 -5.00028 -6.5 0.62575 -6.5H33.9281C39.6917 -6.5 44.0149 -4.6718 46.9023 -1.49045C49.7964 1.69829 51.3063 6.31072 51.3063 11.9857V76.6738C51.3063 79.0117 52.2174 81.2559 53.8421 82.9119C55.4668 84.568 57.6724 85.5003 59.9742 85.5006C61.8172 85.5053 63.6125 84.9099 65.0985 83.8027C66.5843 82.6955 67.6829 81.1349 68.2359 79.3493Z" stroke="#262424"/> +</g> +<defs> +<clipPath id="clip0_65_9368"> +<rect width="92" height="128" fill="white"/> +</clipPath> +</defs> +</svg> diff --git a/packages/ui/components/atoms/HoliMoreCard.tsx b/packages/ui/components/atoms/HoliMoreCard.tsx index 3b558c9d2646d249a3dd4efcdc5dc98745cfb8f8..179643a34f3af3dce5f80514fbdb9aee7cf2f960 100644 --- a/packages/ui/components/atoms/HoliMoreCard.tsx +++ b/packages/ui/components/atoms/HoliMoreCard.tsx @@ -3,7 +3,7 @@ import { useMemo } from 'react' import type { PropsWithChildren } from 'react' import { type GestureResponderEvent, Pressable, type Role, StyleSheet, View } from 'react-native' -import HoliText from '@holi/ui/components/atoms/HoliText' +import { Text } from 'holi-bricks/components/text' import { type HoliTheme, useTheme } from '@holi/ui/styles/theme' import HoliLocalImage from './HoliLocalImage' @@ -13,9 +13,17 @@ export interface HoliMoreCardProps { label?: string role: Role testID?: string + size?: 'sm' | 'md' } -const HoliMoreCard = ({ children, onPress, role, testID, label = '' }: PropsWithChildren<HoliMoreCardProps>) => { +const HoliMoreCard = ({ + children, + onPress, + role, + testID, + label = '', + size = 'md', +}: PropsWithChildren<HoliMoreCardProps>) => { const { theme } = useTheme() const styles = useMemo(() => getStyles(theme), [theme]) @@ -26,14 +34,12 @@ const HoliMoreCard = ({ children, onPress, role, testID, label = '' }: PropsWith label="more" imageSource={require('@holi/ui/assets/img/illustrations/plus-circle.svg')} isSvg - width={96} - height={96} + width={size === 'sm' ? 48 : 96} + height={size === 'sm' ? 48 : 96} /> </View> <View style={styles.caption}> - <HoliText color="black300" size="small" bold> - {children} - </HoliText> + <Text size="sm">{children}</Text> </View> </Pressable> ) diff --git a/packages/ui/components/molecules/HoliButtonBell.tsx b/packages/ui/components/molecules/HoliButtonBell.tsx index 9d86e854234e9410aa4d1a98a4ae0970334fdc28..8a2c83025c68a510b64a0d3a8fa9226789229f84 100644 --- a/packages/ui/components/molecules/HoliButtonBell.tsx +++ b/packages/ui/components/molecules/HoliButtonBell.tsx @@ -3,6 +3,8 @@ import React from 'react' import NotificationBellBadge from '@holi/core/navigation/components/header/NotificationBellBadge' import type { HoliIconType } from '@holi/icons/src/HoliIconType' import { ButtonIcon } from 'holi-bricks/components/button' +import type { TrackingEvent } from '@holi/core/tracking' +import { ButtonIconTracked } from '@holi/core/components/Trackable' interface Props { label: string @@ -10,12 +12,32 @@ interface Props { showBell?: boolean onPress?: () => void testID?: string + trackingEvent?: TrackingEvent } -export const HoliButtonBell = ({ label, icon, showBell = false, onPress, testID = 'bell-button' }: Props) => { +export const HoliButtonBell = ({ + label, + icon, + showBell = false, + onPress, + testID = 'bell-button', + trackingEvent, +}: Props) => { return ( <NotificationBellBadge visible={showBell} testID={testID}> - <ButtonIcon label={label} testID={testID} transparent onPress={onPress} icon={icon} size="lg" /> + {trackingEvent ? ( + <ButtonIconTracked + label={label} + testID={testID} + transparent + onPress={onPress} + icon={icon} + size="lg" + trackingEvent={trackingEvent} + /> + ) : ( + <ButtonIcon label={label} testID={testID} transparent onPress={onPress} icon={icon} size="lg" /> + )} </NotificationBellBadge> ) } diff --git a/packages/ui/components/molecules/HoliCalendarIcon.tsx b/packages/ui/components/molecules/HoliCalendarIcon.tsx index 269ae3eda0d6a175e1d779cac57c377dbca8e10e..87a14b380ada132a3a8a2b9d381a1f69e07d1698 100644 --- a/packages/ui/components/molecules/HoliCalendarIcon.tsx +++ b/packages/ui/components/molecules/HoliCalendarIcon.tsx @@ -1,10 +1,13 @@ -import React, { useMemo } from 'react' +import type React from 'react' import { useTranslation } from 'react-i18next' -import { Platform, StyleProp, StyleSheet, View, ViewStyle } from 'react-native' +import { Platform, View } from 'react-native' import HoliBox from '@holi/ui/components/atoms/HoliBox' import HoliText from '@holi/ui/components/atoms/HoliText' -import { HoliTheme, useTheme } from '@holi/ui/styles/theme' +import { createStyleSheet } from 'holi-bricks/utils' +import Spacing from '@holi/ui/foundations/Spacing' +import { useStyles } from 'holi-bricks/hooks' +import type { UnistylesTheme } from 'react-native-unistyles' type HoliCalendarIconSize = 'small' | 'medium' @@ -15,7 +18,7 @@ export type HoliCalendarIconProps = { month: number disabled?: boolean size?: HoliCalendarIconSize - contentStyle?: StyleProp<ViewStyle> + colored?: boolean } // Month and day are human readable numbers, aka 1-12 and 1-31 @@ -24,12 +27,11 @@ const HoliCalendarIcon = ({ month, disabled = false, size = 'medium', - ...props + colored = true, }: React.PropsWithChildren<HoliCalendarIconProps>) => { const isSmall = size === 'small' const { t } = useTranslation() - const { theme } = useTheme() - const styles = useMemo(() => getStyles(isSmall, disabled, theme), [isSmall, disabled, theme]) + const { styles } = useStyles(stylesheet) const getMonthName = (month: number): string => { const monthNames = t('monthNames', { returnObjects: true }) as string[] @@ -41,13 +43,13 @@ const HoliCalendarIcon = ({ } return ( - <View style={[props.contentStyle, styles.wrapper]}> + <View style={styles.wrapper(isSmall, disabled)}> <HoliBox padding={0} testID={'holi-calendar-icon'}> - <HoliText bold style={styles.month}> + <HoliText bold style={styles.month(isSmall, disabled, colored)}> {getMonthName(month)} </HoliText> - <View style={styles.dayWrapper}> - <HoliText style={styles.day}>{day}</HoliText> + <View style={styles.dayWrapper(isSmall, disabled, colored)}> + <HoliText style={styles.day(isSmall, disabled)}>{day}</HoliText> </View> </HoliBox> </View> @@ -56,44 +58,64 @@ const HoliCalendarIcon = ({ export default HoliCalendarIcon -const getStyles = (isSmall: boolean, disabled: boolean, theme: HoliTheme) => - StyleSheet.create({ - wrapper: { +const stylesheet = createStyleSheet((theme) => ({ + wrapper: (isSmall: boolean, disabled: boolean) => { + return { alignItems: 'center', justifyContent: 'flex-start', overflow: 'hidden', - width: isSmall ? 40 : 60, - height: isSmall ? 40 : 60, + width: isSmall ? Spacing.xl : 60, + height: isSmall ? Spacing.xl : 60, borderWidth: 1, - borderRadius: 8, - borderColor: disabled || theme.dark ? theme.colors.foreground20 : theme.colors.foreground30, - backgroundColor: disabled || theme.dark ? theme.colors.foreground20 : theme.colors.foreground30, + borderRadius: Spacing['3xs'], + borderColor: getDarkColor(theme, disabled), + backgroundColor: getDarkColor(theme, disabled), paddingTop: 2, - }, - month: { - color: disabled || theme.dark ? theme.colors.background30 : theme.colors.brandColorA10, - fontSize: isSmall ? 9 : 12, - lineHeight: isSmall ? 9 : 12, + } + }, + month: (isSmall: boolean, disabled: boolean, colored: boolean) => { + return { + backgroundColor: getDarkColor(theme, disabled), + color: getLightColor(theme, disabled, colored), + fontSize: isSmall ? 9 : Spacing.xxs, + lineHeight: isSmall ? 9 : Spacing.xxs, paddingBottom: 2, textAlign: 'center', - }, - dayWrapper: { + } + }, + dayWrapper: (isSmall: boolean, disabled: boolean, colored: boolean) => { + return { display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: isSmall ? 28 : 44, - minWidth: isSmall ? 40 : 60, - backgroundColor: disabled || theme.dark ? theme.colors.background30 : theme.colors.brandColorA10, + minWidth: isSmall ? Spacing.xl : 60, + backgroundColor: getLightColor(theme, disabled, colored), borderTopLeftRadius: 6, borderTopRightRadius: 6, - }, - day: { - color: disabled || theme.dark ? theme.colors.foreground20 : theme.colors.foreground30, - fontSize: isSmall ? 20 : 28, + } + }, + day: (isSmall: boolean, disabled: boolean) => { + return { + color: getDarkColor(theme, disabled), + fontSize: isSmall ? Spacing.sm : 28, ...Platform.select({ native: { - paddingTop: isSmall ? 0 : 8, + paddingTop: isSmall ? 0 : Spacing['3xs'], }, }), - }, - }) + } + }, +})) + +const getLightColor = (theme: UnistylesTheme, disabled: boolean, colored: boolean) => { + return disabled + ? theme.colors.decorative.greyLight + : colored + ? theme.colors.decorative.yellowLight + : theme.colors.decorative.white +} + +const getDarkColor = (theme: UnistylesTheme, disabled: boolean) => { + return disabled ? theme.colors.decorative.greyDark : theme.colors.decorative.black +} diff --git a/packages/ui/components/molecules/HoliModalContentWrapper.tsx b/packages/ui/components/molecules/HoliModalContentWrapper.tsx index da6fbc6f9baa7be9db3b395d1a88db7cfb6236c3..a8b0487404cc85874080ed9bdc4de5162df11e8e 100644 --- a/packages/ui/components/molecules/HoliModalContentWrapper.tsx +++ b/packages/ui/components/molecules/HoliModalContentWrapper.tsx @@ -14,7 +14,7 @@ import { import { type EdgeInsets, useSafeAreaInsets } from 'react-native-safe-area-context' import HoliBox from '@holi/ui/components/atoms/HoliBox' -import { HoliHeading } from '@holi/ui/components/atoms/HoliHeading' +import { Text } from 'holi-bricks/components/text' import HoliLoader from '@holi/ui/components/molecules/HoliLoader' import { useKeyboard, useSoftKeyboard } from '@holi/ui/helper' import { dimensions } from '@holi/ui/styles/globalVars' @@ -65,9 +65,9 @@ const HoliModalContentWrapper = ( <> {!!headlineText?.length && ( <HoliBox padding={[0, 24, 16, 24]}> - <HoliHeading level="2" size="l" align={headlineAlign} testID={`${testID}-heading`}> + <Text headingLevel="2" size="3xl" textAlign={headlineAlign} testID={`${testID}-heading`}> {headlineText} - </HoliHeading> + </Text> </HoliBox> )} @@ -104,7 +104,6 @@ const HoliModalContentWrapper = ( {showFooter && ( <View style={styles.button}> <Button - inline label={actionButtonText} onPress={onActionButtonPress} disabled={actionButtonDisabled} diff --git a/packages/ui/components/molecules/HoliSwitch.tsx b/packages/ui/components/molecules/HoliSwitch.tsx index 175f7cef9f2d97e2989c2a5b5a3d619580eedcd9..f321354e01e10d2c738ee4811e39c7e31e1d2c3e 100644 --- a/packages/ui/components/molecules/HoliSwitch.tsx +++ b/packages/ui/components/molecules/HoliSwitch.tsx @@ -1,9 +1,11 @@ -import React, { useEffect, useRef, useState } from 'react' +import type React from 'react' +import { useEffect, useRef, useState } from 'react' import { Animated, StyleSheet, TouchableOpacity } from 'react-native' import { HoliIcon } from '@holi/icons/src/HoliIcon' import { Check, Close } from '@holi/icons/src/generated' import { useTheme } from '@holi/ui/styles/theme' +import { BorderRadius } from 'holi-bricks/tokens' export const HoliSwitchSizes = ['small', 'medium', 'large'] as const export type HoliSwitchSize = (typeof HoliSwitchSizes)[number] @@ -26,10 +28,11 @@ const HoliSwitch: React.FC<HoliSwitchProps> = ({ }) => { const { theme } = useTheme() const { colors } = theme + const { width, height, circleSize, circlePosXEnd, circlePosXStart } = getSizeStyles(size) const styles = getStyles() - const circlePosXEnd = 44 - const circlePosXStart = 4 + // const circlePosXEnd = 44 + // const circlePosXStart = 4 const prevSwitchOnRef = useRef<boolean>() const prevSwitchOn = !!prevSwitchOnRef.current const [animXValue] = useState(new Animated.Value(value ? 1 : 0)) @@ -63,33 +66,20 @@ const HoliSwitch: React.FC<HoliSwitchProps> = ({ return ( <TouchableOpacity testID={testID} onPress={handleOnPress} activeOpacity={0.8} disabled={disabled}> - <Animated.View - style={[ - styles.container, - getSizeStyles(size), - { - borderWidth: 0, - borderColor: 'transparent', - backgroundColor: animXValue.interpolate({ - inputRange: [0, 1], - outputRange: [backgroundColor, backgroundColor], - }), - }, - ]} - > + <Animated.View style={[styles.container, { width, height, backgroundColor }]}> <Animated.View style={[ styles.circle, - getSizeStyles(size), { + width: circleSize, + height: circleSize, backgroundColor: circleColor, - }, - { + borderRadius: circleSize / 2, transform: [ { translateX: animXValue.interpolate({ inputRange: [0, 1], - outputRange: [circlePosXStart, circlePosXEnd] as string[] | number[], + outputRange: [circlePosXStart, circlePosXEnd] as number[], }), }, ], @@ -97,9 +87,9 @@ const HoliSwitch: React.FC<HoliSwitchProps> = ({ ]} > {value ? ( - <HoliIcon icon={Check} color={colors.brandB300} size={26} /> + <HoliIcon icon={Check} color={colors.brandB300} size={circleSize} /> ) : ( - <HoliIcon icon={Close} color={colors.gray300} size={26} /> + <HoliIcon icon={Close} color={colors.gray300} size={circleSize} /> )} </Animated.View> </Animated.View> @@ -110,11 +100,11 @@ const HoliSwitch: React.FC<HoliSwitchProps> = ({ const getSizeStyles = (size: HoliSwitchSize) => { switch (size) { case 'large': - return { transform: [{ scaleX: 1 }, { scaleY: 1 }] } + return { width: 80, height: 40, circleSize: 32, circlePosXEnd: 44, circlePosXStart: 4 } case 'small': - return { transform: [{ scaleX: 0.5 }, { scaleY: 0.5 }] } + return { width: 40, height: 20, circleSize: 16, circlePosXEnd: 22, circlePosXStart: 2 } default: // medium - return { transform: [{ scaleX: 0.75 }, { scaleY: 0.75 }] } + return { width: 60, height: 30, circleSize: 24, circlePosXEnd: 33, circlePosXStart: 3 } } } @@ -123,9 +113,7 @@ const getStyles = () => container: { flexDirection: 'row', alignItems: 'center', - width: 80, - height: 40, - borderRadius: 100, + borderRadius: BorderRadius.xl, }, circle: { alignItems: 'center', diff --git a/packages/ui/components/molecules/__tests__/__snapshots__/HoliCalendarIcon.test.tsx.snap b/packages/ui/components/molecules/__tests__/__snapshots__/HoliCalendarIcon.test.tsx.snap index 422a776e3e8e7cc9792de7d79a8fef135353d486..6e81f94a32858b3e2ba5f4144ee90f3ffb5b913a 100644 --- a/packages/ui/components/molecules/__tests__/__snapshots__/HoliCalendarIcon.test.tsx.snap +++ b/packages/ui/components/molecules/__tests__/__snapshots__/HoliCalendarIcon.test.tsx.snap @@ -3,21 +3,18 @@ exports[`HoliCalendarIcon renders the correct disabled state of the component 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -39,6 +36,7 @@ exports[`HoliCalendarIcon renders the correct disabled state of the component 1` selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -77,7 +75,7 @@ exports[`HoliCalendarIcon renders the correct disabled state of the component 1` selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -97,21 +95,18 @@ exports[`HoliCalendarIcon renders the correct disabled state of the component 1` exports[`HoliCalendarIcon renders the correct shortened and internationalized name of the month 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -133,7 +128,8 @@ exports[`HoliCalendarIcon renders the correct shortened and internationalized na selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -150,7 +146,7 @@ exports[`HoliCalendarIcon renders the correct shortened and internationalized na style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -191,21 +187,18 @@ exports[`HoliCalendarIcon renders the correct shortened and internationalized na exports[`HoliCalendarIcon renders the correct size of the component 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -227,7 +220,8 @@ exports[`HoliCalendarIcon renders the correct size of the component 1`] = ` selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -244,7 +238,7 @@ exports[`HoliCalendarIcon renders the correct size of the component 1`] = ` style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -285,21 +279,18 @@ exports[`HoliCalendarIcon renders the correct size of the component 1`] = ` exports[`renders correctly renders correctly when day is '1', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -321,7 +312,8 @@ exports[`renders correctly renders correctly when day is '1', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -338,7 +330,7 @@ exports[`renders correctly renders correctly when day is '1', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -379,21 +371,18 @@ exports[`renders correctly renders correctly when day is '1', month is '1', disa exports[`renders correctly renders correctly when day is '1', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -415,7 +404,8 @@ exports[`renders correctly renders correctly when day is '1', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -432,7 +422,7 @@ exports[`renders correctly renders correctly when day is '1', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -473,21 +463,18 @@ exports[`renders correctly renders correctly when day is '1', month is '1', disa exports[`renders correctly renders correctly when day is '1', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -509,6 +496,7 @@ exports[`renders correctly renders correctly when day is '1', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -547,7 +535,7 @@ exports[`renders correctly renders correctly when day is '1', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -567,21 +555,18 @@ exports[`renders correctly renders correctly when day is '1', month is '1', disa exports[`renders correctly renders correctly when day is '1', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -603,6 +588,7 @@ exports[`renders correctly renders correctly when day is '1', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -641,7 +627,7 @@ exports[`renders correctly renders correctly when day is '1', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -661,21 +647,18 @@ exports[`renders correctly renders correctly when day is '1', month is '1', disa exports[`renders correctly renders correctly when day is '1', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -697,7 +680,8 @@ exports[`renders correctly renders correctly when day is '1', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -714,7 +698,7 @@ exports[`renders correctly renders correctly when day is '1', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -755,21 +739,18 @@ exports[`renders correctly renders correctly when day is '1', month is '2', disa exports[`renders correctly renders correctly when day is '1', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -791,7 +772,8 @@ exports[`renders correctly renders correctly when day is '1', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -808,7 +790,7 @@ exports[`renders correctly renders correctly when day is '1', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -849,21 +831,18 @@ exports[`renders correctly renders correctly when day is '1', month is '2', disa exports[`renders correctly renders correctly when day is '1', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -885,6 +864,7 @@ exports[`renders correctly renders correctly when day is '1', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -923,7 +903,7 @@ exports[`renders correctly renders correctly when day is '1', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -943,21 +923,18 @@ exports[`renders correctly renders correctly when day is '1', month is '2', disa exports[`renders correctly renders correctly when day is '1', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -979,6 +956,7 @@ exports[`renders correctly renders correctly when day is '1', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -1017,7 +995,7 @@ exports[`renders correctly renders correctly when day is '1', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -1037,21 +1015,18 @@ exports[`renders correctly renders correctly when day is '1', month is '2', disa exports[`renders correctly renders correctly when day is '1', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -1073,7 +1048,8 @@ exports[`renders correctly renders correctly when day is '1', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -1090,7 +1066,7 @@ exports[`renders correctly renders correctly when day is '1', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -1131,21 +1107,18 @@ exports[`renders correctly renders correctly when day is '1', month is '3', disa exports[`renders correctly renders correctly when day is '1', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -1167,7 +1140,8 @@ exports[`renders correctly renders correctly when day is '1', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -1184,7 +1158,7 @@ exports[`renders correctly renders correctly when day is '1', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -1225,21 +1199,18 @@ exports[`renders correctly renders correctly when day is '1', month is '3', disa exports[`renders correctly renders correctly when day is '1', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -1261,6 +1232,7 @@ exports[`renders correctly renders correctly when day is '1', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -1299,7 +1271,7 @@ exports[`renders correctly renders correctly when day is '1', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -1319,21 +1291,18 @@ exports[`renders correctly renders correctly when day is '1', month is '3', disa exports[`renders correctly renders correctly when day is '1', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -1355,6 +1324,7 @@ exports[`renders correctly renders correctly when day is '1', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -1393,7 +1363,7 @@ exports[`renders correctly renders correctly when day is '1', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -1413,21 +1383,18 @@ exports[`renders correctly renders correctly when day is '1', month is '3', disa exports[`renders correctly renders correctly when day is '1', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -1449,7 +1416,8 @@ exports[`renders correctly renders correctly when day is '1', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -1466,7 +1434,7 @@ exports[`renders correctly renders correctly when day is '1', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -1507,21 +1475,18 @@ exports[`renders correctly renders correctly when day is '1', month is '4', disa exports[`renders correctly renders correctly when day is '1', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -1543,7 +1508,8 @@ exports[`renders correctly renders correctly when day is '1', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -1560,7 +1526,7 @@ exports[`renders correctly renders correctly when day is '1', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -1601,21 +1567,18 @@ exports[`renders correctly renders correctly when day is '1', month is '4', disa exports[`renders correctly renders correctly when day is '1', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -1637,6 +1600,7 @@ exports[`renders correctly renders correctly when day is '1', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -1675,7 +1639,7 @@ exports[`renders correctly renders correctly when day is '1', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -1695,21 +1659,18 @@ exports[`renders correctly renders correctly when day is '1', month is '4', disa exports[`renders correctly renders correctly when day is '1', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -1731,6 +1692,7 @@ exports[`renders correctly renders correctly when day is '1', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -1769,7 +1731,7 @@ exports[`renders correctly renders correctly when day is '1', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -1789,21 +1751,18 @@ exports[`renders correctly renders correctly when day is '1', month is '4', disa exports[`renders correctly renders correctly when day is '1', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -1825,7 +1784,8 @@ exports[`renders correctly renders correctly when day is '1', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -1842,7 +1802,7 @@ exports[`renders correctly renders correctly when day is '1', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -1883,21 +1843,18 @@ exports[`renders correctly renders correctly when day is '1', month is '5', disa exports[`renders correctly renders correctly when day is '1', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -1919,7 +1876,8 @@ exports[`renders correctly renders correctly when day is '1', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -1936,7 +1894,7 @@ exports[`renders correctly renders correctly when day is '1', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -1977,21 +1935,18 @@ exports[`renders correctly renders correctly when day is '1', month is '5', disa exports[`renders correctly renders correctly when day is '1', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -2013,6 +1968,7 @@ exports[`renders correctly renders correctly when day is '1', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -2051,7 +2007,7 @@ exports[`renders correctly renders correctly when day is '1', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -2071,21 +2027,18 @@ exports[`renders correctly renders correctly when day is '1', month is '5', disa exports[`renders correctly renders correctly when day is '1', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -2107,6 +2060,7 @@ exports[`renders correctly renders correctly when day is '1', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -2145,7 +2099,7 @@ exports[`renders correctly renders correctly when day is '1', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -2165,21 +2119,18 @@ exports[`renders correctly renders correctly when day is '1', month is '5', disa exports[`renders correctly renders correctly when day is '1', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -2201,7 +2152,8 @@ exports[`renders correctly renders correctly when day is '1', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -2218,7 +2170,7 @@ exports[`renders correctly renders correctly when day is '1', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -2259,21 +2211,18 @@ exports[`renders correctly renders correctly when day is '1', month is '6', disa exports[`renders correctly renders correctly when day is '1', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -2295,7 +2244,8 @@ exports[`renders correctly renders correctly when day is '1', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -2312,7 +2262,7 @@ exports[`renders correctly renders correctly when day is '1', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -2353,21 +2303,18 @@ exports[`renders correctly renders correctly when day is '1', month is '6', disa exports[`renders correctly renders correctly when day is '1', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -2389,6 +2336,7 @@ exports[`renders correctly renders correctly when day is '1', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -2427,7 +2375,7 @@ exports[`renders correctly renders correctly when day is '1', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -2447,21 +2395,18 @@ exports[`renders correctly renders correctly when day is '1', month is '6', disa exports[`renders correctly renders correctly when day is '1', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -2483,6 +2428,7 @@ exports[`renders correctly renders correctly when day is '1', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -2521,7 +2467,7 @@ exports[`renders correctly renders correctly when day is '1', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -2541,21 +2487,18 @@ exports[`renders correctly renders correctly when day is '1', month is '6', disa exports[`renders correctly renders correctly when day is '1', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -2577,7 +2520,8 @@ exports[`renders correctly renders correctly when day is '1', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -2594,7 +2538,7 @@ exports[`renders correctly renders correctly when day is '1', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -2635,21 +2579,18 @@ exports[`renders correctly renders correctly when day is '1', month is '7', disa exports[`renders correctly renders correctly when day is '1', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -2671,7 +2612,8 @@ exports[`renders correctly renders correctly when day is '1', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -2688,7 +2630,7 @@ exports[`renders correctly renders correctly when day is '1', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -2729,21 +2671,18 @@ exports[`renders correctly renders correctly when day is '1', month is '7', disa exports[`renders correctly renders correctly when day is '1', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -2765,6 +2704,7 @@ exports[`renders correctly renders correctly when day is '1', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -2803,7 +2743,7 @@ exports[`renders correctly renders correctly when day is '1', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -2823,21 +2763,18 @@ exports[`renders correctly renders correctly when day is '1', month is '7', disa exports[`renders correctly renders correctly when day is '1', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -2859,6 +2796,7 @@ exports[`renders correctly renders correctly when day is '1', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -2897,7 +2835,7 @@ exports[`renders correctly renders correctly when day is '1', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -2917,21 +2855,18 @@ exports[`renders correctly renders correctly when day is '1', month is '7', disa exports[`renders correctly renders correctly when day is '1', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -2953,7 +2888,8 @@ exports[`renders correctly renders correctly when day is '1', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -2970,7 +2906,7 @@ exports[`renders correctly renders correctly when day is '1', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -3011,21 +2947,18 @@ exports[`renders correctly renders correctly when day is '1', month is '8', disa exports[`renders correctly renders correctly when day is '1', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -3047,7 +2980,8 @@ exports[`renders correctly renders correctly when day is '1', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -3064,7 +2998,7 @@ exports[`renders correctly renders correctly when day is '1', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -3105,21 +3039,18 @@ exports[`renders correctly renders correctly when day is '1', month is '8', disa exports[`renders correctly renders correctly when day is '1', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -3141,6 +3072,7 @@ exports[`renders correctly renders correctly when day is '1', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -3179,7 +3111,7 @@ exports[`renders correctly renders correctly when day is '1', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -3199,21 +3131,18 @@ exports[`renders correctly renders correctly when day is '1', month is '8', disa exports[`renders correctly renders correctly when day is '1', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -3235,6 +3164,7 @@ exports[`renders correctly renders correctly when day is '1', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -3273,7 +3203,7 @@ exports[`renders correctly renders correctly when day is '1', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -3293,21 +3223,18 @@ exports[`renders correctly renders correctly when day is '1', month is '8', disa exports[`renders correctly renders correctly when day is '1', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -3329,7 +3256,8 @@ exports[`renders correctly renders correctly when day is '1', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -3346,7 +3274,7 @@ exports[`renders correctly renders correctly when day is '1', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -3387,21 +3315,18 @@ exports[`renders correctly renders correctly when day is '1', month is '9', disa exports[`renders correctly renders correctly when day is '1', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -3423,7 +3348,8 @@ exports[`renders correctly renders correctly when day is '1', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -3440,7 +3366,7 @@ exports[`renders correctly renders correctly when day is '1', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -3481,21 +3407,18 @@ exports[`renders correctly renders correctly when day is '1', month is '9', disa exports[`renders correctly renders correctly when day is '1', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -3517,6 +3440,7 @@ exports[`renders correctly renders correctly when day is '1', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -3555,7 +3479,7 @@ exports[`renders correctly renders correctly when day is '1', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -3575,21 +3499,18 @@ exports[`renders correctly renders correctly when day is '1', month is '9', disa exports[`renders correctly renders correctly when day is '1', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -3611,6 +3532,7 @@ exports[`renders correctly renders correctly when day is '1', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -3649,7 +3571,7 @@ exports[`renders correctly renders correctly when day is '1', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -3669,21 +3591,18 @@ exports[`renders correctly renders correctly when day is '1', month is '9', disa exports[`renders correctly renders correctly when day is '1', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -3705,7 +3624,8 @@ exports[`renders correctly renders correctly when day is '1', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -3722,7 +3642,7 @@ exports[`renders correctly renders correctly when day is '1', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -3763,21 +3683,18 @@ exports[`renders correctly renders correctly when day is '1', month is '10', dis exports[`renders correctly renders correctly when day is '1', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -3799,7 +3716,8 @@ exports[`renders correctly renders correctly when day is '1', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -3816,7 +3734,7 @@ exports[`renders correctly renders correctly when day is '1', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -3857,21 +3775,18 @@ exports[`renders correctly renders correctly when day is '1', month is '10', dis exports[`renders correctly renders correctly when day is '1', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -3893,6 +3808,7 @@ exports[`renders correctly renders correctly when day is '1', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -3931,7 +3847,7 @@ exports[`renders correctly renders correctly when day is '1', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -3951,21 +3867,18 @@ exports[`renders correctly renders correctly when day is '1', month is '10', dis exports[`renders correctly renders correctly when day is '1', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -3987,6 +3900,7 @@ exports[`renders correctly renders correctly when day is '1', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -4025,7 +3939,7 @@ exports[`renders correctly renders correctly when day is '1', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -4045,21 +3959,18 @@ exports[`renders correctly renders correctly when day is '1', month is '10', dis exports[`renders correctly renders correctly when day is '1', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -4081,7 +3992,8 @@ exports[`renders correctly renders correctly when day is '1', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -4096,7 +4008,7 @@ exports[`renders correctly renders correctly when day is '1', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -4137,21 +4049,18 @@ exports[`renders correctly renders correctly when day is '1', month is '11', dis exports[`renders correctly renders correctly when day is '1', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -4173,7 +4082,8 @@ exports[`renders correctly renders correctly when day is '1', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -4188,7 +4098,7 @@ exports[`renders correctly renders correctly when day is '1', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -4229,21 +4139,18 @@ exports[`renders correctly renders correctly when day is '1', month is '11', dis exports[`renders correctly renders correctly when day is '1', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -4265,6 +4172,7 @@ exports[`renders correctly renders correctly when day is '1', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -4301,7 +4209,7 @@ exports[`renders correctly renders correctly when day is '1', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -4321,21 +4229,18 @@ exports[`renders correctly renders correctly when day is '1', month is '11', dis exports[`renders correctly renders correctly when day is '1', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -4357,6 +4262,7 @@ exports[`renders correctly renders correctly when day is '1', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -4393,7 +4299,7 @@ exports[`renders correctly renders correctly when day is '1', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -4413,21 +4319,18 @@ exports[`renders correctly renders correctly when day is '1', month is '11', dis exports[`renders correctly renders correctly when day is '1', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -4449,7 +4352,8 @@ exports[`renders correctly renders correctly when day is '1', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -4464,7 +4368,7 @@ exports[`renders correctly renders correctly when day is '1', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -4505,21 +4409,18 @@ exports[`renders correctly renders correctly when day is '1', month is '12', dis exports[`renders correctly renders correctly when day is '1', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -4541,7 +4442,8 @@ exports[`renders correctly renders correctly when day is '1', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -4556,7 +4458,7 @@ exports[`renders correctly renders correctly when day is '1', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -4597,21 +4499,18 @@ exports[`renders correctly renders correctly when day is '1', month is '12', dis exports[`renders correctly renders correctly when day is '1', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -4633,6 +4532,7 @@ exports[`renders correctly renders correctly when day is '1', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -4669,7 +4569,7 @@ exports[`renders correctly renders correctly when day is '1', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -4689,21 +4589,18 @@ exports[`renders correctly renders correctly when day is '1', month is '12', dis exports[`renders correctly renders correctly when day is '1', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -4725,6 +4622,7 @@ exports[`renders correctly renders correctly when day is '1', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -4761,7 +4659,7 @@ exports[`renders correctly renders correctly when day is '1', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -4781,21 +4679,18 @@ exports[`renders correctly renders correctly when day is '1', month is '12', dis exports[`renders correctly renders correctly when day is '2', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -4817,7 +4712,8 @@ exports[`renders correctly renders correctly when day is '2', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -4834,7 +4730,7 @@ exports[`renders correctly renders correctly when day is '2', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -4875,21 +4771,18 @@ exports[`renders correctly renders correctly when day is '2', month is '1', disa exports[`renders correctly renders correctly when day is '2', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -4911,7 +4804,8 @@ exports[`renders correctly renders correctly when day is '2', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -4928,7 +4822,7 @@ exports[`renders correctly renders correctly when day is '2', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -4969,21 +4863,18 @@ exports[`renders correctly renders correctly when day is '2', month is '1', disa exports[`renders correctly renders correctly when day is '2', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -5005,6 +4896,7 @@ exports[`renders correctly renders correctly when day is '2', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -5043,7 +4935,7 @@ exports[`renders correctly renders correctly when day is '2', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -5063,21 +4955,18 @@ exports[`renders correctly renders correctly when day is '2', month is '1', disa exports[`renders correctly renders correctly when day is '2', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -5099,6 +4988,7 @@ exports[`renders correctly renders correctly when day is '2', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -5137,7 +5027,7 @@ exports[`renders correctly renders correctly when day is '2', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -5157,21 +5047,18 @@ exports[`renders correctly renders correctly when day is '2', month is '1', disa exports[`renders correctly renders correctly when day is '2', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -5193,7 +5080,8 @@ exports[`renders correctly renders correctly when day is '2', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -5210,7 +5098,7 @@ exports[`renders correctly renders correctly when day is '2', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -5251,21 +5139,18 @@ exports[`renders correctly renders correctly when day is '2', month is '2', disa exports[`renders correctly renders correctly when day is '2', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -5287,7 +5172,8 @@ exports[`renders correctly renders correctly when day is '2', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -5304,7 +5190,7 @@ exports[`renders correctly renders correctly when day is '2', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -5345,21 +5231,18 @@ exports[`renders correctly renders correctly when day is '2', month is '2', disa exports[`renders correctly renders correctly when day is '2', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -5381,6 +5264,7 @@ exports[`renders correctly renders correctly when day is '2', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -5419,7 +5303,7 @@ exports[`renders correctly renders correctly when day is '2', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -5439,21 +5323,18 @@ exports[`renders correctly renders correctly when day is '2', month is '2', disa exports[`renders correctly renders correctly when day is '2', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -5475,6 +5356,7 @@ exports[`renders correctly renders correctly when day is '2', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -5513,7 +5395,7 @@ exports[`renders correctly renders correctly when day is '2', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -5533,21 +5415,18 @@ exports[`renders correctly renders correctly when day is '2', month is '2', disa exports[`renders correctly renders correctly when day is '2', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -5569,7 +5448,8 @@ exports[`renders correctly renders correctly when day is '2', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -5586,7 +5466,7 @@ exports[`renders correctly renders correctly when day is '2', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -5627,21 +5507,18 @@ exports[`renders correctly renders correctly when day is '2', month is '3', disa exports[`renders correctly renders correctly when day is '2', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -5663,7 +5540,8 @@ exports[`renders correctly renders correctly when day is '2', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -5680,7 +5558,7 @@ exports[`renders correctly renders correctly when day is '2', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -5721,21 +5599,18 @@ exports[`renders correctly renders correctly when day is '2', month is '3', disa exports[`renders correctly renders correctly when day is '2', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -5757,6 +5632,7 @@ exports[`renders correctly renders correctly when day is '2', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -5795,7 +5671,7 @@ exports[`renders correctly renders correctly when day is '2', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -5815,21 +5691,18 @@ exports[`renders correctly renders correctly when day is '2', month is '3', disa exports[`renders correctly renders correctly when day is '2', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -5851,6 +5724,7 @@ exports[`renders correctly renders correctly when day is '2', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -5889,7 +5763,7 @@ exports[`renders correctly renders correctly when day is '2', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -5909,21 +5783,18 @@ exports[`renders correctly renders correctly when day is '2', month is '3', disa exports[`renders correctly renders correctly when day is '2', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -5945,7 +5816,8 @@ exports[`renders correctly renders correctly when day is '2', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -5962,7 +5834,7 @@ exports[`renders correctly renders correctly when day is '2', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -6003,21 +5875,18 @@ exports[`renders correctly renders correctly when day is '2', month is '4', disa exports[`renders correctly renders correctly when day is '2', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -6039,7 +5908,8 @@ exports[`renders correctly renders correctly when day is '2', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -6056,7 +5926,7 @@ exports[`renders correctly renders correctly when day is '2', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -6097,21 +5967,18 @@ exports[`renders correctly renders correctly when day is '2', month is '4', disa exports[`renders correctly renders correctly when day is '2', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -6133,6 +6000,7 @@ exports[`renders correctly renders correctly when day is '2', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -6171,7 +6039,7 @@ exports[`renders correctly renders correctly when day is '2', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -6191,21 +6059,18 @@ exports[`renders correctly renders correctly when day is '2', month is '4', disa exports[`renders correctly renders correctly when day is '2', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -6227,6 +6092,7 @@ exports[`renders correctly renders correctly when day is '2', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -6265,7 +6131,7 @@ exports[`renders correctly renders correctly when day is '2', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -6285,21 +6151,18 @@ exports[`renders correctly renders correctly when day is '2', month is '4', disa exports[`renders correctly renders correctly when day is '2', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -6321,7 +6184,8 @@ exports[`renders correctly renders correctly when day is '2', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -6338,7 +6202,7 @@ exports[`renders correctly renders correctly when day is '2', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -6379,21 +6243,18 @@ exports[`renders correctly renders correctly when day is '2', month is '5', disa exports[`renders correctly renders correctly when day is '2', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -6415,7 +6276,8 @@ exports[`renders correctly renders correctly when day is '2', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -6432,7 +6294,7 @@ exports[`renders correctly renders correctly when day is '2', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -6473,21 +6335,18 @@ exports[`renders correctly renders correctly when day is '2', month is '5', disa exports[`renders correctly renders correctly when day is '2', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -6509,6 +6368,7 @@ exports[`renders correctly renders correctly when day is '2', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -6547,7 +6407,7 @@ exports[`renders correctly renders correctly when day is '2', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -6567,21 +6427,18 @@ exports[`renders correctly renders correctly when day is '2', month is '5', disa exports[`renders correctly renders correctly when day is '2', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -6603,6 +6460,7 @@ exports[`renders correctly renders correctly when day is '2', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -6641,7 +6499,7 @@ exports[`renders correctly renders correctly when day is '2', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -6661,21 +6519,18 @@ exports[`renders correctly renders correctly when day is '2', month is '5', disa exports[`renders correctly renders correctly when day is '2', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -6697,7 +6552,8 @@ exports[`renders correctly renders correctly when day is '2', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -6714,7 +6570,7 @@ exports[`renders correctly renders correctly when day is '2', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -6755,21 +6611,18 @@ exports[`renders correctly renders correctly when day is '2', month is '6', disa exports[`renders correctly renders correctly when day is '2', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -6791,7 +6644,8 @@ exports[`renders correctly renders correctly when day is '2', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -6808,7 +6662,7 @@ exports[`renders correctly renders correctly when day is '2', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -6849,21 +6703,18 @@ exports[`renders correctly renders correctly when day is '2', month is '6', disa exports[`renders correctly renders correctly when day is '2', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -6885,6 +6736,7 @@ exports[`renders correctly renders correctly when day is '2', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -6923,7 +6775,7 @@ exports[`renders correctly renders correctly when day is '2', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -6943,21 +6795,18 @@ exports[`renders correctly renders correctly when day is '2', month is '6', disa exports[`renders correctly renders correctly when day is '2', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -6979,6 +6828,7 @@ exports[`renders correctly renders correctly when day is '2', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -7017,7 +6867,7 @@ exports[`renders correctly renders correctly when day is '2', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -7037,21 +6887,18 @@ exports[`renders correctly renders correctly when day is '2', month is '6', disa exports[`renders correctly renders correctly when day is '2', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -7073,7 +6920,8 @@ exports[`renders correctly renders correctly when day is '2', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -7090,7 +6938,7 @@ exports[`renders correctly renders correctly when day is '2', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -7131,21 +6979,18 @@ exports[`renders correctly renders correctly when day is '2', month is '7', disa exports[`renders correctly renders correctly when day is '2', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -7167,7 +7012,8 @@ exports[`renders correctly renders correctly when day is '2', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -7184,7 +7030,7 @@ exports[`renders correctly renders correctly when day is '2', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -7225,21 +7071,18 @@ exports[`renders correctly renders correctly when day is '2', month is '7', disa exports[`renders correctly renders correctly when day is '2', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -7261,6 +7104,7 @@ exports[`renders correctly renders correctly when day is '2', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -7299,7 +7143,7 @@ exports[`renders correctly renders correctly when day is '2', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -7319,21 +7163,18 @@ exports[`renders correctly renders correctly when day is '2', month is '7', disa exports[`renders correctly renders correctly when day is '2', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -7355,6 +7196,7 @@ exports[`renders correctly renders correctly when day is '2', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -7393,7 +7235,7 @@ exports[`renders correctly renders correctly when day is '2', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -7413,21 +7255,18 @@ exports[`renders correctly renders correctly when day is '2', month is '7', disa exports[`renders correctly renders correctly when day is '2', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -7449,7 +7288,8 @@ exports[`renders correctly renders correctly when day is '2', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -7466,7 +7306,7 @@ exports[`renders correctly renders correctly when day is '2', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -7507,21 +7347,18 @@ exports[`renders correctly renders correctly when day is '2', month is '8', disa exports[`renders correctly renders correctly when day is '2', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -7543,7 +7380,8 @@ exports[`renders correctly renders correctly when day is '2', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -7560,7 +7398,7 @@ exports[`renders correctly renders correctly when day is '2', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -7601,21 +7439,18 @@ exports[`renders correctly renders correctly when day is '2', month is '8', disa exports[`renders correctly renders correctly when day is '2', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -7637,6 +7472,7 @@ exports[`renders correctly renders correctly when day is '2', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -7675,7 +7511,7 @@ exports[`renders correctly renders correctly when day is '2', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -7695,21 +7531,18 @@ exports[`renders correctly renders correctly when day is '2', month is '8', disa exports[`renders correctly renders correctly when day is '2', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -7731,6 +7564,7 @@ exports[`renders correctly renders correctly when day is '2', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -7769,7 +7603,7 @@ exports[`renders correctly renders correctly when day is '2', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -7789,21 +7623,18 @@ exports[`renders correctly renders correctly when day is '2', month is '8', disa exports[`renders correctly renders correctly when day is '2', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -7825,7 +7656,8 @@ exports[`renders correctly renders correctly when day is '2', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -7842,7 +7674,7 @@ exports[`renders correctly renders correctly when day is '2', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -7883,21 +7715,18 @@ exports[`renders correctly renders correctly when day is '2', month is '9', disa exports[`renders correctly renders correctly when day is '2', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -7919,7 +7748,8 @@ exports[`renders correctly renders correctly when day is '2', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -7936,7 +7766,7 @@ exports[`renders correctly renders correctly when day is '2', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -7977,21 +7807,18 @@ exports[`renders correctly renders correctly when day is '2', month is '9', disa exports[`renders correctly renders correctly when day is '2', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -8013,6 +7840,7 @@ exports[`renders correctly renders correctly when day is '2', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -8051,7 +7879,7 @@ exports[`renders correctly renders correctly when day is '2', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -8071,21 +7899,18 @@ exports[`renders correctly renders correctly when day is '2', month is '9', disa exports[`renders correctly renders correctly when day is '2', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -8107,6 +7932,7 @@ exports[`renders correctly renders correctly when day is '2', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -8145,7 +7971,7 @@ exports[`renders correctly renders correctly when day is '2', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -8165,21 +7991,18 @@ exports[`renders correctly renders correctly when day is '2', month is '9', disa exports[`renders correctly renders correctly when day is '2', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -8201,7 +8024,8 @@ exports[`renders correctly renders correctly when day is '2', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -8218,7 +8042,7 @@ exports[`renders correctly renders correctly when day is '2', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -8259,21 +8083,18 @@ exports[`renders correctly renders correctly when day is '2', month is '10', dis exports[`renders correctly renders correctly when day is '2', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -8295,7 +8116,8 @@ exports[`renders correctly renders correctly when day is '2', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -8312,7 +8134,7 @@ exports[`renders correctly renders correctly when day is '2', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -8353,115 +8175,18 @@ exports[`renders correctly renders correctly when day is '2', month is '10', dis exports[`renders correctly renders correctly when day is '2', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] - } -> - <View - style={ - { - "padding": 0, - } + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, } - testID="holi-calendar-icon" - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#ebebeb", - "fontFamily": "InstrumentSans-Medium", - "fontSize": 12, - "fontWeight": "500", - "lineHeight": 12, - "paddingBottom": 2, - "textAlign": "center", - "userSelect": "auto", - } - } - > - S - </Text> - <View - style={ - { - "alignItems": "center", - "backgroundColor": "#ebebeb", - "borderTopLeftRadius": 6, - "borderTopRightRadius": 6, - "display": "flex", - "justifyContent": "center", - "minHeight": 44, - "minWidth": 60, - } - } - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#787777", - "fontFamily": "InstrumentSans-Regular", - "fontSize": 28, - "fontWeight": "400", - "lineHeight": 22.4, - "paddingTop": 8, - "userSelect": "auto", - } - } - > - 2 - </Text> - </View> - </View> -</View> -`; - -exports[`renders correctly renders correctly when day is '2', month is '10', disabled is 'true', size is 'small' 1`] = ` -<View - style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] } > <View @@ -8483,6 +8208,99 @@ exports[`renders correctly renders correctly when day is '2', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", + "color": "#ebebeb", + "fontFamily": "InstrumentSans-Medium", + "fontSize": 12, + "fontWeight": "500", + "lineHeight": 12, + "paddingBottom": 2, + "textAlign": "center", + "userSelect": "auto", + } + } + > + S + </Text> + <View + style={ + { + "alignItems": "center", + "backgroundColor": "#ebebeb", + "borderTopLeftRadius": 6, + "borderTopRightRadius": 6, + "display": "flex", + "justifyContent": "center", + "minHeight": 44, + "minWidth": 60, + } + } + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "color": "#676565", + "fontFamily": "InstrumentSans-Regular", + "fontSize": 28, + "fontWeight": "400", + "lineHeight": 22.4, + "paddingTop": 8, + "userSelect": "auto", + } + } + > + 2 + </Text> + </View> + </View> +</View> +`; + +exports[`renders correctly renders correctly when day is '2', month is '10', disabled is 'true', size is 'small' 1`] = ` +<View + style={ + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } + } +> + <View + style={ + { + "padding": 0, + } + } + testID="holi-calendar-icon" + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -8521,7 +8339,7 @@ exports[`renders correctly renders correctly when day is '2', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -8541,21 +8359,18 @@ exports[`renders correctly renders correctly when day is '2', month is '10', dis exports[`renders correctly renders correctly when day is '2', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -8577,7 +8392,8 @@ exports[`renders correctly renders correctly when day is '2', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -8592,7 +8408,7 @@ exports[`renders correctly renders correctly when day is '2', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -8633,21 +8449,18 @@ exports[`renders correctly renders correctly when day is '2', month is '11', dis exports[`renders correctly renders correctly when day is '2', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -8669,7 +8482,8 @@ exports[`renders correctly renders correctly when day is '2', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -8684,7 +8498,7 @@ exports[`renders correctly renders correctly when day is '2', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -8725,21 +8539,18 @@ exports[`renders correctly renders correctly when day is '2', month is '11', dis exports[`renders correctly renders correctly when day is '2', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -8761,6 +8572,7 @@ exports[`renders correctly renders correctly when day is '2', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -8797,7 +8609,7 @@ exports[`renders correctly renders correctly when day is '2', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -8817,21 +8629,18 @@ exports[`renders correctly renders correctly when day is '2', month is '11', dis exports[`renders correctly renders correctly when day is '2', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -8853,6 +8662,7 @@ exports[`renders correctly renders correctly when day is '2', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -8889,7 +8699,7 @@ exports[`renders correctly renders correctly when day is '2', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -8909,21 +8719,18 @@ exports[`renders correctly renders correctly when day is '2', month is '11', dis exports[`renders correctly renders correctly when day is '2', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -8945,7 +8752,8 @@ exports[`renders correctly renders correctly when day is '2', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -8960,7 +8768,7 @@ exports[`renders correctly renders correctly when day is '2', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -9001,21 +8809,18 @@ exports[`renders correctly renders correctly when day is '2', month is '12', dis exports[`renders correctly renders correctly when day is '2', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -9037,7 +8842,8 @@ exports[`renders correctly renders correctly when day is '2', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -9052,7 +8858,7 @@ exports[`renders correctly renders correctly when day is '2', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -9093,21 +8899,18 @@ exports[`renders correctly renders correctly when day is '2', month is '12', dis exports[`renders correctly renders correctly when day is '2', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -9129,6 +8932,7 @@ exports[`renders correctly renders correctly when day is '2', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -9165,7 +8969,7 @@ exports[`renders correctly renders correctly when day is '2', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -9185,21 +8989,18 @@ exports[`renders correctly renders correctly when day is '2', month is '12', dis exports[`renders correctly renders correctly when day is '2', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -9221,6 +9022,7 @@ exports[`renders correctly renders correctly when day is '2', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -9257,7 +9059,7 @@ exports[`renders correctly renders correctly when day is '2', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -9277,21 +9079,18 @@ exports[`renders correctly renders correctly when day is '2', month is '12', dis exports[`renders correctly renders correctly when day is '3', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -9313,7 +9112,8 @@ exports[`renders correctly renders correctly when day is '3', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -9330,7 +9130,7 @@ exports[`renders correctly renders correctly when day is '3', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -9371,21 +9171,18 @@ exports[`renders correctly renders correctly when day is '3', month is '1', disa exports[`renders correctly renders correctly when day is '3', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -9407,7 +9204,8 @@ exports[`renders correctly renders correctly when day is '3', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -9424,7 +9222,7 @@ exports[`renders correctly renders correctly when day is '3', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -9465,21 +9263,18 @@ exports[`renders correctly renders correctly when day is '3', month is '1', disa exports[`renders correctly renders correctly when day is '3', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -9501,6 +9296,7 @@ exports[`renders correctly renders correctly when day is '3', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -9539,7 +9335,7 @@ exports[`renders correctly renders correctly when day is '3', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -9559,21 +9355,18 @@ exports[`renders correctly renders correctly when day is '3', month is '1', disa exports[`renders correctly renders correctly when day is '3', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -9595,6 +9388,7 @@ exports[`renders correctly renders correctly when day is '3', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -9633,7 +9427,7 @@ exports[`renders correctly renders correctly when day is '3', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -9653,21 +9447,18 @@ exports[`renders correctly renders correctly when day is '3', month is '1', disa exports[`renders correctly renders correctly when day is '3', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -9689,7 +9480,8 @@ exports[`renders correctly renders correctly when day is '3', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -9706,7 +9498,7 @@ exports[`renders correctly renders correctly when day is '3', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -9747,21 +9539,18 @@ exports[`renders correctly renders correctly when day is '3', month is '2', disa exports[`renders correctly renders correctly when day is '3', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -9783,7 +9572,8 @@ exports[`renders correctly renders correctly when day is '3', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -9800,7 +9590,7 @@ exports[`renders correctly renders correctly when day is '3', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -9841,21 +9631,18 @@ exports[`renders correctly renders correctly when day is '3', month is '2', disa exports[`renders correctly renders correctly when day is '3', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -9877,6 +9664,7 @@ exports[`renders correctly renders correctly when day is '3', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -9915,7 +9703,7 @@ exports[`renders correctly renders correctly when day is '3', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -9935,21 +9723,18 @@ exports[`renders correctly renders correctly when day is '3', month is '2', disa exports[`renders correctly renders correctly when day is '3', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -9971,6 +9756,7 @@ exports[`renders correctly renders correctly when day is '3', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -10009,7 +9795,7 @@ exports[`renders correctly renders correctly when day is '3', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -10029,21 +9815,18 @@ exports[`renders correctly renders correctly when day is '3', month is '2', disa exports[`renders correctly renders correctly when day is '3', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -10065,7 +9848,8 @@ exports[`renders correctly renders correctly when day is '3', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -10082,7 +9866,7 @@ exports[`renders correctly renders correctly when day is '3', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -10123,21 +9907,18 @@ exports[`renders correctly renders correctly when day is '3', month is '3', disa exports[`renders correctly renders correctly when day is '3', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -10159,7 +9940,8 @@ exports[`renders correctly renders correctly when day is '3', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -10176,7 +9958,7 @@ exports[`renders correctly renders correctly when day is '3', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -10217,21 +9999,18 @@ exports[`renders correctly renders correctly when day is '3', month is '3', disa exports[`renders correctly renders correctly when day is '3', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -10253,6 +10032,7 @@ exports[`renders correctly renders correctly when day is '3', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -10291,7 +10071,7 @@ exports[`renders correctly renders correctly when day is '3', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -10311,21 +10091,18 @@ exports[`renders correctly renders correctly when day is '3', month is '3', disa exports[`renders correctly renders correctly when day is '3', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -10347,6 +10124,7 @@ exports[`renders correctly renders correctly when day is '3', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -10385,7 +10163,7 @@ exports[`renders correctly renders correctly when day is '3', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -10405,21 +10183,18 @@ exports[`renders correctly renders correctly when day is '3', month is '3', disa exports[`renders correctly renders correctly when day is '3', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -10441,7 +10216,8 @@ exports[`renders correctly renders correctly when day is '3', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -10458,7 +10234,7 @@ exports[`renders correctly renders correctly when day is '3', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -10499,21 +10275,18 @@ exports[`renders correctly renders correctly when day is '3', month is '4', disa exports[`renders correctly renders correctly when day is '3', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -10535,7 +10308,8 @@ exports[`renders correctly renders correctly when day is '3', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -10552,7 +10326,7 @@ exports[`renders correctly renders correctly when day is '3', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -10593,21 +10367,18 @@ exports[`renders correctly renders correctly when day is '3', month is '4', disa exports[`renders correctly renders correctly when day is '3', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -10629,6 +10400,7 @@ exports[`renders correctly renders correctly when day is '3', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -10667,7 +10439,7 @@ exports[`renders correctly renders correctly when day is '3', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -10687,21 +10459,18 @@ exports[`renders correctly renders correctly when day is '3', month is '4', disa exports[`renders correctly renders correctly when day is '3', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -10723,6 +10492,7 @@ exports[`renders correctly renders correctly when day is '3', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -10761,7 +10531,7 @@ exports[`renders correctly renders correctly when day is '3', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -10781,21 +10551,18 @@ exports[`renders correctly renders correctly when day is '3', month is '4', disa exports[`renders correctly renders correctly when day is '3', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -10817,7 +10584,8 @@ exports[`renders correctly renders correctly when day is '3', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -10834,7 +10602,7 @@ exports[`renders correctly renders correctly when day is '3', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -10875,21 +10643,18 @@ exports[`renders correctly renders correctly when day is '3', month is '5', disa exports[`renders correctly renders correctly when day is '3', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -10911,7 +10676,8 @@ exports[`renders correctly renders correctly when day is '3', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -10928,7 +10694,7 @@ exports[`renders correctly renders correctly when day is '3', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -10969,21 +10735,18 @@ exports[`renders correctly renders correctly when day is '3', month is '5', disa exports[`renders correctly renders correctly when day is '3', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -11005,6 +10768,7 @@ exports[`renders correctly renders correctly when day is '3', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -11043,7 +10807,7 @@ exports[`renders correctly renders correctly when day is '3', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -11063,21 +10827,18 @@ exports[`renders correctly renders correctly when day is '3', month is '5', disa exports[`renders correctly renders correctly when day is '3', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -11099,6 +10860,7 @@ exports[`renders correctly renders correctly when day is '3', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -11137,7 +10899,7 @@ exports[`renders correctly renders correctly when day is '3', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -11157,21 +10919,18 @@ exports[`renders correctly renders correctly when day is '3', month is '5', disa exports[`renders correctly renders correctly when day is '3', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -11193,7 +10952,8 @@ exports[`renders correctly renders correctly when day is '3', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -11210,7 +10970,7 @@ exports[`renders correctly renders correctly when day is '3', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -11251,21 +11011,18 @@ exports[`renders correctly renders correctly when day is '3', month is '6', disa exports[`renders correctly renders correctly when day is '3', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -11287,7 +11044,8 @@ exports[`renders correctly renders correctly when day is '3', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -11304,7 +11062,7 @@ exports[`renders correctly renders correctly when day is '3', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -11345,21 +11103,18 @@ exports[`renders correctly renders correctly when day is '3', month is '6', disa exports[`renders correctly renders correctly when day is '3', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -11381,6 +11136,7 @@ exports[`renders correctly renders correctly when day is '3', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -11419,7 +11175,7 @@ exports[`renders correctly renders correctly when day is '3', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -11439,21 +11195,18 @@ exports[`renders correctly renders correctly when day is '3', month is '6', disa exports[`renders correctly renders correctly when day is '3', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -11475,6 +11228,7 @@ exports[`renders correctly renders correctly when day is '3', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -11513,7 +11267,7 @@ exports[`renders correctly renders correctly when day is '3', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -11533,21 +11287,18 @@ exports[`renders correctly renders correctly when day is '3', month is '6', disa exports[`renders correctly renders correctly when day is '3', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -11569,7 +11320,8 @@ exports[`renders correctly renders correctly when day is '3', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -11586,7 +11338,7 @@ exports[`renders correctly renders correctly when day is '3', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -11627,21 +11379,18 @@ exports[`renders correctly renders correctly when day is '3', month is '7', disa exports[`renders correctly renders correctly when day is '3', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -11663,7 +11412,8 @@ exports[`renders correctly renders correctly when day is '3', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -11680,7 +11430,7 @@ exports[`renders correctly renders correctly when day is '3', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -11721,21 +11471,18 @@ exports[`renders correctly renders correctly when day is '3', month is '7', disa exports[`renders correctly renders correctly when day is '3', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -11757,6 +11504,7 @@ exports[`renders correctly renders correctly when day is '3', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -11795,7 +11543,7 @@ exports[`renders correctly renders correctly when day is '3', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -11815,21 +11563,18 @@ exports[`renders correctly renders correctly when day is '3', month is '7', disa exports[`renders correctly renders correctly when day is '3', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -11851,6 +11596,7 @@ exports[`renders correctly renders correctly when day is '3', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -11889,7 +11635,7 @@ exports[`renders correctly renders correctly when day is '3', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -11909,21 +11655,18 @@ exports[`renders correctly renders correctly when day is '3', month is '7', disa exports[`renders correctly renders correctly when day is '3', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -11945,7 +11688,8 @@ exports[`renders correctly renders correctly when day is '3', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -11962,7 +11706,7 @@ exports[`renders correctly renders correctly when day is '3', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -12003,21 +11747,18 @@ exports[`renders correctly renders correctly when day is '3', month is '8', disa exports[`renders correctly renders correctly when day is '3', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -12039,7 +11780,8 @@ exports[`renders correctly renders correctly when day is '3', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -12056,7 +11798,7 @@ exports[`renders correctly renders correctly when day is '3', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -12097,21 +11839,18 @@ exports[`renders correctly renders correctly when day is '3', month is '8', disa exports[`renders correctly renders correctly when day is '3', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -12133,6 +11872,7 @@ exports[`renders correctly renders correctly when day is '3', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -12171,7 +11911,7 @@ exports[`renders correctly renders correctly when day is '3', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -12191,21 +11931,18 @@ exports[`renders correctly renders correctly when day is '3', month is '8', disa exports[`renders correctly renders correctly when day is '3', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -12227,6 +11964,7 @@ exports[`renders correctly renders correctly when day is '3', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -12265,7 +12003,7 @@ exports[`renders correctly renders correctly when day is '3', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -12285,21 +12023,18 @@ exports[`renders correctly renders correctly when day is '3', month is '8', disa exports[`renders correctly renders correctly when day is '3', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -12321,7 +12056,8 @@ exports[`renders correctly renders correctly when day is '3', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -12338,7 +12074,7 @@ exports[`renders correctly renders correctly when day is '3', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -12379,21 +12115,18 @@ exports[`renders correctly renders correctly when day is '3', month is '9', disa exports[`renders correctly renders correctly when day is '3', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -12415,7 +12148,8 @@ exports[`renders correctly renders correctly when day is '3', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -12432,7 +12166,7 @@ exports[`renders correctly renders correctly when day is '3', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -12473,21 +12207,18 @@ exports[`renders correctly renders correctly when day is '3', month is '9', disa exports[`renders correctly renders correctly when day is '3', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -12509,6 +12240,7 @@ exports[`renders correctly renders correctly when day is '3', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -12547,7 +12279,7 @@ exports[`renders correctly renders correctly when day is '3', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -12567,21 +12299,18 @@ exports[`renders correctly renders correctly when day is '3', month is '9', disa exports[`renders correctly renders correctly when day is '3', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -12603,6 +12332,7 @@ exports[`renders correctly renders correctly when day is '3', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -12641,7 +12371,7 @@ exports[`renders correctly renders correctly when day is '3', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -12661,21 +12391,18 @@ exports[`renders correctly renders correctly when day is '3', month is '9', disa exports[`renders correctly renders correctly when day is '3', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -12697,7 +12424,8 @@ exports[`renders correctly renders correctly when day is '3', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -12714,7 +12442,7 @@ exports[`renders correctly renders correctly when day is '3', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -12755,21 +12483,18 @@ exports[`renders correctly renders correctly when day is '3', month is '10', dis exports[`renders correctly renders correctly when day is '3', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -12791,7 +12516,8 @@ exports[`renders correctly renders correctly when day is '3', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -12808,7 +12534,7 @@ exports[`renders correctly renders correctly when day is '3', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -12849,21 +12575,18 @@ exports[`renders correctly renders correctly when day is '3', month is '10', dis exports[`renders correctly renders correctly when day is '3', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -12885,6 +12608,7 @@ exports[`renders correctly renders correctly when day is '3', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -12923,7 +12647,7 @@ exports[`renders correctly renders correctly when day is '3', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -12943,21 +12667,18 @@ exports[`renders correctly renders correctly when day is '3', month is '10', dis exports[`renders correctly renders correctly when day is '3', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -12979,6 +12700,7 @@ exports[`renders correctly renders correctly when day is '3', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -13017,7 +12739,7 @@ exports[`renders correctly renders correctly when day is '3', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -13037,21 +12759,18 @@ exports[`renders correctly renders correctly when day is '3', month is '10', dis exports[`renders correctly renders correctly when day is '3', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -13073,7 +12792,8 @@ exports[`renders correctly renders correctly when day is '3', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -13088,7 +12808,7 @@ exports[`renders correctly renders correctly when day is '3', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -13129,21 +12849,18 @@ exports[`renders correctly renders correctly when day is '3', month is '11', dis exports[`renders correctly renders correctly when day is '3', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -13165,7 +12882,8 @@ exports[`renders correctly renders correctly when day is '3', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -13180,7 +12898,7 @@ exports[`renders correctly renders correctly when day is '3', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -13221,21 +12939,18 @@ exports[`renders correctly renders correctly when day is '3', month is '11', dis exports[`renders correctly renders correctly when day is '3', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -13257,6 +12972,7 @@ exports[`renders correctly renders correctly when day is '3', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -13293,7 +13009,7 @@ exports[`renders correctly renders correctly when day is '3', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -13313,21 +13029,18 @@ exports[`renders correctly renders correctly when day is '3', month is '11', dis exports[`renders correctly renders correctly when day is '3', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -13349,6 +13062,7 @@ exports[`renders correctly renders correctly when day is '3', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -13385,7 +13099,7 @@ exports[`renders correctly renders correctly when day is '3', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -13405,21 +13119,18 @@ exports[`renders correctly renders correctly when day is '3', month is '11', dis exports[`renders correctly renders correctly when day is '3', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -13441,7 +13152,8 @@ exports[`renders correctly renders correctly when day is '3', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -13456,7 +13168,7 @@ exports[`renders correctly renders correctly when day is '3', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -13497,21 +13209,18 @@ exports[`renders correctly renders correctly when day is '3', month is '12', dis exports[`renders correctly renders correctly when day is '3', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -13533,7 +13242,8 @@ exports[`renders correctly renders correctly when day is '3', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -13548,7 +13258,7 @@ exports[`renders correctly renders correctly when day is '3', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -13589,21 +13299,18 @@ exports[`renders correctly renders correctly when day is '3', month is '12', dis exports[`renders correctly renders correctly when day is '3', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -13625,6 +13332,7 @@ exports[`renders correctly renders correctly when day is '3', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -13661,7 +13369,7 @@ exports[`renders correctly renders correctly when day is '3', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -13681,21 +13389,18 @@ exports[`renders correctly renders correctly when day is '3', month is '12', dis exports[`renders correctly renders correctly when day is '3', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -13717,6 +13422,7 @@ exports[`renders correctly renders correctly when day is '3', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -13753,7 +13459,7 @@ exports[`renders correctly renders correctly when day is '3', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -13773,21 +13479,18 @@ exports[`renders correctly renders correctly when day is '3', month is '12', dis exports[`renders correctly renders correctly when day is '4', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -13809,7 +13512,8 @@ exports[`renders correctly renders correctly when day is '4', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -13826,7 +13530,7 @@ exports[`renders correctly renders correctly when day is '4', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -13867,21 +13571,18 @@ exports[`renders correctly renders correctly when day is '4', month is '1', disa exports[`renders correctly renders correctly when day is '4', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -13903,7 +13604,8 @@ exports[`renders correctly renders correctly when day is '4', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -13920,7 +13622,7 @@ exports[`renders correctly renders correctly when day is '4', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -13961,21 +13663,18 @@ exports[`renders correctly renders correctly when day is '4', month is '1', disa exports[`renders correctly renders correctly when day is '4', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -13997,6 +13696,7 @@ exports[`renders correctly renders correctly when day is '4', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -14035,7 +13735,7 @@ exports[`renders correctly renders correctly when day is '4', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -14055,21 +13755,18 @@ exports[`renders correctly renders correctly when day is '4', month is '1', disa exports[`renders correctly renders correctly when day is '4', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -14091,6 +13788,7 @@ exports[`renders correctly renders correctly when day is '4', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -14129,7 +13827,7 @@ exports[`renders correctly renders correctly when day is '4', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -14149,21 +13847,18 @@ exports[`renders correctly renders correctly when day is '4', month is '1', disa exports[`renders correctly renders correctly when day is '4', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -14185,7 +13880,8 @@ exports[`renders correctly renders correctly when day is '4', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -14202,7 +13898,7 @@ exports[`renders correctly renders correctly when day is '4', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -14243,21 +13939,18 @@ exports[`renders correctly renders correctly when day is '4', month is '2', disa exports[`renders correctly renders correctly when day is '4', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -14279,7 +13972,8 @@ exports[`renders correctly renders correctly when day is '4', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -14296,7 +13990,7 @@ exports[`renders correctly renders correctly when day is '4', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -14337,21 +14031,18 @@ exports[`renders correctly renders correctly when day is '4', month is '2', disa exports[`renders correctly renders correctly when day is '4', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -14373,6 +14064,7 @@ exports[`renders correctly renders correctly when day is '4', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -14411,7 +14103,7 @@ exports[`renders correctly renders correctly when day is '4', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -14431,21 +14123,18 @@ exports[`renders correctly renders correctly when day is '4', month is '2', disa exports[`renders correctly renders correctly when day is '4', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -14467,6 +14156,7 @@ exports[`renders correctly renders correctly when day is '4', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -14505,7 +14195,7 @@ exports[`renders correctly renders correctly when day is '4', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -14525,21 +14215,18 @@ exports[`renders correctly renders correctly when day is '4', month is '2', disa exports[`renders correctly renders correctly when day is '4', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -14561,7 +14248,8 @@ exports[`renders correctly renders correctly when day is '4', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -14578,7 +14266,7 @@ exports[`renders correctly renders correctly when day is '4', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -14619,21 +14307,18 @@ exports[`renders correctly renders correctly when day is '4', month is '3', disa exports[`renders correctly renders correctly when day is '4', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -14655,7 +14340,8 @@ exports[`renders correctly renders correctly when day is '4', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -14672,7 +14358,7 @@ exports[`renders correctly renders correctly when day is '4', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -14713,21 +14399,18 @@ exports[`renders correctly renders correctly when day is '4', month is '3', disa exports[`renders correctly renders correctly when day is '4', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -14749,6 +14432,7 @@ exports[`renders correctly renders correctly when day is '4', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -14787,7 +14471,7 @@ exports[`renders correctly renders correctly when day is '4', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -14807,21 +14491,18 @@ exports[`renders correctly renders correctly when day is '4', month is '3', disa exports[`renders correctly renders correctly when day is '4', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -14843,6 +14524,7 @@ exports[`renders correctly renders correctly when day is '4', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -14881,7 +14563,7 @@ exports[`renders correctly renders correctly when day is '4', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -14901,21 +14583,18 @@ exports[`renders correctly renders correctly when day is '4', month is '3', disa exports[`renders correctly renders correctly when day is '4', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -14937,7 +14616,8 @@ exports[`renders correctly renders correctly when day is '4', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -14954,7 +14634,7 @@ exports[`renders correctly renders correctly when day is '4', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -14995,21 +14675,18 @@ exports[`renders correctly renders correctly when day is '4', month is '4', disa exports[`renders correctly renders correctly when day is '4', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -15031,7 +14708,8 @@ exports[`renders correctly renders correctly when day is '4', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -15048,7 +14726,7 @@ exports[`renders correctly renders correctly when day is '4', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -15089,21 +14767,18 @@ exports[`renders correctly renders correctly when day is '4', month is '4', disa exports[`renders correctly renders correctly when day is '4', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -15125,6 +14800,7 @@ exports[`renders correctly renders correctly when day is '4', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -15163,7 +14839,7 @@ exports[`renders correctly renders correctly when day is '4', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -15183,21 +14859,18 @@ exports[`renders correctly renders correctly when day is '4', month is '4', disa exports[`renders correctly renders correctly when day is '4', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -15219,6 +14892,7 @@ exports[`renders correctly renders correctly when day is '4', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -15257,7 +14931,7 @@ exports[`renders correctly renders correctly when day is '4', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -15277,21 +14951,18 @@ exports[`renders correctly renders correctly when day is '4', month is '4', disa exports[`renders correctly renders correctly when day is '4', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -15313,7 +14984,8 @@ exports[`renders correctly renders correctly when day is '4', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -15330,7 +15002,7 @@ exports[`renders correctly renders correctly when day is '4', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -15371,21 +15043,18 @@ exports[`renders correctly renders correctly when day is '4', month is '5', disa exports[`renders correctly renders correctly when day is '4', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -15407,7 +15076,8 @@ exports[`renders correctly renders correctly when day is '4', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -15424,7 +15094,7 @@ exports[`renders correctly renders correctly when day is '4', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -15465,21 +15135,18 @@ exports[`renders correctly renders correctly when day is '4', month is '5', disa exports[`renders correctly renders correctly when day is '4', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -15501,6 +15168,7 @@ exports[`renders correctly renders correctly when day is '4', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -15539,7 +15207,7 @@ exports[`renders correctly renders correctly when day is '4', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -15559,21 +15227,18 @@ exports[`renders correctly renders correctly when day is '4', month is '5', disa exports[`renders correctly renders correctly when day is '4', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -15595,6 +15260,7 @@ exports[`renders correctly renders correctly when day is '4', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -15633,7 +15299,7 @@ exports[`renders correctly renders correctly when day is '4', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -15653,21 +15319,18 @@ exports[`renders correctly renders correctly when day is '4', month is '5', disa exports[`renders correctly renders correctly when day is '4', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -15689,7 +15352,8 @@ exports[`renders correctly renders correctly when day is '4', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -15706,7 +15370,7 @@ exports[`renders correctly renders correctly when day is '4', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -15747,21 +15411,18 @@ exports[`renders correctly renders correctly when day is '4', month is '6', disa exports[`renders correctly renders correctly when day is '4', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -15783,7 +15444,8 @@ exports[`renders correctly renders correctly when day is '4', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -15800,7 +15462,7 @@ exports[`renders correctly renders correctly when day is '4', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -15841,21 +15503,18 @@ exports[`renders correctly renders correctly when day is '4', month is '6', disa exports[`renders correctly renders correctly when day is '4', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -15877,6 +15536,7 @@ exports[`renders correctly renders correctly when day is '4', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -15915,7 +15575,7 @@ exports[`renders correctly renders correctly when day is '4', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -15935,21 +15595,18 @@ exports[`renders correctly renders correctly when day is '4', month is '6', disa exports[`renders correctly renders correctly when day is '4', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -15971,6 +15628,7 @@ exports[`renders correctly renders correctly when day is '4', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -16009,7 +15667,7 @@ exports[`renders correctly renders correctly when day is '4', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -16029,21 +15687,18 @@ exports[`renders correctly renders correctly when day is '4', month is '6', disa exports[`renders correctly renders correctly when day is '4', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -16065,7 +15720,8 @@ exports[`renders correctly renders correctly when day is '4', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -16082,7 +15738,7 @@ exports[`renders correctly renders correctly when day is '4', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -16123,21 +15779,18 @@ exports[`renders correctly renders correctly when day is '4', month is '7', disa exports[`renders correctly renders correctly when day is '4', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -16159,7 +15812,8 @@ exports[`renders correctly renders correctly when day is '4', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -16176,7 +15830,7 @@ exports[`renders correctly renders correctly when day is '4', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -16217,21 +15871,18 @@ exports[`renders correctly renders correctly when day is '4', month is '7', disa exports[`renders correctly renders correctly when day is '4', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -16253,6 +15904,7 @@ exports[`renders correctly renders correctly when day is '4', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -16291,7 +15943,7 @@ exports[`renders correctly renders correctly when day is '4', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -16311,21 +15963,18 @@ exports[`renders correctly renders correctly when day is '4', month is '7', disa exports[`renders correctly renders correctly when day is '4', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -16347,6 +15996,7 @@ exports[`renders correctly renders correctly when day is '4', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -16385,7 +16035,7 @@ exports[`renders correctly renders correctly when day is '4', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -16405,21 +16055,18 @@ exports[`renders correctly renders correctly when day is '4', month is '7', disa exports[`renders correctly renders correctly when day is '4', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -16441,7 +16088,8 @@ exports[`renders correctly renders correctly when day is '4', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -16458,7 +16106,7 @@ exports[`renders correctly renders correctly when day is '4', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -16499,21 +16147,18 @@ exports[`renders correctly renders correctly when day is '4', month is '8', disa exports[`renders correctly renders correctly when day is '4', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -16535,7 +16180,8 @@ exports[`renders correctly renders correctly when day is '4', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -16552,7 +16198,7 @@ exports[`renders correctly renders correctly when day is '4', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -16593,21 +16239,18 @@ exports[`renders correctly renders correctly when day is '4', month is '8', disa exports[`renders correctly renders correctly when day is '4', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -16629,6 +16272,7 @@ exports[`renders correctly renders correctly when day is '4', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -16667,7 +16311,7 @@ exports[`renders correctly renders correctly when day is '4', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -16687,21 +16331,18 @@ exports[`renders correctly renders correctly when day is '4', month is '8', disa exports[`renders correctly renders correctly when day is '4', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -16723,6 +16364,7 @@ exports[`renders correctly renders correctly when day is '4', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -16761,7 +16403,7 @@ exports[`renders correctly renders correctly when day is '4', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -16781,21 +16423,18 @@ exports[`renders correctly renders correctly when day is '4', month is '8', disa exports[`renders correctly renders correctly when day is '4', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -16817,7 +16456,8 @@ exports[`renders correctly renders correctly when day is '4', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -16834,7 +16474,7 @@ exports[`renders correctly renders correctly when day is '4', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -16875,21 +16515,18 @@ exports[`renders correctly renders correctly when day is '4', month is '9', disa exports[`renders correctly renders correctly when day is '4', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -16911,7 +16548,8 @@ exports[`renders correctly renders correctly when day is '4', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -16928,7 +16566,7 @@ exports[`renders correctly renders correctly when day is '4', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -16969,21 +16607,18 @@ exports[`renders correctly renders correctly when day is '4', month is '9', disa exports[`renders correctly renders correctly when day is '4', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -17005,6 +16640,7 @@ exports[`renders correctly renders correctly when day is '4', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -17043,7 +16679,7 @@ exports[`renders correctly renders correctly when day is '4', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -17063,21 +16699,18 @@ exports[`renders correctly renders correctly when day is '4', month is '9', disa exports[`renders correctly renders correctly when day is '4', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -17099,6 +16732,7 @@ exports[`renders correctly renders correctly when day is '4', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -17137,7 +16771,7 @@ exports[`renders correctly renders correctly when day is '4', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -17157,21 +16791,18 @@ exports[`renders correctly renders correctly when day is '4', month is '9', disa exports[`renders correctly renders correctly when day is '4', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -17193,7 +16824,8 @@ exports[`renders correctly renders correctly when day is '4', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -17210,7 +16842,7 @@ exports[`renders correctly renders correctly when day is '4', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -17251,21 +16883,18 @@ exports[`renders correctly renders correctly when day is '4', month is '10', dis exports[`renders correctly renders correctly when day is '4', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -17287,7 +16916,8 @@ exports[`renders correctly renders correctly when day is '4', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -17304,7 +16934,7 @@ exports[`renders correctly renders correctly when day is '4', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -17345,21 +16975,18 @@ exports[`renders correctly renders correctly when day is '4', month is '10', dis exports[`renders correctly renders correctly when day is '4', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -17381,6 +17008,7 @@ exports[`renders correctly renders correctly when day is '4', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -17419,7 +17047,7 @@ exports[`renders correctly renders correctly when day is '4', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -17439,21 +17067,18 @@ exports[`renders correctly renders correctly when day is '4', month is '10', dis exports[`renders correctly renders correctly when day is '4', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -17475,6 +17100,7 @@ exports[`renders correctly renders correctly when day is '4', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -17513,7 +17139,7 @@ exports[`renders correctly renders correctly when day is '4', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -17533,21 +17159,18 @@ exports[`renders correctly renders correctly when day is '4', month is '10', dis exports[`renders correctly renders correctly when day is '4', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -17569,7 +17192,8 @@ exports[`renders correctly renders correctly when day is '4', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -17584,7 +17208,7 @@ exports[`renders correctly renders correctly when day is '4', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -17625,21 +17249,18 @@ exports[`renders correctly renders correctly when day is '4', month is '11', dis exports[`renders correctly renders correctly when day is '4', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -17661,7 +17282,8 @@ exports[`renders correctly renders correctly when day is '4', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -17676,7 +17298,7 @@ exports[`renders correctly renders correctly when day is '4', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -17717,21 +17339,18 @@ exports[`renders correctly renders correctly when day is '4', month is '11', dis exports[`renders correctly renders correctly when day is '4', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -17753,6 +17372,7 @@ exports[`renders correctly renders correctly when day is '4', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -17789,7 +17409,7 @@ exports[`renders correctly renders correctly when day is '4', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -17809,21 +17429,18 @@ exports[`renders correctly renders correctly when day is '4', month is '11', dis exports[`renders correctly renders correctly when day is '4', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -17845,6 +17462,7 @@ exports[`renders correctly renders correctly when day is '4', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -17881,7 +17499,7 @@ exports[`renders correctly renders correctly when day is '4', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -17901,21 +17519,18 @@ exports[`renders correctly renders correctly when day is '4', month is '11', dis exports[`renders correctly renders correctly when day is '4', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -17937,7 +17552,8 @@ exports[`renders correctly renders correctly when day is '4', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -17952,7 +17568,7 @@ exports[`renders correctly renders correctly when day is '4', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -17993,21 +17609,18 @@ exports[`renders correctly renders correctly when day is '4', month is '12', dis exports[`renders correctly renders correctly when day is '4', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -18029,7 +17642,8 @@ exports[`renders correctly renders correctly when day is '4', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -18044,7 +17658,7 @@ exports[`renders correctly renders correctly when day is '4', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -18085,21 +17699,18 @@ exports[`renders correctly renders correctly when day is '4', month is '12', dis exports[`renders correctly renders correctly when day is '4', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -18121,6 +17732,7 @@ exports[`renders correctly renders correctly when day is '4', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -18157,7 +17769,7 @@ exports[`renders correctly renders correctly when day is '4', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -18177,21 +17789,18 @@ exports[`renders correctly renders correctly when day is '4', month is '12', dis exports[`renders correctly renders correctly when day is '4', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -18213,6 +17822,7 @@ exports[`renders correctly renders correctly when day is '4', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -18249,7 +17859,7 @@ exports[`renders correctly renders correctly when day is '4', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -18269,21 +17879,18 @@ exports[`renders correctly renders correctly when day is '4', month is '12', dis exports[`renders correctly renders correctly when day is '5', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -18305,7 +17912,8 @@ exports[`renders correctly renders correctly when day is '5', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -18322,7 +17930,7 @@ exports[`renders correctly renders correctly when day is '5', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -18363,21 +17971,18 @@ exports[`renders correctly renders correctly when day is '5', month is '1', disa exports[`renders correctly renders correctly when day is '5', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -18399,7 +18004,8 @@ exports[`renders correctly renders correctly when day is '5', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -18416,7 +18022,7 @@ exports[`renders correctly renders correctly when day is '5', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -18457,21 +18063,18 @@ exports[`renders correctly renders correctly when day is '5', month is '1', disa exports[`renders correctly renders correctly when day is '5', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -18493,6 +18096,7 @@ exports[`renders correctly renders correctly when day is '5', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -18531,7 +18135,7 @@ exports[`renders correctly renders correctly when day is '5', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -18551,21 +18155,18 @@ exports[`renders correctly renders correctly when day is '5', month is '1', disa exports[`renders correctly renders correctly when day is '5', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -18587,6 +18188,7 @@ exports[`renders correctly renders correctly when day is '5', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -18625,7 +18227,7 @@ exports[`renders correctly renders correctly when day is '5', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -18645,21 +18247,18 @@ exports[`renders correctly renders correctly when day is '5', month is '1', disa exports[`renders correctly renders correctly when day is '5', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -18681,7 +18280,8 @@ exports[`renders correctly renders correctly when day is '5', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -18698,7 +18298,7 @@ exports[`renders correctly renders correctly when day is '5', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -18739,21 +18339,18 @@ exports[`renders correctly renders correctly when day is '5', month is '2', disa exports[`renders correctly renders correctly when day is '5', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -18775,7 +18372,8 @@ exports[`renders correctly renders correctly when day is '5', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -18792,7 +18390,7 @@ exports[`renders correctly renders correctly when day is '5', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -18833,21 +18431,18 @@ exports[`renders correctly renders correctly when day is '5', month is '2', disa exports[`renders correctly renders correctly when day is '5', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -18869,6 +18464,7 @@ exports[`renders correctly renders correctly when day is '5', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -18907,7 +18503,7 @@ exports[`renders correctly renders correctly when day is '5', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -18927,21 +18523,18 @@ exports[`renders correctly renders correctly when day is '5', month is '2', disa exports[`renders correctly renders correctly when day is '5', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -18963,6 +18556,7 @@ exports[`renders correctly renders correctly when day is '5', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -19001,7 +18595,7 @@ exports[`renders correctly renders correctly when day is '5', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -19021,21 +18615,18 @@ exports[`renders correctly renders correctly when day is '5', month is '2', disa exports[`renders correctly renders correctly when day is '5', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -19057,7 +18648,8 @@ exports[`renders correctly renders correctly when day is '5', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -19074,7 +18666,7 @@ exports[`renders correctly renders correctly when day is '5', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -19115,21 +18707,18 @@ exports[`renders correctly renders correctly when day is '5', month is '3', disa exports[`renders correctly renders correctly when day is '5', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -19151,7 +18740,8 @@ exports[`renders correctly renders correctly when day is '5', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -19168,7 +18758,7 @@ exports[`renders correctly renders correctly when day is '5', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -19209,21 +18799,18 @@ exports[`renders correctly renders correctly when day is '5', month is '3', disa exports[`renders correctly renders correctly when day is '5', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -19245,6 +18832,7 @@ exports[`renders correctly renders correctly when day is '5', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -19283,7 +18871,7 @@ exports[`renders correctly renders correctly when day is '5', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -19303,21 +18891,18 @@ exports[`renders correctly renders correctly when day is '5', month is '3', disa exports[`renders correctly renders correctly when day is '5', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -19339,6 +18924,7 @@ exports[`renders correctly renders correctly when day is '5', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -19377,7 +18963,7 @@ exports[`renders correctly renders correctly when day is '5', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -19397,21 +18983,18 @@ exports[`renders correctly renders correctly when day is '5', month is '3', disa exports[`renders correctly renders correctly when day is '5', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -19433,7 +19016,8 @@ exports[`renders correctly renders correctly when day is '5', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -19450,7 +19034,7 @@ exports[`renders correctly renders correctly when day is '5', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -19491,21 +19075,18 @@ exports[`renders correctly renders correctly when day is '5', month is '4', disa exports[`renders correctly renders correctly when day is '5', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -19527,7 +19108,8 @@ exports[`renders correctly renders correctly when day is '5', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -19544,7 +19126,7 @@ exports[`renders correctly renders correctly when day is '5', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -19585,21 +19167,18 @@ exports[`renders correctly renders correctly when day is '5', month is '4', disa exports[`renders correctly renders correctly when day is '5', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -19621,6 +19200,7 @@ exports[`renders correctly renders correctly when day is '5', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -19659,7 +19239,7 @@ exports[`renders correctly renders correctly when day is '5', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -19679,21 +19259,18 @@ exports[`renders correctly renders correctly when day is '5', month is '4', disa exports[`renders correctly renders correctly when day is '5', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -19715,6 +19292,7 @@ exports[`renders correctly renders correctly when day is '5', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -19753,7 +19331,7 @@ exports[`renders correctly renders correctly when day is '5', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -19773,21 +19351,18 @@ exports[`renders correctly renders correctly when day is '5', month is '4', disa exports[`renders correctly renders correctly when day is '5', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -19809,7 +19384,8 @@ exports[`renders correctly renders correctly when day is '5', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -19826,7 +19402,7 @@ exports[`renders correctly renders correctly when day is '5', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -19867,21 +19443,18 @@ exports[`renders correctly renders correctly when day is '5', month is '5', disa exports[`renders correctly renders correctly when day is '5', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -19903,7 +19476,8 @@ exports[`renders correctly renders correctly when day is '5', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -19920,7 +19494,7 @@ exports[`renders correctly renders correctly when day is '5', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -19961,21 +19535,18 @@ exports[`renders correctly renders correctly when day is '5', month is '5', disa exports[`renders correctly renders correctly when day is '5', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -19997,6 +19568,7 @@ exports[`renders correctly renders correctly when day is '5', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -20035,7 +19607,7 @@ exports[`renders correctly renders correctly when day is '5', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -20055,21 +19627,18 @@ exports[`renders correctly renders correctly when day is '5', month is '5', disa exports[`renders correctly renders correctly when day is '5', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -20091,6 +19660,7 @@ exports[`renders correctly renders correctly when day is '5', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -20129,7 +19699,7 @@ exports[`renders correctly renders correctly when day is '5', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -20149,21 +19719,18 @@ exports[`renders correctly renders correctly when day is '5', month is '5', disa exports[`renders correctly renders correctly when day is '5', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -20185,7 +19752,8 @@ exports[`renders correctly renders correctly when day is '5', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -20202,7 +19770,7 @@ exports[`renders correctly renders correctly when day is '5', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -20243,21 +19811,18 @@ exports[`renders correctly renders correctly when day is '5', month is '6', disa exports[`renders correctly renders correctly when day is '5', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -20279,7 +19844,8 @@ exports[`renders correctly renders correctly when day is '5', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -20296,7 +19862,7 @@ exports[`renders correctly renders correctly when day is '5', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -20337,21 +19903,18 @@ exports[`renders correctly renders correctly when day is '5', month is '6', disa exports[`renders correctly renders correctly when day is '5', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -20373,6 +19936,7 @@ exports[`renders correctly renders correctly when day is '5', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -20411,7 +19975,7 @@ exports[`renders correctly renders correctly when day is '5', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -20431,21 +19995,18 @@ exports[`renders correctly renders correctly when day is '5', month is '6', disa exports[`renders correctly renders correctly when day is '5', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -20467,6 +20028,7 @@ exports[`renders correctly renders correctly when day is '5', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -20505,7 +20067,7 @@ exports[`renders correctly renders correctly when day is '5', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -20525,21 +20087,18 @@ exports[`renders correctly renders correctly when day is '5', month is '6', disa exports[`renders correctly renders correctly when day is '5', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -20561,7 +20120,8 @@ exports[`renders correctly renders correctly when day is '5', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -20578,7 +20138,7 @@ exports[`renders correctly renders correctly when day is '5', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -20619,21 +20179,18 @@ exports[`renders correctly renders correctly when day is '5', month is '7', disa exports[`renders correctly renders correctly when day is '5', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -20655,7 +20212,8 @@ exports[`renders correctly renders correctly when day is '5', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -20672,7 +20230,7 @@ exports[`renders correctly renders correctly when day is '5', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -20713,21 +20271,18 @@ exports[`renders correctly renders correctly when day is '5', month is '7', disa exports[`renders correctly renders correctly when day is '5', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -20749,6 +20304,7 @@ exports[`renders correctly renders correctly when day is '5', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -20787,7 +20343,7 @@ exports[`renders correctly renders correctly when day is '5', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -20807,21 +20363,18 @@ exports[`renders correctly renders correctly when day is '5', month is '7', disa exports[`renders correctly renders correctly when day is '5', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -20843,6 +20396,7 @@ exports[`renders correctly renders correctly when day is '5', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -20881,7 +20435,7 @@ exports[`renders correctly renders correctly when day is '5', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -20901,21 +20455,18 @@ exports[`renders correctly renders correctly when day is '5', month is '7', disa exports[`renders correctly renders correctly when day is '5', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -20937,7 +20488,8 @@ exports[`renders correctly renders correctly when day is '5', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -20954,7 +20506,7 @@ exports[`renders correctly renders correctly when day is '5', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -20995,21 +20547,18 @@ exports[`renders correctly renders correctly when day is '5', month is '8', disa exports[`renders correctly renders correctly when day is '5', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -21031,7 +20580,8 @@ exports[`renders correctly renders correctly when day is '5', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -21048,7 +20598,7 @@ exports[`renders correctly renders correctly when day is '5', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -21089,21 +20639,18 @@ exports[`renders correctly renders correctly when day is '5', month is '8', disa exports[`renders correctly renders correctly when day is '5', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -21125,6 +20672,7 @@ exports[`renders correctly renders correctly when day is '5', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -21163,7 +20711,7 @@ exports[`renders correctly renders correctly when day is '5', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -21183,21 +20731,18 @@ exports[`renders correctly renders correctly when day is '5', month is '8', disa exports[`renders correctly renders correctly when day is '5', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -21219,6 +20764,7 @@ exports[`renders correctly renders correctly when day is '5', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -21257,7 +20803,7 @@ exports[`renders correctly renders correctly when day is '5', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -21277,21 +20823,18 @@ exports[`renders correctly renders correctly when day is '5', month is '8', disa exports[`renders correctly renders correctly when day is '5', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -21313,7 +20856,8 @@ exports[`renders correctly renders correctly when day is '5', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -21330,7 +20874,7 @@ exports[`renders correctly renders correctly when day is '5', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -21371,21 +20915,18 @@ exports[`renders correctly renders correctly when day is '5', month is '9', disa exports[`renders correctly renders correctly when day is '5', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -21407,7 +20948,8 @@ exports[`renders correctly renders correctly when day is '5', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -21424,7 +20966,7 @@ exports[`renders correctly renders correctly when day is '5', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -21465,21 +21007,18 @@ exports[`renders correctly renders correctly when day is '5', month is '9', disa exports[`renders correctly renders correctly when day is '5', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -21501,6 +21040,7 @@ exports[`renders correctly renders correctly when day is '5', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -21539,7 +21079,7 @@ exports[`renders correctly renders correctly when day is '5', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -21559,21 +21099,18 @@ exports[`renders correctly renders correctly when day is '5', month is '9', disa exports[`renders correctly renders correctly when day is '5', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -21595,6 +21132,7 @@ exports[`renders correctly renders correctly when day is '5', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -21633,7 +21171,7 @@ exports[`renders correctly renders correctly when day is '5', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -21653,21 +21191,18 @@ exports[`renders correctly renders correctly when day is '5', month is '9', disa exports[`renders correctly renders correctly when day is '5', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -21689,7 +21224,8 @@ exports[`renders correctly renders correctly when day is '5', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -21706,7 +21242,7 @@ exports[`renders correctly renders correctly when day is '5', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -21747,21 +21283,18 @@ exports[`renders correctly renders correctly when day is '5', month is '10', dis exports[`renders correctly renders correctly when day is '5', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -21783,7 +21316,8 @@ exports[`renders correctly renders correctly when day is '5', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -21800,7 +21334,7 @@ exports[`renders correctly renders correctly when day is '5', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -21841,21 +21375,18 @@ exports[`renders correctly renders correctly when day is '5', month is '10', dis exports[`renders correctly renders correctly when day is '5', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -21877,6 +21408,7 @@ exports[`renders correctly renders correctly when day is '5', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -21915,7 +21447,7 @@ exports[`renders correctly renders correctly when day is '5', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -21935,21 +21467,18 @@ exports[`renders correctly renders correctly when day is '5', month is '10', dis exports[`renders correctly renders correctly when day is '5', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -21971,6 +21500,7 @@ exports[`renders correctly renders correctly when day is '5', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -22009,7 +21539,7 @@ exports[`renders correctly renders correctly when day is '5', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -22029,21 +21559,18 @@ exports[`renders correctly renders correctly when day is '5', month is '10', dis exports[`renders correctly renders correctly when day is '5', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -22065,7 +21592,8 @@ exports[`renders correctly renders correctly when day is '5', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -22080,7 +21608,7 @@ exports[`renders correctly renders correctly when day is '5', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -22121,21 +21649,18 @@ exports[`renders correctly renders correctly when day is '5', month is '11', dis exports[`renders correctly renders correctly when day is '5', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -22157,7 +21682,8 @@ exports[`renders correctly renders correctly when day is '5', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -22172,7 +21698,7 @@ exports[`renders correctly renders correctly when day is '5', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -22213,21 +21739,18 @@ exports[`renders correctly renders correctly when day is '5', month is '11', dis exports[`renders correctly renders correctly when day is '5', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -22249,6 +21772,7 @@ exports[`renders correctly renders correctly when day is '5', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -22285,7 +21809,7 @@ exports[`renders correctly renders correctly when day is '5', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -22305,21 +21829,18 @@ exports[`renders correctly renders correctly when day is '5', month is '11', dis exports[`renders correctly renders correctly when day is '5', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -22341,6 +21862,7 @@ exports[`renders correctly renders correctly when day is '5', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -22377,7 +21899,7 @@ exports[`renders correctly renders correctly when day is '5', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -22397,21 +21919,18 @@ exports[`renders correctly renders correctly when day is '5', month is '11', dis exports[`renders correctly renders correctly when day is '5', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -22433,7 +21952,8 @@ exports[`renders correctly renders correctly when day is '5', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -22448,7 +21968,7 @@ exports[`renders correctly renders correctly when day is '5', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -22489,21 +22009,18 @@ exports[`renders correctly renders correctly when day is '5', month is '12', dis exports[`renders correctly renders correctly when day is '5', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -22525,7 +22042,8 @@ exports[`renders correctly renders correctly when day is '5', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -22540,7 +22058,7 @@ exports[`renders correctly renders correctly when day is '5', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -22581,21 +22099,18 @@ exports[`renders correctly renders correctly when day is '5', month is '12', dis exports[`renders correctly renders correctly when day is '5', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -22617,6 +22132,7 @@ exports[`renders correctly renders correctly when day is '5', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -22653,7 +22169,7 @@ exports[`renders correctly renders correctly when day is '5', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -22673,21 +22189,18 @@ exports[`renders correctly renders correctly when day is '5', month is '12', dis exports[`renders correctly renders correctly when day is '5', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -22709,6 +22222,7 @@ exports[`renders correctly renders correctly when day is '5', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -22745,7 +22259,7 @@ exports[`renders correctly renders correctly when day is '5', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -22765,21 +22279,18 @@ exports[`renders correctly renders correctly when day is '5', month is '12', dis exports[`renders correctly renders correctly when day is '6', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -22801,7 +22312,8 @@ exports[`renders correctly renders correctly when day is '6', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -22818,7 +22330,7 @@ exports[`renders correctly renders correctly when day is '6', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -22859,21 +22371,18 @@ exports[`renders correctly renders correctly when day is '6', month is '1', disa exports[`renders correctly renders correctly when day is '6', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -22895,7 +22404,8 @@ exports[`renders correctly renders correctly when day is '6', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -22912,7 +22422,7 @@ exports[`renders correctly renders correctly when day is '6', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -22953,21 +22463,18 @@ exports[`renders correctly renders correctly when day is '6', month is '1', disa exports[`renders correctly renders correctly when day is '6', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -22989,6 +22496,7 @@ exports[`renders correctly renders correctly when day is '6', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -23027,7 +22535,7 @@ exports[`renders correctly renders correctly when day is '6', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -23047,21 +22555,18 @@ exports[`renders correctly renders correctly when day is '6', month is '1', disa exports[`renders correctly renders correctly when day is '6', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -23083,6 +22588,7 @@ exports[`renders correctly renders correctly when day is '6', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -23121,7 +22627,7 @@ exports[`renders correctly renders correctly when day is '6', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -23141,21 +22647,18 @@ exports[`renders correctly renders correctly when day is '6', month is '1', disa exports[`renders correctly renders correctly when day is '6', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -23177,7 +22680,8 @@ exports[`renders correctly renders correctly when day is '6', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -23194,7 +22698,7 @@ exports[`renders correctly renders correctly when day is '6', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -23235,21 +22739,18 @@ exports[`renders correctly renders correctly when day is '6', month is '2', disa exports[`renders correctly renders correctly when day is '6', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -23271,7 +22772,8 @@ exports[`renders correctly renders correctly when day is '6', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -23288,7 +22790,7 @@ exports[`renders correctly renders correctly when day is '6', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -23329,21 +22831,18 @@ exports[`renders correctly renders correctly when day is '6', month is '2', disa exports[`renders correctly renders correctly when day is '6', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -23365,6 +22864,7 @@ exports[`renders correctly renders correctly when day is '6', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -23403,7 +22903,7 @@ exports[`renders correctly renders correctly when day is '6', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -23423,21 +22923,18 @@ exports[`renders correctly renders correctly when day is '6', month is '2', disa exports[`renders correctly renders correctly when day is '6', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -23459,6 +22956,7 @@ exports[`renders correctly renders correctly when day is '6', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -23497,7 +22995,7 @@ exports[`renders correctly renders correctly when day is '6', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -23517,21 +23015,18 @@ exports[`renders correctly renders correctly when day is '6', month is '2', disa exports[`renders correctly renders correctly when day is '6', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -23553,7 +23048,8 @@ exports[`renders correctly renders correctly when day is '6', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -23570,7 +23066,7 @@ exports[`renders correctly renders correctly when day is '6', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -23611,21 +23107,18 @@ exports[`renders correctly renders correctly when day is '6', month is '3', disa exports[`renders correctly renders correctly when day is '6', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -23647,7 +23140,8 @@ exports[`renders correctly renders correctly when day is '6', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -23664,7 +23158,7 @@ exports[`renders correctly renders correctly when day is '6', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -23705,21 +23199,18 @@ exports[`renders correctly renders correctly when day is '6', month is '3', disa exports[`renders correctly renders correctly when day is '6', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -23741,6 +23232,7 @@ exports[`renders correctly renders correctly when day is '6', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -23779,7 +23271,7 @@ exports[`renders correctly renders correctly when day is '6', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -23799,21 +23291,18 @@ exports[`renders correctly renders correctly when day is '6', month is '3', disa exports[`renders correctly renders correctly when day is '6', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -23835,6 +23324,7 @@ exports[`renders correctly renders correctly when day is '6', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -23873,7 +23363,7 @@ exports[`renders correctly renders correctly when day is '6', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -23893,21 +23383,18 @@ exports[`renders correctly renders correctly when day is '6', month is '3', disa exports[`renders correctly renders correctly when day is '6', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -23929,7 +23416,8 @@ exports[`renders correctly renders correctly when day is '6', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -23946,7 +23434,7 @@ exports[`renders correctly renders correctly when day is '6', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -23987,21 +23475,18 @@ exports[`renders correctly renders correctly when day is '6', month is '4', disa exports[`renders correctly renders correctly when day is '6', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -24023,7 +23508,8 @@ exports[`renders correctly renders correctly when day is '6', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -24040,7 +23526,7 @@ exports[`renders correctly renders correctly when day is '6', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -24081,21 +23567,18 @@ exports[`renders correctly renders correctly when day is '6', month is '4', disa exports[`renders correctly renders correctly when day is '6', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -24117,6 +23600,7 @@ exports[`renders correctly renders correctly when day is '6', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -24155,7 +23639,7 @@ exports[`renders correctly renders correctly when day is '6', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -24175,21 +23659,18 @@ exports[`renders correctly renders correctly when day is '6', month is '4', disa exports[`renders correctly renders correctly when day is '6', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -24211,6 +23692,7 @@ exports[`renders correctly renders correctly when day is '6', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -24249,7 +23731,7 @@ exports[`renders correctly renders correctly when day is '6', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -24269,21 +23751,18 @@ exports[`renders correctly renders correctly when day is '6', month is '4', disa exports[`renders correctly renders correctly when day is '6', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -24305,7 +23784,8 @@ exports[`renders correctly renders correctly when day is '6', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -24322,7 +23802,7 @@ exports[`renders correctly renders correctly when day is '6', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -24363,21 +23843,18 @@ exports[`renders correctly renders correctly when day is '6', month is '5', disa exports[`renders correctly renders correctly when day is '6', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -24399,7 +23876,8 @@ exports[`renders correctly renders correctly when day is '6', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -24416,7 +23894,7 @@ exports[`renders correctly renders correctly when day is '6', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -24457,21 +23935,18 @@ exports[`renders correctly renders correctly when day is '6', month is '5', disa exports[`renders correctly renders correctly when day is '6', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -24493,6 +23968,7 @@ exports[`renders correctly renders correctly when day is '6', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -24531,7 +24007,7 @@ exports[`renders correctly renders correctly when day is '6', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -24551,21 +24027,18 @@ exports[`renders correctly renders correctly when day is '6', month is '5', disa exports[`renders correctly renders correctly when day is '6', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -24587,6 +24060,7 @@ exports[`renders correctly renders correctly when day is '6', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -24625,7 +24099,7 @@ exports[`renders correctly renders correctly when day is '6', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -24645,21 +24119,18 @@ exports[`renders correctly renders correctly when day is '6', month is '5', disa exports[`renders correctly renders correctly when day is '6', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -24681,7 +24152,8 @@ exports[`renders correctly renders correctly when day is '6', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -24698,7 +24170,7 @@ exports[`renders correctly renders correctly when day is '6', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -24739,21 +24211,18 @@ exports[`renders correctly renders correctly when day is '6', month is '6', disa exports[`renders correctly renders correctly when day is '6', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -24775,7 +24244,8 @@ exports[`renders correctly renders correctly when day is '6', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -24792,7 +24262,7 @@ exports[`renders correctly renders correctly when day is '6', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -24833,21 +24303,18 @@ exports[`renders correctly renders correctly when day is '6', month is '6', disa exports[`renders correctly renders correctly when day is '6', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -24869,6 +24336,7 @@ exports[`renders correctly renders correctly when day is '6', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -24907,7 +24375,7 @@ exports[`renders correctly renders correctly when day is '6', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -24927,21 +24395,18 @@ exports[`renders correctly renders correctly when day is '6', month is '6', disa exports[`renders correctly renders correctly when day is '6', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -24963,6 +24428,7 @@ exports[`renders correctly renders correctly when day is '6', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -25001,7 +24467,7 @@ exports[`renders correctly renders correctly when day is '6', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -25021,21 +24487,18 @@ exports[`renders correctly renders correctly when day is '6', month is '6', disa exports[`renders correctly renders correctly when day is '6', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -25057,7 +24520,8 @@ exports[`renders correctly renders correctly when day is '6', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -25074,7 +24538,7 @@ exports[`renders correctly renders correctly when day is '6', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -25115,21 +24579,18 @@ exports[`renders correctly renders correctly when day is '6', month is '7', disa exports[`renders correctly renders correctly when day is '6', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -25151,7 +24612,8 @@ exports[`renders correctly renders correctly when day is '6', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -25168,7 +24630,7 @@ exports[`renders correctly renders correctly when day is '6', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -25209,115 +24671,18 @@ exports[`renders correctly renders correctly when day is '6', month is '7', disa exports[`renders correctly renders correctly when day is '6', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] - } -> - <View - style={ - { - "padding": 0, - } + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, } - testID="holi-calendar-icon" - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#ebebeb", - "fontFamily": "InstrumentSans-Medium", - "fontSize": 12, - "fontWeight": "500", - "lineHeight": 12, - "paddingBottom": 2, - "textAlign": "center", - "userSelect": "auto", - } - } - > - A - </Text> - <View - style={ - { - "alignItems": "center", - "backgroundColor": "#ebebeb", - "borderTopLeftRadius": 6, - "borderTopRightRadius": 6, - "display": "flex", - "justifyContent": "center", - "minHeight": 44, - "minWidth": 60, - } - } - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#787777", - "fontFamily": "InstrumentSans-Regular", - "fontSize": 28, - "fontWeight": "400", - "lineHeight": 22.4, - "paddingTop": 8, - "userSelect": "auto", - } - } - > - 6 - </Text> - </View> - </View> -</View> -`; - -exports[`renders correctly renders correctly when day is '6', month is '7', disabled is 'true', size is 'small' 1`] = ` -<View - style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] } > <View @@ -25339,6 +24704,99 @@ exports[`renders correctly renders correctly when day is '6', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", + "color": "#ebebeb", + "fontFamily": "InstrumentSans-Medium", + "fontSize": 12, + "fontWeight": "500", + "lineHeight": 12, + "paddingBottom": 2, + "textAlign": "center", + "userSelect": "auto", + } + } + > + A + </Text> + <View + style={ + { + "alignItems": "center", + "backgroundColor": "#ebebeb", + "borderTopLeftRadius": 6, + "borderTopRightRadius": 6, + "display": "flex", + "justifyContent": "center", + "minHeight": 44, + "minWidth": 60, + } + } + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "color": "#676565", + "fontFamily": "InstrumentSans-Regular", + "fontSize": 28, + "fontWeight": "400", + "lineHeight": 22.4, + "paddingTop": 8, + "userSelect": "auto", + } + } + > + 6 + </Text> + </View> + </View> +</View> +`; + +exports[`renders correctly renders correctly when day is '6', month is '7', disabled is 'true', size is 'small' 1`] = ` +<View + style={ + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } + } +> + <View + style={ + { + "padding": 0, + } + } + testID="holi-calendar-icon" + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -25377,7 +24835,7 @@ exports[`renders correctly renders correctly when day is '6', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -25397,21 +24855,18 @@ exports[`renders correctly renders correctly when day is '6', month is '7', disa exports[`renders correctly renders correctly when day is '6', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -25433,7 +24888,8 @@ exports[`renders correctly renders correctly when day is '6', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -25450,7 +24906,7 @@ exports[`renders correctly renders correctly when day is '6', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -25491,21 +24947,18 @@ exports[`renders correctly renders correctly when day is '6', month is '8', disa exports[`renders correctly renders correctly when day is '6', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -25527,7 +24980,8 @@ exports[`renders correctly renders correctly when day is '6', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -25544,7 +24998,7 @@ exports[`renders correctly renders correctly when day is '6', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -25585,21 +25039,18 @@ exports[`renders correctly renders correctly when day is '6', month is '8', disa exports[`renders correctly renders correctly when day is '6', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -25621,6 +25072,7 @@ exports[`renders correctly renders correctly when day is '6', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -25659,7 +25111,7 @@ exports[`renders correctly renders correctly when day is '6', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -25679,21 +25131,18 @@ exports[`renders correctly renders correctly when day is '6', month is '8', disa exports[`renders correctly renders correctly when day is '6', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -25715,6 +25164,7 @@ exports[`renders correctly renders correctly when day is '6', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -25753,7 +25203,7 @@ exports[`renders correctly renders correctly when day is '6', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -25773,21 +25223,18 @@ exports[`renders correctly renders correctly when day is '6', month is '8', disa exports[`renders correctly renders correctly when day is '6', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -25809,7 +25256,8 @@ exports[`renders correctly renders correctly when day is '6', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -25826,7 +25274,7 @@ exports[`renders correctly renders correctly when day is '6', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -25867,21 +25315,18 @@ exports[`renders correctly renders correctly when day is '6', month is '9', disa exports[`renders correctly renders correctly when day is '6', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -25903,7 +25348,8 @@ exports[`renders correctly renders correctly when day is '6', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -25920,7 +25366,7 @@ exports[`renders correctly renders correctly when day is '6', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -25961,21 +25407,18 @@ exports[`renders correctly renders correctly when day is '6', month is '9', disa exports[`renders correctly renders correctly when day is '6', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -25997,6 +25440,7 @@ exports[`renders correctly renders correctly when day is '6', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -26035,7 +25479,7 @@ exports[`renders correctly renders correctly when day is '6', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -26055,21 +25499,18 @@ exports[`renders correctly renders correctly when day is '6', month is '9', disa exports[`renders correctly renders correctly when day is '6', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -26091,6 +25532,7 @@ exports[`renders correctly renders correctly when day is '6', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -26129,7 +25571,7 @@ exports[`renders correctly renders correctly when day is '6', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -26149,21 +25591,18 @@ exports[`renders correctly renders correctly when day is '6', month is '9', disa exports[`renders correctly renders correctly when day is '6', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -26185,7 +25624,8 @@ exports[`renders correctly renders correctly when day is '6', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -26202,7 +25642,7 @@ exports[`renders correctly renders correctly when day is '6', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -26243,21 +25683,18 @@ exports[`renders correctly renders correctly when day is '6', month is '10', dis exports[`renders correctly renders correctly when day is '6', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -26279,7 +25716,8 @@ exports[`renders correctly renders correctly when day is '6', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -26296,7 +25734,7 @@ exports[`renders correctly renders correctly when day is '6', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -26337,21 +25775,18 @@ exports[`renders correctly renders correctly when day is '6', month is '10', dis exports[`renders correctly renders correctly when day is '6', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -26373,6 +25808,7 @@ exports[`renders correctly renders correctly when day is '6', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -26411,7 +25847,7 @@ exports[`renders correctly renders correctly when day is '6', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -26431,21 +25867,18 @@ exports[`renders correctly renders correctly when day is '6', month is '10', dis exports[`renders correctly renders correctly when day is '6', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -26467,6 +25900,7 @@ exports[`renders correctly renders correctly when day is '6', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -26505,7 +25939,7 @@ exports[`renders correctly renders correctly when day is '6', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -26525,21 +25959,18 @@ exports[`renders correctly renders correctly when day is '6', month is '10', dis exports[`renders correctly renders correctly when day is '6', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -26561,7 +25992,8 @@ exports[`renders correctly renders correctly when day is '6', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -26576,7 +26008,7 @@ exports[`renders correctly renders correctly when day is '6', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -26617,21 +26049,18 @@ exports[`renders correctly renders correctly when day is '6', month is '11', dis exports[`renders correctly renders correctly when day is '6', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -26653,7 +26082,8 @@ exports[`renders correctly renders correctly when day is '6', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -26668,7 +26098,7 @@ exports[`renders correctly renders correctly when day is '6', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -26709,21 +26139,18 @@ exports[`renders correctly renders correctly when day is '6', month is '11', dis exports[`renders correctly renders correctly when day is '6', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -26745,6 +26172,7 @@ exports[`renders correctly renders correctly when day is '6', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -26781,7 +26209,7 @@ exports[`renders correctly renders correctly when day is '6', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -26801,21 +26229,18 @@ exports[`renders correctly renders correctly when day is '6', month is '11', dis exports[`renders correctly renders correctly when day is '6', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -26837,6 +26262,7 @@ exports[`renders correctly renders correctly when day is '6', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -26873,7 +26299,7 @@ exports[`renders correctly renders correctly when day is '6', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -26893,21 +26319,18 @@ exports[`renders correctly renders correctly when day is '6', month is '11', dis exports[`renders correctly renders correctly when day is '6', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -26929,7 +26352,8 @@ exports[`renders correctly renders correctly when day is '6', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -26944,7 +26368,7 @@ exports[`renders correctly renders correctly when day is '6', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -26985,21 +26409,18 @@ exports[`renders correctly renders correctly when day is '6', month is '12', dis exports[`renders correctly renders correctly when day is '6', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -27021,7 +26442,8 @@ exports[`renders correctly renders correctly when day is '6', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -27036,7 +26458,7 @@ exports[`renders correctly renders correctly when day is '6', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -27077,21 +26499,18 @@ exports[`renders correctly renders correctly when day is '6', month is '12', dis exports[`renders correctly renders correctly when day is '6', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -27113,6 +26532,7 @@ exports[`renders correctly renders correctly when day is '6', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -27149,7 +26569,7 @@ exports[`renders correctly renders correctly when day is '6', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -27169,21 +26589,18 @@ exports[`renders correctly renders correctly when day is '6', month is '12', dis exports[`renders correctly renders correctly when day is '6', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -27205,6 +26622,7 @@ exports[`renders correctly renders correctly when day is '6', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -27241,7 +26659,7 @@ exports[`renders correctly renders correctly when day is '6', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -27261,21 +26679,18 @@ exports[`renders correctly renders correctly when day is '6', month is '12', dis exports[`renders correctly renders correctly when day is '7', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -27297,7 +26712,8 @@ exports[`renders correctly renders correctly when day is '7', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -27314,7 +26730,7 @@ exports[`renders correctly renders correctly when day is '7', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -27355,21 +26771,18 @@ exports[`renders correctly renders correctly when day is '7', month is '1', disa exports[`renders correctly renders correctly when day is '7', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -27391,7 +26804,8 @@ exports[`renders correctly renders correctly when day is '7', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -27408,7 +26822,7 @@ exports[`renders correctly renders correctly when day is '7', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -27449,21 +26863,18 @@ exports[`renders correctly renders correctly when day is '7', month is '1', disa exports[`renders correctly renders correctly when day is '7', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -27485,6 +26896,7 @@ exports[`renders correctly renders correctly when day is '7', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -27523,7 +26935,7 @@ exports[`renders correctly renders correctly when day is '7', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -27543,21 +26955,18 @@ exports[`renders correctly renders correctly when day is '7', month is '1', disa exports[`renders correctly renders correctly when day is '7', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -27579,6 +26988,7 @@ exports[`renders correctly renders correctly when day is '7', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -27617,7 +27027,7 @@ exports[`renders correctly renders correctly when day is '7', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -27637,21 +27047,18 @@ exports[`renders correctly renders correctly when day is '7', month is '1', disa exports[`renders correctly renders correctly when day is '7', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -27673,7 +27080,8 @@ exports[`renders correctly renders correctly when day is '7', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -27690,7 +27098,7 @@ exports[`renders correctly renders correctly when day is '7', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -27731,21 +27139,18 @@ exports[`renders correctly renders correctly when day is '7', month is '2', disa exports[`renders correctly renders correctly when day is '7', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -27767,7 +27172,8 @@ exports[`renders correctly renders correctly when day is '7', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -27784,7 +27190,7 @@ exports[`renders correctly renders correctly when day is '7', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -27825,21 +27231,18 @@ exports[`renders correctly renders correctly when day is '7', month is '2', disa exports[`renders correctly renders correctly when day is '7', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -27861,6 +27264,7 @@ exports[`renders correctly renders correctly when day is '7', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -27899,7 +27303,7 @@ exports[`renders correctly renders correctly when day is '7', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -27919,21 +27323,18 @@ exports[`renders correctly renders correctly when day is '7', month is '2', disa exports[`renders correctly renders correctly when day is '7', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -27955,6 +27356,7 @@ exports[`renders correctly renders correctly when day is '7', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -27993,7 +27395,7 @@ exports[`renders correctly renders correctly when day is '7', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -28013,21 +27415,18 @@ exports[`renders correctly renders correctly when day is '7', month is '2', disa exports[`renders correctly renders correctly when day is '7', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -28049,7 +27448,8 @@ exports[`renders correctly renders correctly when day is '7', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -28066,7 +27466,7 @@ exports[`renders correctly renders correctly when day is '7', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -28107,21 +27507,18 @@ exports[`renders correctly renders correctly when day is '7', month is '3', disa exports[`renders correctly renders correctly when day is '7', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -28143,7 +27540,8 @@ exports[`renders correctly renders correctly when day is '7', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -28160,7 +27558,7 @@ exports[`renders correctly renders correctly when day is '7', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -28201,21 +27599,18 @@ exports[`renders correctly renders correctly when day is '7', month is '3', disa exports[`renders correctly renders correctly when day is '7', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -28237,6 +27632,7 @@ exports[`renders correctly renders correctly when day is '7', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -28275,7 +27671,7 @@ exports[`renders correctly renders correctly when day is '7', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -28295,21 +27691,18 @@ exports[`renders correctly renders correctly when day is '7', month is '3', disa exports[`renders correctly renders correctly when day is '7', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -28331,6 +27724,7 @@ exports[`renders correctly renders correctly when day is '7', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -28369,7 +27763,7 @@ exports[`renders correctly renders correctly when day is '7', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -28389,21 +27783,18 @@ exports[`renders correctly renders correctly when day is '7', month is '3', disa exports[`renders correctly renders correctly when day is '7', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -28425,7 +27816,8 @@ exports[`renders correctly renders correctly when day is '7', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -28442,7 +27834,7 @@ exports[`renders correctly renders correctly when day is '7', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -28483,21 +27875,18 @@ exports[`renders correctly renders correctly when day is '7', month is '4', disa exports[`renders correctly renders correctly when day is '7', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -28519,7 +27908,8 @@ exports[`renders correctly renders correctly when day is '7', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -28536,7 +27926,7 @@ exports[`renders correctly renders correctly when day is '7', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -28577,21 +27967,18 @@ exports[`renders correctly renders correctly when day is '7', month is '4', disa exports[`renders correctly renders correctly when day is '7', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -28613,6 +28000,7 @@ exports[`renders correctly renders correctly when day is '7', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -28651,7 +28039,7 @@ exports[`renders correctly renders correctly when day is '7', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -28671,21 +28059,18 @@ exports[`renders correctly renders correctly when day is '7', month is '4', disa exports[`renders correctly renders correctly when day is '7', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -28707,6 +28092,7 @@ exports[`renders correctly renders correctly when day is '7', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -28745,7 +28131,7 @@ exports[`renders correctly renders correctly when day is '7', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -28765,21 +28151,18 @@ exports[`renders correctly renders correctly when day is '7', month is '4', disa exports[`renders correctly renders correctly when day is '7', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -28801,7 +28184,8 @@ exports[`renders correctly renders correctly when day is '7', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -28818,7 +28202,7 @@ exports[`renders correctly renders correctly when day is '7', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -28859,21 +28243,18 @@ exports[`renders correctly renders correctly when day is '7', month is '5', disa exports[`renders correctly renders correctly when day is '7', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -28895,7 +28276,8 @@ exports[`renders correctly renders correctly when day is '7', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -28912,7 +28294,7 @@ exports[`renders correctly renders correctly when day is '7', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -28953,21 +28335,18 @@ exports[`renders correctly renders correctly when day is '7', month is '5', disa exports[`renders correctly renders correctly when day is '7', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -28989,6 +28368,7 @@ exports[`renders correctly renders correctly when day is '7', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -29027,7 +28407,7 @@ exports[`renders correctly renders correctly when day is '7', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -29047,21 +28427,18 @@ exports[`renders correctly renders correctly when day is '7', month is '5', disa exports[`renders correctly renders correctly when day is '7', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -29083,6 +28460,7 @@ exports[`renders correctly renders correctly when day is '7', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -29121,7 +28499,7 @@ exports[`renders correctly renders correctly when day is '7', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -29141,21 +28519,18 @@ exports[`renders correctly renders correctly when day is '7', month is '5', disa exports[`renders correctly renders correctly when day is '7', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -29177,7 +28552,8 @@ exports[`renders correctly renders correctly when day is '7', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -29194,7 +28570,7 @@ exports[`renders correctly renders correctly when day is '7', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -29235,21 +28611,18 @@ exports[`renders correctly renders correctly when day is '7', month is '6', disa exports[`renders correctly renders correctly when day is '7', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -29271,7 +28644,8 @@ exports[`renders correctly renders correctly when day is '7', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -29288,7 +28662,7 @@ exports[`renders correctly renders correctly when day is '7', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -29329,21 +28703,18 @@ exports[`renders correctly renders correctly when day is '7', month is '6', disa exports[`renders correctly renders correctly when day is '7', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -29365,6 +28736,7 @@ exports[`renders correctly renders correctly when day is '7', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -29403,7 +28775,7 @@ exports[`renders correctly renders correctly when day is '7', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -29423,21 +28795,18 @@ exports[`renders correctly renders correctly when day is '7', month is '6', disa exports[`renders correctly renders correctly when day is '7', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -29459,6 +28828,7 @@ exports[`renders correctly renders correctly when day is '7', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -29497,7 +28867,7 @@ exports[`renders correctly renders correctly when day is '7', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -29517,21 +28887,18 @@ exports[`renders correctly renders correctly when day is '7', month is '6', disa exports[`renders correctly renders correctly when day is '7', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -29553,7 +28920,8 @@ exports[`renders correctly renders correctly when day is '7', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -29570,7 +28938,7 @@ exports[`renders correctly renders correctly when day is '7', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -29611,21 +28979,18 @@ exports[`renders correctly renders correctly when day is '7', month is '7', disa exports[`renders correctly renders correctly when day is '7', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -29647,7 +29012,8 @@ exports[`renders correctly renders correctly when day is '7', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -29664,7 +29030,7 @@ exports[`renders correctly renders correctly when day is '7', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -29705,21 +29071,18 @@ exports[`renders correctly renders correctly when day is '7', month is '7', disa exports[`renders correctly renders correctly when day is '7', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -29741,6 +29104,7 @@ exports[`renders correctly renders correctly when day is '7', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -29779,7 +29143,7 @@ exports[`renders correctly renders correctly when day is '7', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -29799,21 +29163,18 @@ exports[`renders correctly renders correctly when day is '7', month is '7', disa exports[`renders correctly renders correctly when day is '7', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -29835,6 +29196,7 @@ exports[`renders correctly renders correctly when day is '7', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -29873,7 +29235,7 @@ exports[`renders correctly renders correctly when day is '7', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -29893,21 +29255,18 @@ exports[`renders correctly renders correctly when day is '7', month is '7', disa exports[`renders correctly renders correctly when day is '7', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -29929,7 +29288,8 @@ exports[`renders correctly renders correctly when day is '7', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -29946,7 +29306,7 @@ exports[`renders correctly renders correctly when day is '7', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -29987,21 +29347,18 @@ exports[`renders correctly renders correctly when day is '7', month is '8', disa exports[`renders correctly renders correctly when day is '7', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -30023,7 +29380,8 @@ exports[`renders correctly renders correctly when day is '7', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -30040,7 +29398,7 @@ exports[`renders correctly renders correctly when day is '7', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -30081,21 +29439,18 @@ exports[`renders correctly renders correctly when day is '7', month is '8', disa exports[`renders correctly renders correctly when day is '7', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -30117,6 +29472,7 @@ exports[`renders correctly renders correctly when day is '7', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -30155,7 +29511,7 @@ exports[`renders correctly renders correctly when day is '7', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -30175,21 +29531,18 @@ exports[`renders correctly renders correctly when day is '7', month is '8', disa exports[`renders correctly renders correctly when day is '7', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -30211,6 +29564,7 @@ exports[`renders correctly renders correctly when day is '7', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -30249,7 +29603,7 @@ exports[`renders correctly renders correctly when day is '7', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -30269,21 +29623,18 @@ exports[`renders correctly renders correctly when day is '7', month is '8', disa exports[`renders correctly renders correctly when day is '7', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -30305,7 +29656,8 @@ exports[`renders correctly renders correctly when day is '7', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -30322,7 +29674,7 @@ exports[`renders correctly renders correctly when day is '7', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -30363,21 +29715,18 @@ exports[`renders correctly renders correctly when day is '7', month is '9', disa exports[`renders correctly renders correctly when day is '7', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -30399,7 +29748,8 @@ exports[`renders correctly renders correctly when day is '7', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -30416,7 +29766,7 @@ exports[`renders correctly renders correctly when day is '7', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -30457,21 +29807,18 @@ exports[`renders correctly renders correctly when day is '7', month is '9', disa exports[`renders correctly renders correctly when day is '7', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -30493,6 +29840,7 @@ exports[`renders correctly renders correctly when day is '7', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -30531,7 +29879,7 @@ exports[`renders correctly renders correctly when day is '7', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -30551,21 +29899,18 @@ exports[`renders correctly renders correctly when day is '7', month is '9', disa exports[`renders correctly renders correctly when day is '7', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -30587,6 +29932,7 @@ exports[`renders correctly renders correctly when day is '7', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -30625,7 +29971,7 @@ exports[`renders correctly renders correctly when day is '7', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -30645,21 +29991,18 @@ exports[`renders correctly renders correctly when day is '7', month is '9', disa exports[`renders correctly renders correctly when day is '7', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -30681,7 +30024,8 @@ exports[`renders correctly renders correctly when day is '7', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -30698,7 +30042,7 @@ exports[`renders correctly renders correctly when day is '7', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -30739,21 +30083,18 @@ exports[`renders correctly renders correctly when day is '7', month is '10', dis exports[`renders correctly renders correctly when day is '7', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -30775,7 +30116,8 @@ exports[`renders correctly renders correctly when day is '7', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -30792,7 +30134,7 @@ exports[`renders correctly renders correctly when day is '7', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -30833,21 +30175,18 @@ exports[`renders correctly renders correctly when day is '7', month is '10', dis exports[`renders correctly renders correctly when day is '7', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -30869,6 +30208,7 @@ exports[`renders correctly renders correctly when day is '7', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -30907,7 +30247,7 @@ exports[`renders correctly renders correctly when day is '7', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -30927,21 +30267,18 @@ exports[`renders correctly renders correctly when day is '7', month is '10', dis exports[`renders correctly renders correctly when day is '7', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -30963,6 +30300,7 @@ exports[`renders correctly renders correctly when day is '7', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -31001,7 +30339,7 @@ exports[`renders correctly renders correctly when day is '7', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -31021,21 +30359,18 @@ exports[`renders correctly renders correctly when day is '7', month is '10', dis exports[`renders correctly renders correctly when day is '7', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -31057,7 +30392,8 @@ exports[`renders correctly renders correctly when day is '7', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -31072,7 +30408,7 @@ exports[`renders correctly renders correctly when day is '7', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -31113,21 +30449,18 @@ exports[`renders correctly renders correctly when day is '7', month is '11', dis exports[`renders correctly renders correctly when day is '7', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -31149,7 +30482,8 @@ exports[`renders correctly renders correctly when day is '7', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -31164,7 +30498,7 @@ exports[`renders correctly renders correctly when day is '7', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -31205,21 +30539,18 @@ exports[`renders correctly renders correctly when day is '7', month is '11', dis exports[`renders correctly renders correctly when day is '7', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -31241,6 +30572,7 @@ exports[`renders correctly renders correctly when day is '7', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -31277,7 +30609,7 @@ exports[`renders correctly renders correctly when day is '7', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -31297,21 +30629,18 @@ exports[`renders correctly renders correctly when day is '7', month is '11', dis exports[`renders correctly renders correctly when day is '7', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -31333,6 +30662,7 @@ exports[`renders correctly renders correctly when day is '7', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -31369,7 +30699,7 @@ exports[`renders correctly renders correctly when day is '7', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -31389,21 +30719,18 @@ exports[`renders correctly renders correctly when day is '7', month is '11', dis exports[`renders correctly renders correctly when day is '7', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -31425,7 +30752,8 @@ exports[`renders correctly renders correctly when day is '7', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -31440,7 +30768,7 @@ exports[`renders correctly renders correctly when day is '7', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -31481,21 +30809,18 @@ exports[`renders correctly renders correctly when day is '7', month is '12', dis exports[`renders correctly renders correctly when day is '7', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -31517,7 +30842,8 @@ exports[`renders correctly renders correctly when day is '7', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -31532,7 +30858,7 @@ exports[`renders correctly renders correctly when day is '7', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -31573,21 +30899,18 @@ exports[`renders correctly renders correctly when day is '7', month is '12', dis exports[`renders correctly renders correctly when day is '7', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -31609,6 +30932,7 @@ exports[`renders correctly renders correctly when day is '7', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -31645,7 +30969,7 @@ exports[`renders correctly renders correctly when day is '7', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -31665,21 +30989,18 @@ exports[`renders correctly renders correctly when day is '7', month is '12', dis exports[`renders correctly renders correctly when day is '7', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -31701,6 +31022,7 @@ exports[`renders correctly renders correctly when day is '7', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -31737,7 +31059,7 @@ exports[`renders correctly renders correctly when day is '7', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -31757,21 +31079,18 @@ exports[`renders correctly renders correctly when day is '7', month is '12', dis exports[`renders correctly renders correctly when day is '8', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -31793,7 +31112,8 @@ exports[`renders correctly renders correctly when day is '8', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -31810,7 +31130,7 @@ exports[`renders correctly renders correctly when day is '8', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -31851,21 +31171,18 @@ exports[`renders correctly renders correctly when day is '8', month is '1', disa exports[`renders correctly renders correctly when day is '8', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -31887,7 +31204,8 @@ exports[`renders correctly renders correctly when day is '8', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -31904,7 +31222,7 @@ exports[`renders correctly renders correctly when day is '8', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -31945,21 +31263,18 @@ exports[`renders correctly renders correctly when day is '8', month is '1', disa exports[`renders correctly renders correctly when day is '8', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -31981,6 +31296,7 @@ exports[`renders correctly renders correctly when day is '8', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -32019,7 +31335,7 @@ exports[`renders correctly renders correctly when day is '8', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -32039,21 +31355,18 @@ exports[`renders correctly renders correctly when day is '8', month is '1', disa exports[`renders correctly renders correctly when day is '8', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -32075,6 +31388,7 @@ exports[`renders correctly renders correctly when day is '8', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -32113,7 +31427,7 @@ exports[`renders correctly renders correctly when day is '8', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -32133,21 +31447,18 @@ exports[`renders correctly renders correctly when day is '8', month is '1', disa exports[`renders correctly renders correctly when day is '8', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -32169,7 +31480,8 @@ exports[`renders correctly renders correctly when day is '8', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -32186,7 +31498,7 @@ exports[`renders correctly renders correctly when day is '8', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -32227,21 +31539,18 @@ exports[`renders correctly renders correctly when day is '8', month is '2', disa exports[`renders correctly renders correctly when day is '8', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -32263,7 +31572,8 @@ exports[`renders correctly renders correctly when day is '8', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -32280,7 +31590,7 @@ exports[`renders correctly renders correctly when day is '8', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -32321,21 +31631,18 @@ exports[`renders correctly renders correctly when day is '8', month is '2', disa exports[`renders correctly renders correctly when day is '8', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -32357,6 +31664,7 @@ exports[`renders correctly renders correctly when day is '8', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -32395,7 +31703,7 @@ exports[`renders correctly renders correctly when day is '8', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -32415,21 +31723,18 @@ exports[`renders correctly renders correctly when day is '8', month is '2', disa exports[`renders correctly renders correctly when day is '8', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -32451,6 +31756,7 @@ exports[`renders correctly renders correctly when day is '8', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -32489,7 +31795,7 @@ exports[`renders correctly renders correctly when day is '8', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -32509,21 +31815,18 @@ exports[`renders correctly renders correctly when day is '8', month is '2', disa exports[`renders correctly renders correctly when day is '8', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -32545,7 +31848,8 @@ exports[`renders correctly renders correctly when day is '8', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -32562,7 +31866,7 @@ exports[`renders correctly renders correctly when day is '8', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -32603,21 +31907,18 @@ exports[`renders correctly renders correctly when day is '8', month is '3', disa exports[`renders correctly renders correctly when day is '8', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -32639,7 +31940,8 @@ exports[`renders correctly renders correctly when day is '8', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -32656,7 +31958,7 @@ exports[`renders correctly renders correctly when day is '8', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -32697,21 +31999,18 @@ exports[`renders correctly renders correctly when day is '8', month is '3', disa exports[`renders correctly renders correctly when day is '8', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -32733,6 +32032,7 @@ exports[`renders correctly renders correctly when day is '8', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -32771,7 +32071,7 @@ exports[`renders correctly renders correctly when day is '8', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -32791,21 +32091,18 @@ exports[`renders correctly renders correctly when day is '8', month is '3', disa exports[`renders correctly renders correctly when day is '8', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -32827,6 +32124,7 @@ exports[`renders correctly renders correctly when day is '8', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -32865,7 +32163,7 @@ exports[`renders correctly renders correctly when day is '8', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -32885,21 +32183,18 @@ exports[`renders correctly renders correctly when day is '8', month is '3', disa exports[`renders correctly renders correctly when day is '8', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -32921,7 +32216,8 @@ exports[`renders correctly renders correctly when day is '8', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -32938,7 +32234,7 @@ exports[`renders correctly renders correctly when day is '8', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -32979,21 +32275,18 @@ exports[`renders correctly renders correctly when day is '8', month is '4', disa exports[`renders correctly renders correctly when day is '8', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -33015,7 +32308,8 @@ exports[`renders correctly renders correctly when day is '8', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -33032,7 +32326,7 @@ exports[`renders correctly renders correctly when day is '8', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -33073,21 +32367,18 @@ exports[`renders correctly renders correctly when day is '8', month is '4', disa exports[`renders correctly renders correctly when day is '8', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -33109,6 +32400,7 @@ exports[`renders correctly renders correctly when day is '8', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -33147,7 +32439,7 @@ exports[`renders correctly renders correctly when day is '8', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -33167,21 +32459,18 @@ exports[`renders correctly renders correctly when day is '8', month is '4', disa exports[`renders correctly renders correctly when day is '8', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -33203,6 +32492,7 @@ exports[`renders correctly renders correctly when day is '8', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -33241,7 +32531,7 @@ exports[`renders correctly renders correctly when day is '8', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -33261,21 +32551,18 @@ exports[`renders correctly renders correctly when day is '8', month is '4', disa exports[`renders correctly renders correctly when day is '8', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -33297,7 +32584,8 @@ exports[`renders correctly renders correctly when day is '8', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -33314,7 +32602,7 @@ exports[`renders correctly renders correctly when day is '8', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -33355,21 +32643,18 @@ exports[`renders correctly renders correctly when day is '8', month is '5', disa exports[`renders correctly renders correctly when day is '8', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -33391,7 +32676,8 @@ exports[`renders correctly renders correctly when day is '8', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -33408,7 +32694,7 @@ exports[`renders correctly renders correctly when day is '8', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -33449,21 +32735,18 @@ exports[`renders correctly renders correctly when day is '8', month is '5', disa exports[`renders correctly renders correctly when day is '8', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -33485,6 +32768,7 @@ exports[`renders correctly renders correctly when day is '8', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -33523,7 +32807,7 @@ exports[`renders correctly renders correctly when day is '8', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -33543,21 +32827,18 @@ exports[`renders correctly renders correctly when day is '8', month is '5', disa exports[`renders correctly renders correctly when day is '8', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -33579,6 +32860,7 @@ exports[`renders correctly renders correctly when day is '8', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -33617,7 +32899,7 @@ exports[`renders correctly renders correctly when day is '8', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -33637,21 +32919,18 @@ exports[`renders correctly renders correctly when day is '8', month is '5', disa exports[`renders correctly renders correctly when day is '8', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -33673,7 +32952,8 @@ exports[`renders correctly renders correctly when day is '8', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -33690,7 +32970,7 @@ exports[`renders correctly renders correctly when day is '8', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -33731,21 +33011,18 @@ exports[`renders correctly renders correctly when day is '8', month is '6', disa exports[`renders correctly renders correctly when day is '8', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -33767,7 +33044,8 @@ exports[`renders correctly renders correctly when day is '8', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -33784,7 +33062,7 @@ exports[`renders correctly renders correctly when day is '8', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -33825,21 +33103,18 @@ exports[`renders correctly renders correctly when day is '8', month is '6', disa exports[`renders correctly renders correctly when day is '8', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -33861,6 +33136,7 @@ exports[`renders correctly renders correctly when day is '8', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -33899,7 +33175,7 @@ exports[`renders correctly renders correctly when day is '8', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -33919,21 +33195,18 @@ exports[`renders correctly renders correctly when day is '8', month is '6', disa exports[`renders correctly renders correctly when day is '8', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -33955,6 +33228,7 @@ exports[`renders correctly renders correctly when day is '8', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -33993,7 +33267,7 @@ exports[`renders correctly renders correctly when day is '8', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -34013,21 +33287,18 @@ exports[`renders correctly renders correctly when day is '8', month is '6', disa exports[`renders correctly renders correctly when day is '8', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -34049,7 +33320,8 @@ exports[`renders correctly renders correctly when day is '8', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -34066,7 +33338,7 @@ exports[`renders correctly renders correctly when day is '8', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -34107,21 +33379,18 @@ exports[`renders correctly renders correctly when day is '8', month is '7', disa exports[`renders correctly renders correctly when day is '8', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -34143,7 +33412,8 @@ exports[`renders correctly renders correctly when day is '8', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -34160,7 +33430,7 @@ exports[`renders correctly renders correctly when day is '8', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -34201,21 +33471,18 @@ exports[`renders correctly renders correctly when day is '8', month is '7', disa exports[`renders correctly renders correctly when day is '8', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -34237,6 +33504,7 @@ exports[`renders correctly renders correctly when day is '8', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -34275,7 +33543,7 @@ exports[`renders correctly renders correctly when day is '8', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -34295,21 +33563,18 @@ exports[`renders correctly renders correctly when day is '8', month is '7', disa exports[`renders correctly renders correctly when day is '8', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -34331,6 +33596,7 @@ exports[`renders correctly renders correctly when day is '8', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -34369,7 +33635,7 @@ exports[`renders correctly renders correctly when day is '8', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -34389,21 +33655,18 @@ exports[`renders correctly renders correctly when day is '8', month is '7', disa exports[`renders correctly renders correctly when day is '8', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -34425,7 +33688,8 @@ exports[`renders correctly renders correctly when day is '8', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -34442,7 +33706,7 @@ exports[`renders correctly renders correctly when day is '8', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -34483,21 +33747,18 @@ exports[`renders correctly renders correctly when day is '8', month is '8', disa exports[`renders correctly renders correctly when day is '8', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -34519,7 +33780,8 @@ exports[`renders correctly renders correctly when day is '8', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -34536,7 +33798,7 @@ exports[`renders correctly renders correctly when day is '8', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -34577,21 +33839,18 @@ exports[`renders correctly renders correctly when day is '8', month is '8', disa exports[`renders correctly renders correctly when day is '8', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -34613,6 +33872,7 @@ exports[`renders correctly renders correctly when day is '8', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -34651,7 +33911,7 @@ exports[`renders correctly renders correctly when day is '8', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -34671,21 +33931,18 @@ exports[`renders correctly renders correctly when day is '8', month is '8', disa exports[`renders correctly renders correctly when day is '8', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -34707,6 +33964,7 @@ exports[`renders correctly renders correctly when day is '8', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -34745,7 +34003,7 @@ exports[`renders correctly renders correctly when day is '8', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -34765,21 +34023,18 @@ exports[`renders correctly renders correctly when day is '8', month is '8', disa exports[`renders correctly renders correctly when day is '8', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -34801,7 +34056,8 @@ exports[`renders correctly renders correctly when day is '8', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -34818,7 +34074,7 @@ exports[`renders correctly renders correctly when day is '8', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -34859,21 +34115,18 @@ exports[`renders correctly renders correctly when day is '8', month is '9', disa exports[`renders correctly renders correctly when day is '8', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -34895,7 +34148,8 @@ exports[`renders correctly renders correctly when day is '8', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -34912,7 +34166,7 @@ exports[`renders correctly renders correctly when day is '8', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -34953,21 +34207,18 @@ exports[`renders correctly renders correctly when day is '8', month is '9', disa exports[`renders correctly renders correctly when day is '8', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -34989,6 +34240,7 @@ exports[`renders correctly renders correctly when day is '8', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -35027,7 +34279,7 @@ exports[`renders correctly renders correctly when day is '8', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -35047,21 +34299,18 @@ exports[`renders correctly renders correctly when day is '8', month is '9', disa exports[`renders correctly renders correctly when day is '8', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -35083,6 +34332,7 @@ exports[`renders correctly renders correctly when day is '8', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -35121,7 +34371,7 @@ exports[`renders correctly renders correctly when day is '8', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -35141,21 +34391,18 @@ exports[`renders correctly renders correctly when day is '8', month is '9', disa exports[`renders correctly renders correctly when day is '8', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -35177,7 +34424,8 @@ exports[`renders correctly renders correctly when day is '8', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -35194,7 +34442,7 @@ exports[`renders correctly renders correctly when day is '8', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -35235,21 +34483,18 @@ exports[`renders correctly renders correctly when day is '8', month is '10', dis exports[`renders correctly renders correctly when day is '8', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -35271,7 +34516,8 @@ exports[`renders correctly renders correctly when day is '8', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -35288,7 +34534,7 @@ exports[`renders correctly renders correctly when day is '8', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -35329,21 +34575,18 @@ exports[`renders correctly renders correctly when day is '8', month is '10', dis exports[`renders correctly renders correctly when day is '8', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -35365,6 +34608,7 @@ exports[`renders correctly renders correctly when day is '8', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -35403,7 +34647,7 @@ exports[`renders correctly renders correctly when day is '8', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -35423,21 +34667,18 @@ exports[`renders correctly renders correctly when day is '8', month is '10', dis exports[`renders correctly renders correctly when day is '8', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -35459,6 +34700,7 @@ exports[`renders correctly renders correctly when day is '8', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -35497,7 +34739,7 @@ exports[`renders correctly renders correctly when day is '8', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -35517,21 +34759,18 @@ exports[`renders correctly renders correctly when day is '8', month is '10', dis exports[`renders correctly renders correctly when day is '8', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -35553,7 +34792,8 @@ exports[`renders correctly renders correctly when day is '8', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -35568,7 +34808,7 @@ exports[`renders correctly renders correctly when day is '8', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -35609,21 +34849,18 @@ exports[`renders correctly renders correctly when day is '8', month is '11', dis exports[`renders correctly renders correctly when day is '8', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -35645,7 +34882,8 @@ exports[`renders correctly renders correctly when day is '8', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -35660,7 +34898,7 @@ exports[`renders correctly renders correctly when day is '8', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -35701,21 +34939,18 @@ exports[`renders correctly renders correctly when day is '8', month is '11', dis exports[`renders correctly renders correctly when day is '8', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -35737,6 +34972,7 @@ exports[`renders correctly renders correctly when day is '8', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -35773,7 +35009,7 @@ exports[`renders correctly renders correctly when day is '8', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -35793,21 +35029,18 @@ exports[`renders correctly renders correctly when day is '8', month is '11', dis exports[`renders correctly renders correctly when day is '8', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -35829,6 +35062,7 @@ exports[`renders correctly renders correctly when day is '8', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -35865,7 +35099,7 @@ exports[`renders correctly renders correctly when day is '8', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -35885,21 +35119,18 @@ exports[`renders correctly renders correctly when day is '8', month is '11', dis exports[`renders correctly renders correctly when day is '8', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -35921,7 +35152,8 @@ exports[`renders correctly renders correctly when day is '8', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -35936,7 +35168,7 @@ exports[`renders correctly renders correctly when day is '8', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -35977,21 +35209,18 @@ exports[`renders correctly renders correctly when day is '8', month is '12', dis exports[`renders correctly renders correctly when day is '8', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -36013,7 +35242,8 @@ exports[`renders correctly renders correctly when day is '8', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -36028,7 +35258,7 @@ exports[`renders correctly renders correctly when day is '8', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -36069,21 +35299,18 @@ exports[`renders correctly renders correctly when day is '8', month is '12', dis exports[`renders correctly renders correctly when day is '8', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -36105,6 +35332,7 @@ exports[`renders correctly renders correctly when day is '8', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -36141,7 +35369,7 @@ exports[`renders correctly renders correctly when day is '8', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -36161,21 +35389,18 @@ exports[`renders correctly renders correctly when day is '8', month is '12', dis exports[`renders correctly renders correctly when day is '8', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -36197,6 +35422,7 @@ exports[`renders correctly renders correctly when day is '8', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -36233,7 +35459,7 @@ exports[`renders correctly renders correctly when day is '8', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -36253,21 +35479,18 @@ exports[`renders correctly renders correctly when day is '8', month is '12', dis exports[`renders correctly renders correctly when day is '9', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -36289,7 +35512,8 @@ exports[`renders correctly renders correctly when day is '9', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -36306,7 +35530,7 @@ exports[`renders correctly renders correctly when day is '9', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -36347,21 +35571,18 @@ exports[`renders correctly renders correctly when day is '9', month is '1', disa exports[`renders correctly renders correctly when day is '9', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -36383,7 +35604,8 @@ exports[`renders correctly renders correctly when day is '9', month is '1', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -36400,7 +35622,7 @@ exports[`renders correctly renders correctly when day is '9', month is '1', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -36441,21 +35663,18 @@ exports[`renders correctly renders correctly when day is '9', month is '1', disa exports[`renders correctly renders correctly when day is '9', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -36477,6 +35696,7 @@ exports[`renders correctly renders correctly when day is '9', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -36515,7 +35735,7 @@ exports[`renders correctly renders correctly when day is '9', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -36535,21 +35755,18 @@ exports[`renders correctly renders correctly when day is '9', month is '1', disa exports[`renders correctly renders correctly when day is '9', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -36571,6 +35788,7 @@ exports[`renders correctly renders correctly when day is '9', month is '1', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -36609,7 +35827,7 @@ exports[`renders correctly renders correctly when day is '9', month is '1', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -36629,21 +35847,18 @@ exports[`renders correctly renders correctly when day is '9', month is '1', disa exports[`renders correctly renders correctly when day is '9', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -36665,7 +35880,8 @@ exports[`renders correctly renders correctly when day is '9', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -36682,7 +35898,7 @@ exports[`renders correctly renders correctly when day is '9', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -36723,21 +35939,18 @@ exports[`renders correctly renders correctly when day is '9', month is '2', disa exports[`renders correctly renders correctly when day is '9', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -36759,7 +35972,8 @@ exports[`renders correctly renders correctly when day is '9', month is '2', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -36776,7 +35990,7 @@ exports[`renders correctly renders correctly when day is '9', month is '2', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -36817,21 +36031,18 @@ exports[`renders correctly renders correctly when day is '9', month is '2', disa exports[`renders correctly renders correctly when day is '9', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -36853,6 +36064,7 @@ exports[`renders correctly renders correctly when day is '9', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -36891,7 +36103,7 @@ exports[`renders correctly renders correctly when day is '9', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -36911,21 +36123,18 @@ exports[`renders correctly renders correctly when day is '9', month is '2', disa exports[`renders correctly renders correctly when day is '9', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -36947,6 +36156,7 @@ exports[`renders correctly renders correctly when day is '9', month is '2', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -36985,7 +36195,7 @@ exports[`renders correctly renders correctly when day is '9', month is '2', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -37005,21 +36215,18 @@ exports[`renders correctly renders correctly when day is '9', month is '2', disa exports[`renders correctly renders correctly when day is '9', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -37041,7 +36248,8 @@ exports[`renders correctly renders correctly when day is '9', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -37058,7 +36266,7 @@ exports[`renders correctly renders correctly when day is '9', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -37099,21 +36307,18 @@ exports[`renders correctly renders correctly when day is '9', month is '3', disa exports[`renders correctly renders correctly when day is '9', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -37135,7 +36340,8 @@ exports[`renders correctly renders correctly when day is '9', month is '3', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -37152,7 +36358,7 @@ exports[`renders correctly renders correctly when day is '9', month is '3', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -37193,21 +36399,18 @@ exports[`renders correctly renders correctly when day is '9', month is '3', disa exports[`renders correctly renders correctly when day is '9', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -37229,6 +36432,7 @@ exports[`renders correctly renders correctly when day is '9', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -37267,7 +36471,7 @@ exports[`renders correctly renders correctly when day is '9', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -37287,21 +36491,18 @@ exports[`renders correctly renders correctly when day is '9', month is '3', disa exports[`renders correctly renders correctly when day is '9', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -37323,6 +36524,7 @@ exports[`renders correctly renders correctly when day is '9', month is '3', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -37361,7 +36563,7 @@ exports[`renders correctly renders correctly when day is '9', month is '3', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -37381,21 +36583,18 @@ exports[`renders correctly renders correctly when day is '9', month is '3', disa exports[`renders correctly renders correctly when day is '9', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -37417,7 +36616,8 @@ exports[`renders correctly renders correctly when day is '9', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -37434,7 +36634,7 @@ exports[`renders correctly renders correctly when day is '9', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -37475,21 +36675,18 @@ exports[`renders correctly renders correctly when day is '9', month is '4', disa exports[`renders correctly renders correctly when day is '9', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -37511,7 +36708,8 @@ exports[`renders correctly renders correctly when day is '9', month is '4', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -37528,7 +36726,7 @@ exports[`renders correctly renders correctly when day is '9', month is '4', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -37569,21 +36767,18 @@ exports[`renders correctly renders correctly when day is '9', month is '4', disa exports[`renders correctly renders correctly when day is '9', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -37605,6 +36800,7 @@ exports[`renders correctly renders correctly when day is '9', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -37643,7 +36839,7 @@ exports[`renders correctly renders correctly when day is '9', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -37663,21 +36859,18 @@ exports[`renders correctly renders correctly when day is '9', month is '4', disa exports[`renders correctly renders correctly when day is '9', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -37699,6 +36892,7 @@ exports[`renders correctly renders correctly when day is '9', month is '4', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -37737,7 +36931,7 @@ exports[`renders correctly renders correctly when day is '9', month is '4', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -37757,21 +36951,18 @@ exports[`renders correctly renders correctly when day is '9', month is '4', disa exports[`renders correctly renders correctly when day is '9', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -37793,7 +36984,8 @@ exports[`renders correctly renders correctly when day is '9', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -37810,7 +37002,7 @@ exports[`renders correctly renders correctly when day is '9', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -37851,21 +37043,18 @@ exports[`renders correctly renders correctly when day is '9', month is '5', disa exports[`renders correctly renders correctly when day is '9', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -37887,7 +37076,8 @@ exports[`renders correctly renders correctly when day is '9', month is '5', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -37904,7 +37094,7 @@ exports[`renders correctly renders correctly when day is '9', month is '5', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -37945,21 +37135,18 @@ exports[`renders correctly renders correctly when day is '9', month is '5', disa exports[`renders correctly renders correctly when day is '9', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -37981,6 +37168,7 @@ exports[`renders correctly renders correctly when day is '9', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -38019,7 +37207,7 @@ exports[`renders correctly renders correctly when day is '9', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -38039,21 +37227,18 @@ exports[`renders correctly renders correctly when day is '9', month is '5', disa exports[`renders correctly renders correctly when day is '9', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -38075,6 +37260,7 @@ exports[`renders correctly renders correctly when day is '9', month is '5', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -38113,7 +37299,7 @@ exports[`renders correctly renders correctly when day is '9', month is '5', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -38133,21 +37319,18 @@ exports[`renders correctly renders correctly when day is '9', month is '5', disa exports[`renders correctly renders correctly when day is '9', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -38169,7 +37352,8 @@ exports[`renders correctly renders correctly when day is '9', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -38186,7 +37370,7 @@ exports[`renders correctly renders correctly when day is '9', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -38227,21 +37411,18 @@ exports[`renders correctly renders correctly when day is '9', month is '6', disa exports[`renders correctly renders correctly when day is '9', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -38263,7 +37444,8 @@ exports[`renders correctly renders correctly when day is '9', month is '6', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -38280,7 +37462,7 @@ exports[`renders correctly renders correctly when day is '9', month is '6', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -38321,21 +37503,18 @@ exports[`renders correctly renders correctly when day is '9', month is '6', disa exports[`renders correctly renders correctly when day is '9', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -38357,6 +37536,7 @@ exports[`renders correctly renders correctly when day is '9', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -38395,7 +37575,7 @@ exports[`renders correctly renders correctly when day is '9', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -38415,21 +37595,18 @@ exports[`renders correctly renders correctly when day is '9', month is '6', disa exports[`renders correctly renders correctly when day is '9', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -38451,6 +37628,7 @@ exports[`renders correctly renders correctly when day is '9', month is '6', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -38489,7 +37667,7 @@ exports[`renders correctly renders correctly when day is '9', month is '6', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -38509,21 +37687,18 @@ exports[`renders correctly renders correctly when day is '9', month is '6', disa exports[`renders correctly renders correctly when day is '9', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -38545,7 +37720,8 @@ exports[`renders correctly renders correctly when day is '9', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -38562,7 +37738,7 @@ exports[`renders correctly renders correctly when day is '9', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -38603,21 +37779,18 @@ exports[`renders correctly renders correctly when day is '9', month is '7', disa exports[`renders correctly renders correctly when day is '9', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -38639,7 +37812,8 @@ exports[`renders correctly renders correctly when day is '9', month is '7', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -38656,7 +37830,7 @@ exports[`renders correctly renders correctly when day is '9', month is '7', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -38697,21 +37871,18 @@ exports[`renders correctly renders correctly when day is '9', month is '7', disa exports[`renders correctly renders correctly when day is '9', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -38733,6 +37904,7 @@ exports[`renders correctly renders correctly when day is '9', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -38771,7 +37943,7 @@ exports[`renders correctly renders correctly when day is '9', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -38791,21 +37963,18 @@ exports[`renders correctly renders correctly when day is '9', month is '7', disa exports[`renders correctly renders correctly when day is '9', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -38827,6 +37996,7 @@ exports[`renders correctly renders correctly when day is '9', month is '7', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -38865,7 +38035,7 @@ exports[`renders correctly renders correctly when day is '9', month is '7', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -38885,21 +38055,18 @@ exports[`renders correctly renders correctly when day is '9', month is '7', disa exports[`renders correctly renders correctly when day is '9', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -38921,7 +38088,8 @@ exports[`renders correctly renders correctly when day is '9', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -38938,7 +38106,7 @@ exports[`renders correctly renders correctly when day is '9', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -38979,21 +38147,18 @@ exports[`renders correctly renders correctly when day is '9', month is '8', disa exports[`renders correctly renders correctly when day is '9', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -39015,7 +38180,8 @@ exports[`renders correctly renders correctly when day is '9', month is '8', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -39032,7 +38198,7 @@ exports[`renders correctly renders correctly when day is '9', month is '8', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -39073,21 +38239,18 @@ exports[`renders correctly renders correctly when day is '9', month is '8', disa exports[`renders correctly renders correctly when day is '9', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -39109,6 +38272,7 @@ exports[`renders correctly renders correctly when day is '9', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -39147,7 +38311,7 @@ exports[`renders correctly renders correctly when day is '9', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -39167,21 +38331,18 @@ exports[`renders correctly renders correctly when day is '9', month is '8', disa exports[`renders correctly renders correctly when day is '9', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -39203,6 +38364,7 @@ exports[`renders correctly renders correctly when day is '9', month is '8', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -39241,7 +38403,7 @@ exports[`renders correctly renders correctly when day is '9', month is '8', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -39261,21 +38423,18 @@ exports[`renders correctly renders correctly when day is '9', month is '8', disa exports[`renders correctly renders correctly when day is '9', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -39297,7 +38456,8 @@ exports[`renders correctly renders correctly when day is '9', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -39314,7 +38474,7 @@ exports[`renders correctly renders correctly when day is '9', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -39355,21 +38515,18 @@ exports[`renders correctly renders correctly when day is '9', month is '9', disa exports[`renders correctly renders correctly when day is '9', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -39391,7 +38548,8 @@ exports[`renders correctly renders correctly when day is '9', month is '9', disa selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -39408,7 +38566,7 @@ exports[`renders correctly renders correctly when day is '9', month is '9', disa style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -39449,21 +38607,18 @@ exports[`renders correctly renders correctly when day is '9', month is '9', disa exports[`renders correctly renders correctly when day is '9', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -39485,6 +38640,7 @@ exports[`renders correctly renders correctly when day is '9', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -39523,7 +38679,7 @@ exports[`renders correctly renders correctly when day is '9', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -39543,21 +38699,18 @@ exports[`renders correctly renders correctly when day is '9', month is '9', disa exports[`renders correctly renders correctly when day is '9', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -39579,6 +38732,7 @@ exports[`renders correctly renders correctly when day is '9', month is '9', disa selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -39617,7 +38771,7 @@ exports[`renders correctly renders correctly when day is '9', month is '9', disa selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -39637,21 +38791,18 @@ exports[`renders correctly renders correctly when day is '9', month is '9', disa exports[`renders correctly renders correctly when day is '9', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -39673,7 +38824,8 @@ exports[`renders correctly renders correctly when day is '9', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -39690,7 +38842,7 @@ exports[`renders correctly renders correctly when day is '9', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -39731,21 +38883,18 @@ exports[`renders correctly renders correctly when day is '9', month is '10', dis exports[`renders correctly renders correctly when day is '9', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -39767,7 +38916,8 @@ exports[`renders correctly renders correctly when day is '9', month is '10', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -39784,7 +38934,7 @@ exports[`renders correctly renders correctly when day is '9', month is '10', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -39825,21 +38975,18 @@ exports[`renders correctly renders correctly when day is '9', month is '10', dis exports[`renders correctly renders correctly when day is '9', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -39861,6 +39008,7 @@ exports[`renders correctly renders correctly when day is '9', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -39899,7 +39047,7 @@ exports[`renders correctly renders correctly when day is '9', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -39919,21 +39067,18 @@ exports[`renders correctly renders correctly when day is '9', month is '10', dis exports[`renders correctly renders correctly when day is '9', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -39955,6 +39100,7 @@ exports[`renders correctly renders correctly when day is '9', month is '10', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -39993,7 +39139,7 @@ exports[`renders correctly renders correctly when day is '9', month is '10', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -40013,21 +39159,18 @@ exports[`renders correctly renders correctly when day is '9', month is '10', dis exports[`renders correctly renders correctly when day is '9', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -40049,7 +39192,8 @@ exports[`renders correctly renders correctly when day is '9', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -40064,7 +39208,7 @@ exports[`renders correctly renders correctly when day is '9', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -40105,21 +39249,18 @@ exports[`renders correctly renders correctly when day is '9', month is '11', dis exports[`renders correctly renders correctly when day is '9', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -40141,7 +39282,8 @@ exports[`renders correctly renders correctly when day is '9', month is '11', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -40156,7 +39298,7 @@ exports[`renders correctly renders correctly when day is '9', month is '11', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -40197,21 +39339,18 @@ exports[`renders correctly renders correctly when day is '9', month is '11', dis exports[`renders correctly renders correctly when day is '9', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -40233,6 +39372,7 @@ exports[`renders correctly renders correctly when day is '9', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -40269,7 +39409,7 @@ exports[`renders correctly renders correctly when day is '9', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -40289,21 +39429,18 @@ exports[`renders correctly renders correctly when day is '9', month is '11', dis exports[`renders correctly renders correctly when day is '9', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -40325,6 +39462,7 @@ exports[`renders correctly renders correctly when day is '9', month is '11', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -40361,7 +39499,7 @@ exports[`renders correctly renders correctly when day is '9', month is '11', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -40381,21 +39519,18 @@ exports[`renders correctly renders correctly when day is '9', month is '11', dis exports[`renders correctly renders correctly when day is '9', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -40417,7 +39552,8 @@ exports[`renders correctly renders correctly when day is '9', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -40432,7 +39568,7 @@ exports[`renders correctly renders correctly when day is '9', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -40473,21 +39609,18 @@ exports[`renders correctly renders correctly when day is '9', month is '12', dis exports[`renders correctly renders correctly when day is '9', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -40509,7 +39642,8 @@ exports[`renders correctly renders correctly when day is '9', month is '12', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -40524,7 +39658,7 @@ exports[`renders correctly renders correctly when day is '9', month is '12', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -40565,21 +39699,18 @@ exports[`renders correctly renders correctly when day is '9', month is '12', dis exports[`renders correctly renders correctly when day is '9', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -40601,6 +39732,7 @@ exports[`renders correctly renders correctly when day is '9', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -40637,7 +39769,7 @@ exports[`renders correctly renders correctly when day is '9', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -40657,21 +39789,18 @@ exports[`renders correctly renders correctly when day is '9', month is '12', dis exports[`renders correctly renders correctly when day is '9', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -40693,6 +39822,7 @@ exports[`renders correctly renders correctly when day is '9', month is '12', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -40729,7 +39859,7 @@ exports[`renders correctly renders correctly when day is '9', month is '12', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -40749,21 +39879,18 @@ exports[`renders correctly renders correctly when day is '9', month is '12', dis exports[`renders correctly renders correctly when day is '10', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -40785,7 +39912,8 @@ exports[`renders correctly renders correctly when day is '10', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -40802,7 +39930,7 @@ exports[`renders correctly renders correctly when day is '10', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -40843,21 +39971,18 @@ exports[`renders correctly renders correctly when day is '10', month is '1', dis exports[`renders correctly renders correctly when day is '10', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -40879,7 +40004,8 @@ exports[`renders correctly renders correctly when day is '10', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -40896,7 +40022,7 @@ exports[`renders correctly renders correctly when day is '10', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -40937,21 +40063,18 @@ exports[`renders correctly renders correctly when day is '10', month is '1', dis exports[`renders correctly renders correctly when day is '10', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -40973,6 +40096,7 @@ exports[`renders correctly renders correctly when day is '10', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -41011,7 +40135,7 @@ exports[`renders correctly renders correctly when day is '10', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -41031,21 +40155,18 @@ exports[`renders correctly renders correctly when day is '10', month is '1', dis exports[`renders correctly renders correctly when day is '10', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -41067,6 +40188,7 @@ exports[`renders correctly renders correctly when day is '10', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -41105,7 +40227,7 @@ exports[`renders correctly renders correctly when day is '10', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -41125,21 +40247,18 @@ exports[`renders correctly renders correctly when day is '10', month is '1', dis exports[`renders correctly renders correctly when day is '10', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -41161,7 +40280,8 @@ exports[`renders correctly renders correctly when day is '10', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -41178,7 +40298,7 @@ exports[`renders correctly renders correctly when day is '10', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -41219,21 +40339,18 @@ exports[`renders correctly renders correctly when day is '10', month is '2', dis exports[`renders correctly renders correctly when day is '10', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -41255,7 +40372,8 @@ exports[`renders correctly renders correctly when day is '10', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -41272,7 +40390,7 @@ exports[`renders correctly renders correctly when day is '10', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -41313,21 +40431,18 @@ exports[`renders correctly renders correctly when day is '10', month is '2', dis exports[`renders correctly renders correctly when day is '10', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -41349,6 +40464,7 @@ exports[`renders correctly renders correctly when day is '10', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -41387,7 +40503,7 @@ exports[`renders correctly renders correctly when day is '10', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -41407,21 +40523,18 @@ exports[`renders correctly renders correctly when day is '10', month is '2', dis exports[`renders correctly renders correctly when day is '10', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -41443,6 +40556,7 @@ exports[`renders correctly renders correctly when day is '10', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -41481,7 +40595,7 @@ exports[`renders correctly renders correctly when day is '10', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -41501,21 +40615,18 @@ exports[`renders correctly renders correctly when day is '10', month is '2', dis exports[`renders correctly renders correctly when day is '10', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -41537,7 +40648,8 @@ exports[`renders correctly renders correctly when day is '10', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -41554,7 +40666,7 @@ exports[`renders correctly renders correctly when day is '10', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -41595,21 +40707,18 @@ exports[`renders correctly renders correctly when day is '10', month is '3', dis exports[`renders correctly renders correctly when day is '10', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -41631,7 +40740,8 @@ exports[`renders correctly renders correctly when day is '10', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -41648,7 +40758,7 @@ exports[`renders correctly renders correctly when day is '10', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -41689,21 +40799,18 @@ exports[`renders correctly renders correctly when day is '10', month is '3', dis exports[`renders correctly renders correctly when day is '10', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -41725,6 +40832,7 @@ exports[`renders correctly renders correctly when day is '10', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -41763,7 +40871,7 @@ exports[`renders correctly renders correctly when day is '10', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -41783,21 +40891,18 @@ exports[`renders correctly renders correctly when day is '10', month is '3', dis exports[`renders correctly renders correctly when day is '10', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -41819,6 +40924,7 @@ exports[`renders correctly renders correctly when day is '10', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -41857,7 +40963,7 @@ exports[`renders correctly renders correctly when day is '10', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -41877,21 +40983,18 @@ exports[`renders correctly renders correctly when day is '10', month is '3', dis exports[`renders correctly renders correctly when day is '10', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -41913,7 +41016,8 @@ exports[`renders correctly renders correctly when day is '10', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -41930,7 +41034,7 @@ exports[`renders correctly renders correctly when day is '10', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -41971,21 +41075,18 @@ exports[`renders correctly renders correctly when day is '10', month is '4', dis exports[`renders correctly renders correctly when day is '10', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -42007,7 +41108,8 @@ exports[`renders correctly renders correctly when day is '10', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -42024,7 +41126,7 @@ exports[`renders correctly renders correctly when day is '10', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -42065,115 +41167,18 @@ exports[`renders correctly renders correctly when day is '10', month is '4', dis exports[`renders correctly renders correctly when day is '10', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] - } -> - <View - style={ - { - "padding": 0, - } + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, } - testID="holi-calendar-icon" - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#ebebeb", - "fontFamily": "InstrumentSans-Medium", - "fontSize": 12, - "fontWeight": "500", - "lineHeight": 12, - "paddingBottom": 2, - "textAlign": "center", - "userSelect": "auto", - } - } - > - T - </Text> - <View - style={ - { - "alignItems": "center", - "backgroundColor": "#ebebeb", - "borderTopLeftRadius": 6, - "borderTopRightRadius": 6, - "display": "flex", - "justifyContent": "center", - "minHeight": 44, - "minWidth": 60, - } - } - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#787777", - "fontFamily": "InstrumentSans-Regular", - "fontSize": 28, - "fontWeight": "400", - "lineHeight": 22.4, - "paddingTop": 8, - "userSelect": "auto", - } - } - > - 10 - </Text> - </View> - </View> -</View> -`; - -exports[`renders correctly renders correctly when day is '10', month is '4', disabled is 'true', size is 'small' 1`] = ` -<View - style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] } > <View @@ -42195,6 +41200,99 @@ exports[`renders correctly renders correctly when day is '10', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", + "color": "#ebebeb", + "fontFamily": "InstrumentSans-Medium", + "fontSize": 12, + "fontWeight": "500", + "lineHeight": 12, + "paddingBottom": 2, + "textAlign": "center", + "userSelect": "auto", + } + } + > + T + </Text> + <View + style={ + { + "alignItems": "center", + "backgroundColor": "#ebebeb", + "borderTopLeftRadius": 6, + "borderTopRightRadius": 6, + "display": "flex", + "justifyContent": "center", + "minHeight": 44, + "minWidth": 60, + } + } + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "color": "#676565", + "fontFamily": "InstrumentSans-Regular", + "fontSize": 28, + "fontWeight": "400", + "lineHeight": 22.4, + "paddingTop": 8, + "userSelect": "auto", + } + } + > + 10 + </Text> + </View> + </View> +</View> +`; + +exports[`renders correctly renders correctly when day is '10', month is '4', disabled is 'true', size is 'small' 1`] = ` +<View + style={ + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } + } +> + <View + style={ + { + "padding": 0, + } + } + testID="holi-calendar-icon" + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -42233,7 +41331,7 @@ exports[`renders correctly renders correctly when day is '10', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -42253,21 +41351,18 @@ exports[`renders correctly renders correctly when day is '10', month is '4', dis exports[`renders correctly renders correctly when day is '10', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -42289,7 +41384,8 @@ exports[`renders correctly renders correctly when day is '10', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -42306,7 +41402,7 @@ exports[`renders correctly renders correctly when day is '10', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -42347,21 +41443,18 @@ exports[`renders correctly renders correctly when day is '10', month is '5', dis exports[`renders correctly renders correctly when day is '10', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -42383,7 +41476,8 @@ exports[`renders correctly renders correctly when day is '10', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -42400,7 +41494,7 @@ exports[`renders correctly renders correctly when day is '10', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -42441,21 +41535,18 @@ exports[`renders correctly renders correctly when day is '10', month is '5', dis exports[`renders correctly renders correctly when day is '10', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -42477,6 +41568,7 @@ exports[`renders correctly renders correctly when day is '10', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -42515,7 +41607,7 @@ exports[`renders correctly renders correctly when day is '10', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -42535,21 +41627,18 @@ exports[`renders correctly renders correctly when day is '10', month is '5', dis exports[`renders correctly renders correctly when day is '10', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -42571,6 +41660,7 @@ exports[`renders correctly renders correctly when day is '10', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -42609,7 +41699,7 @@ exports[`renders correctly renders correctly when day is '10', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -42629,21 +41719,18 @@ exports[`renders correctly renders correctly when day is '10', month is '5', dis exports[`renders correctly renders correctly when day is '10', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -42665,7 +41752,8 @@ exports[`renders correctly renders correctly when day is '10', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -42682,7 +41770,7 @@ exports[`renders correctly renders correctly when day is '10', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -42723,21 +41811,18 @@ exports[`renders correctly renders correctly when day is '10', month is '6', dis exports[`renders correctly renders correctly when day is '10', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -42759,7 +41844,8 @@ exports[`renders correctly renders correctly when day is '10', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -42776,7 +41862,7 @@ exports[`renders correctly renders correctly when day is '10', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -42817,21 +41903,18 @@ exports[`renders correctly renders correctly when day is '10', month is '6', dis exports[`renders correctly renders correctly when day is '10', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -42853,6 +41936,7 @@ exports[`renders correctly renders correctly when day is '10', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -42891,7 +41975,7 @@ exports[`renders correctly renders correctly when day is '10', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -42911,21 +41995,18 @@ exports[`renders correctly renders correctly when day is '10', month is '6', dis exports[`renders correctly renders correctly when day is '10', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -42947,6 +42028,7 @@ exports[`renders correctly renders correctly when day is '10', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -42985,7 +42067,7 @@ exports[`renders correctly renders correctly when day is '10', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -43005,21 +42087,18 @@ exports[`renders correctly renders correctly when day is '10', month is '6', dis exports[`renders correctly renders correctly when day is '10', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -43041,7 +42120,8 @@ exports[`renders correctly renders correctly when day is '10', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -43058,7 +42138,7 @@ exports[`renders correctly renders correctly when day is '10', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -43099,21 +42179,18 @@ exports[`renders correctly renders correctly when day is '10', month is '7', dis exports[`renders correctly renders correctly when day is '10', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -43135,7 +42212,8 @@ exports[`renders correctly renders correctly when day is '10', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -43152,7 +42230,7 @@ exports[`renders correctly renders correctly when day is '10', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -43193,21 +42271,18 @@ exports[`renders correctly renders correctly when day is '10', month is '7', dis exports[`renders correctly renders correctly when day is '10', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -43229,6 +42304,7 @@ exports[`renders correctly renders correctly when day is '10', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -43267,7 +42343,7 @@ exports[`renders correctly renders correctly when day is '10', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -43287,21 +42363,18 @@ exports[`renders correctly renders correctly when day is '10', month is '7', dis exports[`renders correctly renders correctly when day is '10', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -43323,6 +42396,7 @@ exports[`renders correctly renders correctly when day is '10', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -43361,7 +42435,7 @@ exports[`renders correctly renders correctly when day is '10', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -43381,21 +42455,18 @@ exports[`renders correctly renders correctly when day is '10', month is '7', dis exports[`renders correctly renders correctly when day is '10', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -43417,7 +42488,8 @@ exports[`renders correctly renders correctly when day is '10', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -43434,7 +42506,7 @@ exports[`renders correctly renders correctly when day is '10', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -43475,21 +42547,18 @@ exports[`renders correctly renders correctly when day is '10', month is '8', dis exports[`renders correctly renders correctly when day is '10', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -43511,7 +42580,8 @@ exports[`renders correctly renders correctly when day is '10', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -43528,7 +42598,7 @@ exports[`renders correctly renders correctly when day is '10', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -43569,21 +42639,18 @@ exports[`renders correctly renders correctly when day is '10', month is '8', dis exports[`renders correctly renders correctly when day is '10', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -43605,6 +42672,7 @@ exports[`renders correctly renders correctly when day is '10', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -43643,7 +42711,7 @@ exports[`renders correctly renders correctly when day is '10', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -43663,21 +42731,18 @@ exports[`renders correctly renders correctly when day is '10', month is '8', dis exports[`renders correctly renders correctly when day is '10', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -43699,6 +42764,7 @@ exports[`renders correctly renders correctly when day is '10', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -43737,7 +42803,7 @@ exports[`renders correctly renders correctly when day is '10', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -43757,21 +42823,18 @@ exports[`renders correctly renders correctly when day is '10', month is '8', dis exports[`renders correctly renders correctly when day is '10', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -43793,7 +42856,8 @@ exports[`renders correctly renders correctly when day is '10', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -43810,7 +42874,7 @@ exports[`renders correctly renders correctly when day is '10', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -43851,21 +42915,18 @@ exports[`renders correctly renders correctly when day is '10', month is '9', dis exports[`renders correctly renders correctly when day is '10', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -43887,7 +42948,8 @@ exports[`renders correctly renders correctly when day is '10', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -43904,7 +42966,7 @@ exports[`renders correctly renders correctly when day is '10', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -43945,21 +43007,18 @@ exports[`renders correctly renders correctly when day is '10', month is '9', dis exports[`renders correctly renders correctly when day is '10', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -43981,6 +43040,7 @@ exports[`renders correctly renders correctly when day is '10', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -44019,7 +43079,7 @@ exports[`renders correctly renders correctly when day is '10', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -44039,21 +43099,18 @@ exports[`renders correctly renders correctly when day is '10', month is '9', dis exports[`renders correctly renders correctly when day is '10', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -44075,6 +43132,7 @@ exports[`renders correctly renders correctly when day is '10', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -44113,7 +43171,7 @@ exports[`renders correctly renders correctly when day is '10', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -44133,21 +43191,18 @@ exports[`renders correctly renders correctly when day is '10', month is '9', dis exports[`renders correctly renders correctly when day is '10', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -44169,7 +43224,8 @@ exports[`renders correctly renders correctly when day is '10', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -44186,7 +43242,7 @@ exports[`renders correctly renders correctly when day is '10', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -44227,21 +43283,18 @@ exports[`renders correctly renders correctly when day is '10', month is '10', di exports[`renders correctly renders correctly when day is '10', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -44263,7 +43316,8 @@ exports[`renders correctly renders correctly when day is '10', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -44280,7 +43334,7 @@ exports[`renders correctly renders correctly when day is '10', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -44321,21 +43375,18 @@ exports[`renders correctly renders correctly when day is '10', month is '10', di exports[`renders correctly renders correctly when day is '10', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -44357,6 +43408,7 @@ exports[`renders correctly renders correctly when day is '10', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -44395,7 +43447,7 @@ exports[`renders correctly renders correctly when day is '10', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -44415,21 +43467,18 @@ exports[`renders correctly renders correctly when day is '10', month is '10', di exports[`renders correctly renders correctly when day is '10', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -44451,6 +43500,7 @@ exports[`renders correctly renders correctly when day is '10', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -44489,7 +43539,7 @@ exports[`renders correctly renders correctly when day is '10', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -44509,21 +43559,18 @@ exports[`renders correctly renders correctly when day is '10', month is '10', di exports[`renders correctly renders correctly when day is '10', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -44545,7 +43592,8 @@ exports[`renders correctly renders correctly when day is '10', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -44560,7 +43608,7 @@ exports[`renders correctly renders correctly when day is '10', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -44601,21 +43649,18 @@ exports[`renders correctly renders correctly when day is '10', month is '11', di exports[`renders correctly renders correctly when day is '10', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -44637,7 +43682,8 @@ exports[`renders correctly renders correctly when day is '10', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -44652,7 +43698,7 @@ exports[`renders correctly renders correctly when day is '10', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -44693,21 +43739,18 @@ exports[`renders correctly renders correctly when day is '10', month is '11', di exports[`renders correctly renders correctly when day is '10', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -44729,6 +43772,7 @@ exports[`renders correctly renders correctly when day is '10', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -44765,7 +43809,7 @@ exports[`renders correctly renders correctly when day is '10', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -44785,21 +43829,18 @@ exports[`renders correctly renders correctly when day is '10', month is '11', di exports[`renders correctly renders correctly when day is '10', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -44821,6 +43862,7 @@ exports[`renders correctly renders correctly when day is '10', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -44857,7 +43899,7 @@ exports[`renders correctly renders correctly when day is '10', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -44877,21 +43919,18 @@ exports[`renders correctly renders correctly when day is '10', month is '11', di exports[`renders correctly renders correctly when day is '10', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -44913,7 +43952,8 @@ exports[`renders correctly renders correctly when day is '10', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -44928,7 +43968,7 @@ exports[`renders correctly renders correctly when day is '10', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -44969,21 +44009,18 @@ exports[`renders correctly renders correctly when day is '10', month is '12', di exports[`renders correctly renders correctly when day is '10', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -45005,7 +44042,8 @@ exports[`renders correctly renders correctly when day is '10', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -45020,7 +44058,7 @@ exports[`renders correctly renders correctly when day is '10', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -45061,21 +44099,18 @@ exports[`renders correctly renders correctly when day is '10', month is '12', di exports[`renders correctly renders correctly when day is '10', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -45097,6 +44132,7 @@ exports[`renders correctly renders correctly when day is '10', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -45133,7 +44169,7 @@ exports[`renders correctly renders correctly when day is '10', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -45153,21 +44189,18 @@ exports[`renders correctly renders correctly when day is '10', month is '12', di exports[`renders correctly renders correctly when day is '10', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -45189,6 +44222,7 @@ exports[`renders correctly renders correctly when day is '10', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -45225,7 +44259,7 @@ exports[`renders correctly renders correctly when day is '10', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -45245,21 +44279,18 @@ exports[`renders correctly renders correctly when day is '10', month is '12', di exports[`renders correctly renders correctly when day is '11', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -45281,7 +44312,8 @@ exports[`renders correctly renders correctly when day is '11', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -45298,7 +44330,7 @@ exports[`renders correctly renders correctly when day is '11', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -45339,21 +44371,18 @@ exports[`renders correctly renders correctly when day is '11', month is '1', dis exports[`renders correctly renders correctly when day is '11', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -45375,7 +44404,8 @@ exports[`renders correctly renders correctly when day is '11', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -45392,7 +44422,7 @@ exports[`renders correctly renders correctly when day is '11', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -45433,21 +44463,18 @@ exports[`renders correctly renders correctly when day is '11', month is '1', dis exports[`renders correctly renders correctly when day is '11', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -45469,6 +44496,7 @@ exports[`renders correctly renders correctly when day is '11', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -45507,7 +44535,7 @@ exports[`renders correctly renders correctly when day is '11', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -45527,21 +44555,18 @@ exports[`renders correctly renders correctly when day is '11', month is '1', dis exports[`renders correctly renders correctly when day is '11', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -45563,6 +44588,7 @@ exports[`renders correctly renders correctly when day is '11', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -45601,7 +44627,7 @@ exports[`renders correctly renders correctly when day is '11', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -45621,21 +44647,18 @@ exports[`renders correctly renders correctly when day is '11', month is '1', dis exports[`renders correctly renders correctly when day is '11', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -45657,7 +44680,8 @@ exports[`renders correctly renders correctly when day is '11', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -45674,7 +44698,7 @@ exports[`renders correctly renders correctly when day is '11', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -45715,21 +44739,18 @@ exports[`renders correctly renders correctly when day is '11', month is '2', dis exports[`renders correctly renders correctly when day is '11', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -45751,7 +44772,8 @@ exports[`renders correctly renders correctly when day is '11', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -45768,7 +44790,7 @@ exports[`renders correctly renders correctly when day is '11', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -45809,21 +44831,18 @@ exports[`renders correctly renders correctly when day is '11', month is '2', dis exports[`renders correctly renders correctly when day is '11', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -45845,6 +44864,7 @@ exports[`renders correctly renders correctly when day is '11', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -45883,7 +44903,7 @@ exports[`renders correctly renders correctly when day is '11', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -45903,21 +44923,18 @@ exports[`renders correctly renders correctly when day is '11', month is '2', dis exports[`renders correctly renders correctly when day is '11', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -45939,6 +44956,7 @@ exports[`renders correctly renders correctly when day is '11', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -45977,7 +44995,7 @@ exports[`renders correctly renders correctly when day is '11', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -45997,21 +45015,18 @@ exports[`renders correctly renders correctly when day is '11', month is '2', dis exports[`renders correctly renders correctly when day is '11', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -46033,7 +45048,8 @@ exports[`renders correctly renders correctly when day is '11', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -46050,7 +45066,7 @@ exports[`renders correctly renders correctly when day is '11', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -46091,21 +45107,18 @@ exports[`renders correctly renders correctly when day is '11', month is '3', dis exports[`renders correctly renders correctly when day is '11', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -46127,7 +45140,8 @@ exports[`renders correctly renders correctly when day is '11', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -46144,7 +45158,7 @@ exports[`renders correctly renders correctly when day is '11', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -46185,21 +45199,18 @@ exports[`renders correctly renders correctly when day is '11', month is '3', dis exports[`renders correctly renders correctly when day is '11', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -46221,6 +45232,7 @@ exports[`renders correctly renders correctly when day is '11', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -46259,7 +45271,7 @@ exports[`renders correctly renders correctly when day is '11', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -46279,21 +45291,18 @@ exports[`renders correctly renders correctly when day is '11', month is '3', dis exports[`renders correctly renders correctly when day is '11', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -46315,6 +45324,7 @@ exports[`renders correctly renders correctly when day is '11', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -46353,7 +45363,7 @@ exports[`renders correctly renders correctly when day is '11', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -46373,21 +45383,18 @@ exports[`renders correctly renders correctly when day is '11', month is '3', dis exports[`renders correctly renders correctly when day is '11', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -46409,7 +45416,8 @@ exports[`renders correctly renders correctly when day is '11', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -46426,7 +45434,7 @@ exports[`renders correctly renders correctly when day is '11', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -46467,21 +45475,18 @@ exports[`renders correctly renders correctly when day is '11', month is '4', dis exports[`renders correctly renders correctly when day is '11', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -46503,7 +45508,8 @@ exports[`renders correctly renders correctly when day is '11', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -46520,7 +45526,7 @@ exports[`renders correctly renders correctly when day is '11', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -46561,21 +45567,18 @@ exports[`renders correctly renders correctly when day is '11', month is '4', dis exports[`renders correctly renders correctly when day is '11', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -46597,6 +45600,7 @@ exports[`renders correctly renders correctly when day is '11', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -46635,7 +45639,7 @@ exports[`renders correctly renders correctly when day is '11', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -46655,21 +45659,18 @@ exports[`renders correctly renders correctly when day is '11', month is '4', dis exports[`renders correctly renders correctly when day is '11', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -46691,6 +45692,7 @@ exports[`renders correctly renders correctly when day is '11', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -46729,7 +45731,7 @@ exports[`renders correctly renders correctly when day is '11', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -46749,21 +45751,18 @@ exports[`renders correctly renders correctly when day is '11', month is '4', dis exports[`renders correctly renders correctly when day is '11', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -46785,7 +45784,8 @@ exports[`renders correctly renders correctly when day is '11', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -46802,7 +45802,7 @@ exports[`renders correctly renders correctly when day is '11', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -46843,21 +45843,18 @@ exports[`renders correctly renders correctly when day is '11', month is '5', dis exports[`renders correctly renders correctly when day is '11', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -46879,7 +45876,8 @@ exports[`renders correctly renders correctly when day is '11', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -46896,7 +45894,7 @@ exports[`renders correctly renders correctly when day is '11', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -46937,21 +45935,18 @@ exports[`renders correctly renders correctly when day is '11', month is '5', dis exports[`renders correctly renders correctly when day is '11', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -46973,6 +45968,7 @@ exports[`renders correctly renders correctly when day is '11', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -47011,7 +46007,7 @@ exports[`renders correctly renders correctly when day is '11', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -47031,21 +46027,18 @@ exports[`renders correctly renders correctly when day is '11', month is '5', dis exports[`renders correctly renders correctly when day is '11', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -47067,6 +46060,7 @@ exports[`renders correctly renders correctly when day is '11', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -47105,7 +46099,7 @@ exports[`renders correctly renders correctly when day is '11', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -47125,21 +46119,18 @@ exports[`renders correctly renders correctly when day is '11', month is '5', dis exports[`renders correctly renders correctly when day is '11', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -47161,7 +46152,8 @@ exports[`renders correctly renders correctly when day is '11', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -47178,7 +46170,7 @@ exports[`renders correctly renders correctly when day is '11', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -47219,21 +46211,18 @@ exports[`renders correctly renders correctly when day is '11', month is '6', dis exports[`renders correctly renders correctly when day is '11', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -47255,7 +46244,8 @@ exports[`renders correctly renders correctly when day is '11', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -47272,7 +46262,7 @@ exports[`renders correctly renders correctly when day is '11', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -47313,21 +46303,18 @@ exports[`renders correctly renders correctly when day is '11', month is '6', dis exports[`renders correctly renders correctly when day is '11', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -47349,6 +46336,7 @@ exports[`renders correctly renders correctly when day is '11', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -47387,7 +46375,7 @@ exports[`renders correctly renders correctly when day is '11', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -47407,21 +46395,18 @@ exports[`renders correctly renders correctly when day is '11', month is '6', dis exports[`renders correctly renders correctly when day is '11', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -47443,6 +46428,7 @@ exports[`renders correctly renders correctly when day is '11', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -47481,7 +46467,7 @@ exports[`renders correctly renders correctly when day is '11', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -47501,21 +46487,18 @@ exports[`renders correctly renders correctly when day is '11', month is '6', dis exports[`renders correctly renders correctly when day is '11', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -47537,7 +46520,8 @@ exports[`renders correctly renders correctly when day is '11', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -47554,7 +46538,7 @@ exports[`renders correctly renders correctly when day is '11', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -47595,21 +46579,18 @@ exports[`renders correctly renders correctly when day is '11', month is '7', dis exports[`renders correctly renders correctly when day is '11', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -47631,7 +46612,8 @@ exports[`renders correctly renders correctly when day is '11', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -47648,7 +46630,7 @@ exports[`renders correctly renders correctly when day is '11', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -47689,21 +46671,18 @@ exports[`renders correctly renders correctly when day is '11', month is '7', dis exports[`renders correctly renders correctly when day is '11', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -47725,6 +46704,7 @@ exports[`renders correctly renders correctly when day is '11', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -47763,7 +46743,7 @@ exports[`renders correctly renders correctly when day is '11', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -47783,21 +46763,18 @@ exports[`renders correctly renders correctly when day is '11', month is '7', dis exports[`renders correctly renders correctly when day is '11', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -47819,6 +46796,7 @@ exports[`renders correctly renders correctly when day is '11', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -47857,7 +46835,7 @@ exports[`renders correctly renders correctly when day is '11', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -47877,21 +46855,18 @@ exports[`renders correctly renders correctly when day is '11', month is '7', dis exports[`renders correctly renders correctly when day is '11', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -47913,7 +46888,8 @@ exports[`renders correctly renders correctly when day is '11', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -47930,7 +46906,7 @@ exports[`renders correctly renders correctly when day is '11', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -47971,21 +46947,18 @@ exports[`renders correctly renders correctly when day is '11', month is '8', dis exports[`renders correctly renders correctly when day is '11', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -48007,7 +46980,8 @@ exports[`renders correctly renders correctly when day is '11', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -48024,7 +46998,7 @@ exports[`renders correctly renders correctly when day is '11', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -48065,21 +47039,18 @@ exports[`renders correctly renders correctly when day is '11', month is '8', dis exports[`renders correctly renders correctly when day is '11', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -48101,6 +47072,7 @@ exports[`renders correctly renders correctly when day is '11', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -48139,7 +47111,7 @@ exports[`renders correctly renders correctly when day is '11', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -48159,21 +47131,18 @@ exports[`renders correctly renders correctly when day is '11', month is '8', dis exports[`renders correctly renders correctly when day is '11', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -48195,6 +47164,7 @@ exports[`renders correctly renders correctly when day is '11', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -48233,7 +47203,7 @@ exports[`renders correctly renders correctly when day is '11', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -48253,21 +47223,18 @@ exports[`renders correctly renders correctly when day is '11', month is '8', dis exports[`renders correctly renders correctly when day is '11', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -48289,7 +47256,8 @@ exports[`renders correctly renders correctly when day is '11', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -48306,7 +47274,7 @@ exports[`renders correctly renders correctly when day is '11', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -48347,21 +47315,18 @@ exports[`renders correctly renders correctly when day is '11', month is '9', dis exports[`renders correctly renders correctly when day is '11', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -48383,7 +47348,8 @@ exports[`renders correctly renders correctly when day is '11', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -48400,7 +47366,7 @@ exports[`renders correctly renders correctly when day is '11', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -48441,21 +47407,18 @@ exports[`renders correctly renders correctly when day is '11', month is '9', dis exports[`renders correctly renders correctly when day is '11', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -48477,6 +47440,7 @@ exports[`renders correctly renders correctly when day is '11', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -48515,7 +47479,7 @@ exports[`renders correctly renders correctly when day is '11', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -48535,21 +47499,18 @@ exports[`renders correctly renders correctly when day is '11', month is '9', dis exports[`renders correctly renders correctly when day is '11', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -48571,6 +47532,7 @@ exports[`renders correctly renders correctly when day is '11', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -48609,7 +47571,7 @@ exports[`renders correctly renders correctly when day is '11', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -48629,21 +47591,18 @@ exports[`renders correctly renders correctly when day is '11', month is '9', dis exports[`renders correctly renders correctly when day is '11', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -48665,7 +47624,8 @@ exports[`renders correctly renders correctly when day is '11', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -48682,7 +47642,7 @@ exports[`renders correctly renders correctly when day is '11', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -48723,21 +47683,18 @@ exports[`renders correctly renders correctly when day is '11', month is '10', di exports[`renders correctly renders correctly when day is '11', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -48759,7 +47716,8 @@ exports[`renders correctly renders correctly when day is '11', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -48776,7 +47734,7 @@ exports[`renders correctly renders correctly when day is '11', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -48817,21 +47775,18 @@ exports[`renders correctly renders correctly when day is '11', month is '10', di exports[`renders correctly renders correctly when day is '11', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -48853,6 +47808,7 @@ exports[`renders correctly renders correctly when day is '11', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -48891,7 +47847,7 @@ exports[`renders correctly renders correctly when day is '11', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -48911,21 +47867,18 @@ exports[`renders correctly renders correctly when day is '11', month is '10', di exports[`renders correctly renders correctly when day is '11', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -48947,6 +47900,7 @@ exports[`renders correctly renders correctly when day is '11', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -48985,7 +47939,7 @@ exports[`renders correctly renders correctly when day is '11', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -49005,21 +47959,18 @@ exports[`renders correctly renders correctly when day is '11', month is '10', di exports[`renders correctly renders correctly when day is '11', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -49041,7 +47992,8 @@ exports[`renders correctly renders correctly when day is '11', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -49056,7 +48008,7 @@ exports[`renders correctly renders correctly when day is '11', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -49097,21 +48049,18 @@ exports[`renders correctly renders correctly when day is '11', month is '11', di exports[`renders correctly renders correctly when day is '11', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -49133,7 +48082,8 @@ exports[`renders correctly renders correctly when day is '11', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -49148,7 +48098,7 @@ exports[`renders correctly renders correctly when day is '11', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -49189,21 +48139,18 @@ exports[`renders correctly renders correctly when day is '11', month is '11', di exports[`renders correctly renders correctly when day is '11', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -49225,6 +48172,7 @@ exports[`renders correctly renders correctly when day is '11', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -49261,7 +48209,7 @@ exports[`renders correctly renders correctly when day is '11', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -49281,21 +48229,18 @@ exports[`renders correctly renders correctly when day is '11', month is '11', di exports[`renders correctly renders correctly when day is '11', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -49317,6 +48262,7 @@ exports[`renders correctly renders correctly when day is '11', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -49353,7 +48299,7 @@ exports[`renders correctly renders correctly when day is '11', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -49373,21 +48319,18 @@ exports[`renders correctly renders correctly when day is '11', month is '11', di exports[`renders correctly renders correctly when day is '11', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -49409,7 +48352,8 @@ exports[`renders correctly renders correctly when day is '11', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -49424,7 +48368,7 @@ exports[`renders correctly renders correctly when day is '11', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -49465,21 +48409,18 @@ exports[`renders correctly renders correctly when day is '11', month is '12', di exports[`renders correctly renders correctly when day is '11', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -49501,7 +48442,8 @@ exports[`renders correctly renders correctly when day is '11', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -49516,7 +48458,7 @@ exports[`renders correctly renders correctly when day is '11', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -49557,21 +48499,18 @@ exports[`renders correctly renders correctly when day is '11', month is '12', di exports[`renders correctly renders correctly when day is '11', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -49593,6 +48532,7 @@ exports[`renders correctly renders correctly when day is '11', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -49629,7 +48569,7 @@ exports[`renders correctly renders correctly when day is '11', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -49649,21 +48589,18 @@ exports[`renders correctly renders correctly when day is '11', month is '12', di exports[`renders correctly renders correctly when day is '11', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -49685,6 +48622,7 @@ exports[`renders correctly renders correctly when day is '11', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -49721,7 +48659,7 @@ exports[`renders correctly renders correctly when day is '11', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -49741,21 +48679,18 @@ exports[`renders correctly renders correctly when day is '11', month is '12', di exports[`renders correctly renders correctly when day is '12', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -49777,7 +48712,8 @@ exports[`renders correctly renders correctly when day is '12', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -49794,7 +48730,7 @@ exports[`renders correctly renders correctly when day is '12', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -49835,21 +48771,18 @@ exports[`renders correctly renders correctly when day is '12', month is '1', dis exports[`renders correctly renders correctly when day is '12', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -49871,7 +48804,8 @@ exports[`renders correctly renders correctly when day is '12', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -49888,7 +48822,7 @@ exports[`renders correctly renders correctly when day is '12', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -49929,21 +48863,18 @@ exports[`renders correctly renders correctly when day is '12', month is '1', dis exports[`renders correctly renders correctly when day is '12', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -49965,6 +48896,7 @@ exports[`renders correctly renders correctly when day is '12', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -50003,7 +48935,7 @@ exports[`renders correctly renders correctly when day is '12', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -50023,21 +48955,18 @@ exports[`renders correctly renders correctly when day is '12', month is '1', dis exports[`renders correctly renders correctly when day is '12', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -50059,6 +48988,7 @@ exports[`renders correctly renders correctly when day is '12', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -50097,7 +49027,7 @@ exports[`renders correctly renders correctly when day is '12', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -50117,21 +49047,18 @@ exports[`renders correctly renders correctly when day is '12', month is '1', dis exports[`renders correctly renders correctly when day is '12', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -50153,7 +49080,8 @@ exports[`renders correctly renders correctly when day is '12', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -50170,7 +49098,7 @@ exports[`renders correctly renders correctly when day is '12', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -50211,21 +49139,18 @@ exports[`renders correctly renders correctly when day is '12', month is '2', dis exports[`renders correctly renders correctly when day is '12', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -50247,7 +49172,8 @@ exports[`renders correctly renders correctly when day is '12', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -50264,7 +49190,7 @@ exports[`renders correctly renders correctly when day is '12', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -50305,21 +49231,18 @@ exports[`renders correctly renders correctly when day is '12', month is '2', dis exports[`renders correctly renders correctly when day is '12', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -50341,6 +49264,7 @@ exports[`renders correctly renders correctly when day is '12', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -50379,7 +49303,7 @@ exports[`renders correctly renders correctly when day is '12', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -50399,21 +49323,18 @@ exports[`renders correctly renders correctly when day is '12', month is '2', dis exports[`renders correctly renders correctly when day is '12', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -50435,6 +49356,7 @@ exports[`renders correctly renders correctly when day is '12', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -50473,7 +49395,7 @@ exports[`renders correctly renders correctly when day is '12', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -50493,21 +49415,18 @@ exports[`renders correctly renders correctly when day is '12', month is '2', dis exports[`renders correctly renders correctly when day is '12', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -50529,7 +49448,8 @@ exports[`renders correctly renders correctly when day is '12', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -50546,7 +49466,7 @@ exports[`renders correctly renders correctly when day is '12', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -50587,21 +49507,18 @@ exports[`renders correctly renders correctly when day is '12', month is '3', dis exports[`renders correctly renders correctly when day is '12', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -50623,7 +49540,8 @@ exports[`renders correctly renders correctly when day is '12', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -50640,7 +49558,7 @@ exports[`renders correctly renders correctly when day is '12', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -50681,21 +49599,18 @@ exports[`renders correctly renders correctly when day is '12', month is '3', dis exports[`renders correctly renders correctly when day is '12', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -50717,6 +49632,7 @@ exports[`renders correctly renders correctly when day is '12', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -50755,7 +49671,7 @@ exports[`renders correctly renders correctly when day is '12', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -50775,21 +49691,18 @@ exports[`renders correctly renders correctly when day is '12', month is '3', dis exports[`renders correctly renders correctly when day is '12', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -50811,6 +49724,7 @@ exports[`renders correctly renders correctly when day is '12', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -50849,7 +49763,7 @@ exports[`renders correctly renders correctly when day is '12', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -50869,21 +49783,18 @@ exports[`renders correctly renders correctly when day is '12', month is '3', dis exports[`renders correctly renders correctly when day is '12', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -50905,7 +49816,8 @@ exports[`renders correctly renders correctly when day is '12', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -50922,7 +49834,7 @@ exports[`renders correctly renders correctly when day is '12', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -50963,21 +49875,18 @@ exports[`renders correctly renders correctly when day is '12', month is '4', dis exports[`renders correctly renders correctly when day is '12', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -50999,7 +49908,8 @@ exports[`renders correctly renders correctly when day is '12', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -51016,7 +49926,7 @@ exports[`renders correctly renders correctly when day is '12', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -51057,21 +49967,18 @@ exports[`renders correctly renders correctly when day is '12', month is '4', dis exports[`renders correctly renders correctly when day is '12', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -51093,6 +50000,7 @@ exports[`renders correctly renders correctly when day is '12', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -51131,7 +50039,7 @@ exports[`renders correctly renders correctly when day is '12', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -51151,21 +50059,18 @@ exports[`renders correctly renders correctly when day is '12', month is '4', dis exports[`renders correctly renders correctly when day is '12', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -51187,6 +50092,7 @@ exports[`renders correctly renders correctly when day is '12', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -51225,7 +50131,7 @@ exports[`renders correctly renders correctly when day is '12', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -51245,21 +50151,18 @@ exports[`renders correctly renders correctly when day is '12', month is '4', dis exports[`renders correctly renders correctly when day is '12', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -51281,7 +50184,8 @@ exports[`renders correctly renders correctly when day is '12', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -51298,7 +50202,7 @@ exports[`renders correctly renders correctly when day is '12', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -51339,21 +50243,18 @@ exports[`renders correctly renders correctly when day is '12', month is '5', dis exports[`renders correctly renders correctly when day is '12', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -51375,7 +50276,8 @@ exports[`renders correctly renders correctly when day is '12', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -51392,7 +50294,7 @@ exports[`renders correctly renders correctly when day is '12', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -51433,21 +50335,18 @@ exports[`renders correctly renders correctly when day is '12', month is '5', dis exports[`renders correctly renders correctly when day is '12', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -51469,6 +50368,7 @@ exports[`renders correctly renders correctly when day is '12', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -51507,7 +50407,7 @@ exports[`renders correctly renders correctly when day is '12', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -51527,21 +50427,18 @@ exports[`renders correctly renders correctly when day is '12', month is '5', dis exports[`renders correctly renders correctly when day is '12', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -51563,6 +50460,7 @@ exports[`renders correctly renders correctly when day is '12', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -51601,7 +50499,7 @@ exports[`renders correctly renders correctly when day is '12', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -51621,21 +50519,18 @@ exports[`renders correctly renders correctly when day is '12', month is '5', dis exports[`renders correctly renders correctly when day is '12', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -51657,7 +50552,8 @@ exports[`renders correctly renders correctly when day is '12', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -51674,7 +50570,7 @@ exports[`renders correctly renders correctly when day is '12', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -51715,21 +50611,18 @@ exports[`renders correctly renders correctly when day is '12', month is '6', dis exports[`renders correctly renders correctly when day is '12', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -51751,7 +50644,8 @@ exports[`renders correctly renders correctly when day is '12', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -51768,7 +50662,7 @@ exports[`renders correctly renders correctly when day is '12', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -51809,21 +50703,18 @@ exports[`renders correctly renders correctly when day is '12', month is '6', dis exports[`renders correctly renders correctly when day is '12', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -51845,6 +50736,7 @@ exports[`renders correctly renders correctly when day is '12', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -51883,7 +50775,7 @@ exports[`renders correctly renders correctly when day is '12', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -51903,21 +50795,18 @@ exports[`renders correctly renders correctly when day is '12', month is '6', dis exports[`renders correctly renders correctly when day is '12', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -51939,6 +50828,7 @@ exports[`renders correctly renders correctly when day is '12', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -51977,7 +50867,7 @@ exports[`renders correctly renders correctly when day is '12', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -51997,21 +50887,18 @@ exports[`renders correctly renders correctly when day is '12', month is '6', dis exports[`renders correctly renders correctly when day is '12', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -52033,7 +50920,8 @@ exports[`renders correctly renders correctly when day is '12', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -52050,7 +50938,7 @@ exports[`renders correctly renders correctly when day is '12', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -52091,21 +50979,18 @@ exports[`renders correctly renders correctly when day is '12', month is '7', dis exports[`renders correctly renders correctly when day is '12', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -52127,7 +51012,8 @@ exports[`renders correctly renders correctly when day is '12', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -52144,7 +51030,7 @@ exports[`renders correctly renders correctly when day is '12', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -52185,21 +51071,18 @@ exports[`renders correctly renders correctly when day is '12', month is '7', dis exports[`renders correctly renders correctly when day is '12', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -52221,6 +51104,7 @@ exports[`renders correctly renders correctly when day is '12', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -52259,7 +51143,7 @@ exports[`renders correctly renders correctly when day is '12', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -52279,21 +51163,18 @@ exports[`renders correctly renders correctly when day is '12', month is '7', dis exports[`renders correctly renders correctly when day is '12', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -52315,6 +51196,7 @@ exports[`renders correctly renders correctly when day is '12', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -52353,7 +51235,7 @@ exports[`renders correctly renders correctly when day is '12', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -52373,21 +51255,18 @@ exports[`renders correctly renders correctly when day is '12', month is '7', dis exports[`renders correctly renders correctly when day is '12', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -52409,7 +51288,8 @@ exports[`renders correctly renders correctly when day is '12', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -52426,7 +51306,7 @@ exports[`renders correctly renders correctly when day is '12', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -52467,21 +51347,18 @@ exports[`renders correctly renders correctly when day is '12', month is '8', dis exports[`renders correctly renders correctly when day is '12', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -52503,7 +51380,8 @@ exports[`renders correctly renders correctly when day is '12', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -52520,7 +51398,7 @@ exports[`renders correctly renders correctly when day is '12', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -52561,21 +51439,18 @@ exports[`renders correctly renders correctly when day is '12', month is '8', dis exports[`renders correctly renders correctly when day is '12', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -52597,6 +51472,7 @@ exports[`renders correctly renders correctly when day is '12', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -52635,7 +51511,7 @@ exports[`renders correctly renders correctly when day is '12', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -52655,21 +51531,18 @@ exports[`renders correctly renders correctly when day is '12', month is '8', dis exports[`renders correctly renders correctly when day is '12', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -52691,6 +51564,7 @@ exports[`renders correctly renders correctly when day is '12', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -52729,7 +51603,7 @@ exports[`renders correctly renders correctly when day is '12', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -52749,21 +51623,18 @@ exports[`renders correctly renders correctly when day is '12', month is '8', dis exports[`renders correctly renders correctly when day is '12', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -52785,7 +51656,8 @@ exports[`renders correctly renders correctly when day is '12', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -52802,7 +51674,7 @@ exports[`renders correctly renders correctly when day is '12', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -52843,21 +51715,18 @@ exports[`renders correctly renders correctly when day is '12', month is '9', dis exports[`renders correctly renders correctly when day is '12', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -52879,7 +51748,8 @@ exports[`renders correctly renders correctly when day is '12', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -52896,7 +51766,7 @@ exports[`renders correctly renders correctly when day is '12', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -52937,21 +51807,18 @@ exports[`renders correctly renders correctly when day is '12', month is '9', dis exports[`renders correctly renders correctly when day is '12', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -52973,6 +51840,7 @@ exports[`renders correctly renders correctly when day is '12', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -53011,7 +51879,7 @@ exports[`renders correctly renders correctly when day is '12', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -53031,21 +51899,18 @@ exports[`renders correctly renders correctly when day is '12', month is '9', dis exports[`renders correctly renders correctly when day is '12', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -53067,6 +51932,7 @@ exports[`renders correctly renders correctly when day is '12', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -53105,7 +51971,7 @@ exports[`renders correctly renders correctly when day is '12', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -53125,21 +51991,18 @@ exports[`renders correctly renders correctly when day is '12', month is '9', dis exports[`renders correctly renders correctly when day is '12', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -53161,7 +52024,8 @@ exports[`renders correctly renders correctly when day is '12', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -53178,7 +52042,7 @@ exports[`renders correctly renders correctly when day is '12', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -53219,21 +52083,18 @@ exports[`renders correctly renders correctly when day is '12', month is '10', di exports[`renders correctly renders correctly when day is '12', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -53255,7 +52116,8 @@ exports[`renders correctly renders correctly when day is '12', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -53272,7 +52134,7 @@ exports[`renders correctly renders correctly when day is '12', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -53313,21 +52175,18 @@ exports[`renders correctly renders correctly when day is '12', month is '10', di exports[`renders correctly renders correctly when day is '12', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -53349,6 +52208,7 @@ exports[`renders correctly renders correctly when day is '12', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -53387,7 +52247,7 @@ exports[`renders correctly renders correctly when day is '12', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -53407,21 +52267,18 @@ exports[`renders correctly renders correctly when day is '12', month is '10', di exports[`renders correctly renders correctly when day is '12', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -53443,6 +52300,7 @@ exports[`renders correctly renders correctly when day is '12', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -53481,7 +52339,7 @@ exports[`renders correctly renders correctly when day is '12', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -53501,21 +52359,18 @@ exports[`renders correctly renders correctly when day is '12', month is '10', di exports[`renders correctly renders correctly when day is '12', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -53537,7 +52392,8 @@ exports[`renders correctly renders correctly when day is '12', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -53552,7 +52408,7 @@ exports[`renders correctly renders correctly when day is '12', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -53593,21 +52449,18 @@ exports[`renders correctly renders correctly when day is '12', month is '11', di exports[`renders correctly renders correctly when day is '12', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -53629,7 +52482,8 @@ exports[`renders correctly renders correctly when day is '12', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -53644,7 +52498,7 @@ exports[`renders correctly renders correctly when day is '12', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -53685,21 +52539,18 @@ exports[`renders correctly renders correctly when day is '12', month is '11', di exports[`renders correctly renders correctly when day is '12', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -53721,6 +52572,7 @@ exports[`renders correctly renders correctly when day is '12', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -53757,7 +52609,7 @@ exports[`renders correctly renders correctly when day is '12', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -53777,21 +52629,18 @@ exports[`renders correctly renders correctly when day is '12', month is '11', di exports[`renders correctly renders correctly when day is '12', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -53813,6 +52662,7 @@ exports[`renders correctly renders correctly when day is '12', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -53849,7 +52699,7 @@ exports[`renders correctly renders correctly when day is '12', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -53869,21 +52719,18 @@ exports[`renders correctly renders correctly when day is '12', month is '11', di exports[`renders correctly renders correctly when day is '12', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -53905,7 +52752,8 @@ exports[`renders correctly renders correctly when day is '12', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -53920,7 +52768,7 @@ exports[`renders correctly renders correctly when day is '12', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -53961,21 +52809,18 @@ exports[`renders correctly renders correctly when day is '12', month is '12', di exports[`renders correctly renders correctly when day is '12', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -53997,7 +52842,8 @@ exports[`renders correctly renders correctly when day is '12', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -54012,7 +52858,7 @@ exports[`renders correctly renders correctly when day is '12', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -54053,21 +52899,18 @@ exports[`renders correctly renders correctly when day is '12', month is '12', di exports[`renders correctly renders correctly when day is '12', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -54089,6 +52932,7 @@ exports[`renders correctly renders correctly when day is '12', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -54125,7 +52969,7 @@ exports[`renders correctly renders correctly when day is '12', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -54145,21 +52989,18 @@ exports[`renders correctly renders correctly when day is '12', month is '12', di exports[`renders correctly renders correctly when day is '12', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -54181,6 +53022,7 @@ exports[`renders correctly renders correctly when day is '12', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -54217,7 +53059,7 @@ exports[`renders correctly renders correctly when day is '12', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -54237,21 +53079,18 @@ exports[`renders correctly renders correctly when day is '12', month is '12', di exports[`renders correctly renders correctly when day is '13', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -54273,7 +53112,8 @@ exports[`renders correctly renders correctly when day is '13', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -54290,7 +53130,7 @@ exports[`renders correctly renders correctly when day is '13', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -54331,21 +53171,18 @@ exports[`renders correctly renders correctly when day is '13', month is '1', dis exports[`renders correctly renders correctly when day is '13', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -54367,7 +53204,8 @@ exports[`renders correctly renders correctly when day is '13', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -54384,7 +53222,7 @@ exports[`renders correctly renders correctly when day is '13', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -54425,21 +53263,18 @@ exports[`renders correctly renders correctly when day is '13', month is '1', dis exports[`renders correctly renders correctly when day is '13', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -54461,6 +53296,7 @@ exports[`renders correctly renders correctly when day is '13', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -54499,7 +53335,7 @@ exports[`renders correctly renders correctly when day is '13', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -54519,21 +53355,18 @@ exports[`renders correctly renders correctly when day is '13', month is '1', dis exports[`renders correctly renders correctly when day is '13', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -54555,6 +53388,7 @@ exports[`renders correctly renders correctly when day is '13', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -54593,7 +53427,7 @@ exports[`renders correctly renders correctly when day is '13', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -54613,21 +53447,18 @@ exports[`renders correctly renders correctly when day is '13', month is '1', dis exports[`renders correctly renders correctly when day is '13', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -54649,7 +53480,8 @@ exports[`renders correctly renders correctly when day is '13', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -54666,7 +53498,7 @@ exports[`renders correctly renders correctly when day is '13', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -54707,21 +53539,18 @@ exports[`renders correctly renders correctly when day is '13', month is '2', dis exports[`renders correctly renders correctly when day is '13', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -54743,7 +53572,8 @@ exports[`renders correctly renders correctly when day is '13', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -54760,7 +53590,7 @@ exports[`renders correctly renders correctly when day is '13', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -54801,21 +53631,18 @@ exports[`renders correctly renders correctly when day is '13', month is '2', dis exports[`renders correctly renders correctly when day is '13', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -54837,6 +53664,7 @@ exports[`renders correctly renders correctly when day is '13', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -54875,7 +53703,7 @@ exports[`renders correctly renders correctly when day is '13', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -54895,21 +53723,18 @@ exports[`renders correctly renders correctly when day is '13', month is '2', dis exports[`renders correctly renders correctly when day is '13', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -54931,6 +53756,7 @@ exports[`renders correctly renders correctly when day is '13', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -54969,7 +53795,7 @@ exports[`renders correctly renders correctly when day is '13', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -54989,21 +53815,18 @@ exports[`renders correctly renders correctly when day is '13', month is '2', dis exports[`renders correctly renders correctly when day is '13', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -55025,7 +53848,8 @@ exports[`renders correctly renders correctly when day is '13', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -55042,7 +53866,7 @@ exports[`renders correctly renders correctly when day is '13', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -55083,21 +53907,18 @@ exports[`renders correctly renders correctly when day is '13', month is '3', dis exports[`renders correctly renders correctly when day is '13', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -55119,7 +53940,8 @@ exports[`renders correctly renders correctly when day is '13', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -55136,7 +53958,7 @@ exports[`renders correctly renders correctly when day is '13', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -55177,21 +53999,18 @@ exports[`renders correctly renders correctly when day is '13', month is '3', dis exports[`renders correctly renders correctly when day is '13', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -55213,6 +54032,7 @@ exports[`renders correctly renders correctly when day is '13', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -55251,7 +54071,7 @@ exports[`renders correctly renders correctly when day is '13', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -55271,21 +54091,18 @@ exports[`renders correctly renders correctly when day is '13', month is '3', dis exports[`renders correctly renders correctly when day is '13', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -55307,6 +54124,7 @@ exports[`renders correctly renders correctly when day is '13', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -55345,7 +54163,7 @@ exports[`renders correctly renders correctly when day is '13', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -55365,21 +54183,18 @@ exports[`renders correctly renders correctly when day is '13', month is '3', dis exports[`renders correctly renders correctly when day is '13', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -55401,7 +54216,8 @@ exports[`renders correctly renders correctly when day is '13', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -55418,7 +54234,7 @@ exports[`renders correctly renders correctly when day is '13', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -55459,21 +54275,18 @@ exports[`renders correctly renders correctly when day is '13', month is '4', dis exports[`renders correctly renders correctly when day is '13', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -55495,7 +54308,8 @@ exports[`renders correctly renders correctly when day is '13', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -55512,7 +54326,7 @@ exports[`renders correctly renders correctly when day is '13', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -55553,21 +54367,18 @@ exports[`renders correctly renders correctly when day is '13', month is '4', dis exports[`renders correctly renders correctly when day is '13', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -55589,6 +54400,7 @@ exports[`renders correctly renders correctly when day is '13', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -55627,7 +54439,7 @@ exports[`renders correctly renders correctly when day is '13', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -55647,21 +54459,18 @@ exports[`renders correctly renders correctly when day is '13', month is '4', dis exports[`renders correctly renders correctly when day is '13', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -55683,6 +54492,7 @@ exports[`renders correctly renders correctly when day is '13', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -55721,7 +54531,7 @@ exports[`renders correctly renders correctly when day is '13', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -55741,21 +54551,18 @@ exports[`renders correctly renders correctly when day is '13', month is '4', dis exports[`renders correctly renders correctly when day is '13', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -55777,7 +54584,8 @@ exports[`renders correctly renders correctly when day is '13', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -55794,7 +54602,7 @@ exports[`renders correctly renders correctly when day is '13', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -55835,21 +54643,18 @@ exports[`renders correctly renders correctly when day is '13', month is '5', dis exports[`renders correctly renders correctly when day is '13', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -55871,7 +54676,8 @@ exports[`renders correctly renders correctly when day is '13', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -55888,7 +54694,7 @@ exports[`renders correctly renders correctly when day is '13', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -55929,21 +54735,18 @@ exports[`renders correctly renders correctly when day is '13', month is '5', dis exports[`renders correctly renders correctly when day is '13', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -55965,6 +54768,7 @@ exports[`renders correctly renders correctly when day is '13', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -56003,7 +54807,7 @@ exports[`renders correctly renders correctly when day is '13', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -56023,21 +54827,18 @@ exports[`renders correctly renders correctly when day is '13', month is '5', dis exports[`renders correctly renders correctly when day is '13', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -56059,6 +54860,7 @@ exports[`renders correctly renders correctly when day is '13', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -56097,7 +54899,7 @@ exports[`renders correctly renders correctly when day is '13', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -56117,21 +54919,18 @@ exports[`renders correctly renders correctly when day is '13', month is '5', dis exports[`renders correctly renders correctly when day is '13', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -56153,7 +54952,8 @@ exports[`renders correctly renders correctly when day is '13', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -56170,7 +54970,7 @@ exports[`renders correctly renders correctly when day is '13', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -56211,21 +55011,18 @@ exports[`renders correctly renders correctly when day is '13', month is '6', dis exports[`renders correctly renders correctly when day is '13', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -56247,7 +55044,8 @@ exports[`renders correctly renders correctly when day is '13', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -56264,7 +55062,7 @@ exports[`renders correctly renders correctly when day is '13', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -56305,21 +55103,18 @@ exports[`renders correctly renders correctly when day is '13', month is '6', dis exports[`renders correctly renders correctly when day is '13', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -56341,6 +55136,7 @@ exports[`renders correctly renders correctly when day is '13', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -56379,7 +55175,7 @@ exports[`renders correctly renders correctly when day is '13', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -56399,21 +55195,18 @@ exports[`renders correctly renders correctly when day is '13', month is '6', dis exports[`renders correctly renders correctly when day is '13', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -56435,6 +55228,7 @@ exports[`renders correctly renders correctly when day is '13', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -56473,7 +55267,7 @@ exports[`renders correctly renders correctly when day is '13', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -56493,21 +55287,18 @@ exports[`renders correctly renders correctly when day is '13', month is '6', dis exports[`renders correctly renders correctly when day is '13', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -56529,7 +55320,8 @@ exports[`renders correctly renders correctly when day is '13', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -56546,7 +55338,7 @@ exports[`renders correctly renders correctly when day is '13', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -56587,21 +55379,18 @@ exports[`renders correctly renders correctly when day is '13', month is '7', dis exports[`renders correctly renders correctly when day is '13', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -56623,7 +55412,8 @@ exports[`renders correctly renders correctly when day is '13', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -56640,7 +55430,7 @@ exports[`renders correctly renders correctly when day is '13', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -56681,21 +55471,18 @@ exports[`renders correctly renders correctly when day is '13', month is '7', dis exports[`renders correctly renders correctly when day is '13', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -56717,6 +55504,7 @@ exports[`renders correctly renders correctly when day is '13', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -56755,7 +55543,7 @@ exports[`renders correctly renders correctly when day is '13', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -56775,21 +55563,18 @@ exports[`renders correctly renders correctly when day is '13', month is '7', dis exports[`renders correctly renders correctly when day is '13', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -56811,6 +55596,7 @@ exports[`renders correctly renders correctly when day is '13', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -56849,7 +55635,7 @@ exports[`renders correctly renders correctly when day is '13', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -56869,21 +55655,18 @@ exports[`renders correctly renders correctly when day is '13', month is '7', dis exports[`renders correctly renders correctly when day is '13', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -56905,7 +55688,8 @@ exports[`renders correctly renders correctly when day is '13', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -56922,7 +55706,7 @@ exports[`renders correctly renders correctly when day is '13', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -56963,21 +55747,18 @@ exports[`renders correctly renders correctly when day is '13', month is '8', dis exports[`renders correctly renders correctly when day is '13', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -56999,7 +55780,8 @@ exports[`renders correctly renders correctly when day is '13', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -57016,7 +55798,7 @@ exports[`renders correctly renders correctly when day is '13', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -57057,21 +55839,18 @@ exports[`renders correctly renders correctly when day is '13', month is '8', dis exports[`renders correctly renders correctly when day is '13', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -57093,6 +55872,7 @@ exports[`renders correctly renders correctly when day is '13', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -57131,7 +55911,7 @@ exports[`renders correctly renders correctly when day is '13', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -57151,21 +55931,18 @@ exports[`renders correctly renders correctly when day is '13', month is '8', dis exports[`renders correctly renders correctly when day is '13', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -57187,6 +55964,7 @@ exports[`renders correctly renders correctly when day is '13', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -57225,7 +56003,7 @@ exports[`renders correctly renders correctly when day is '13', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -57245,21 +56023,18 @@ exports[`renders correctly renders correctly when day is '13', month is '8', dis exports[`renders correctly renders correctly when day is '13', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -57281,7 +56056,8 @@ exports[`renders correctly renders correctly when day is '13', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -57298,7 +56074,7 @@ exports[`renders correctly renders correctly when day is '13', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -57339,21 +56115,18 @@ exports[`renders correctly renders correctly when day is '13', month is '9', dis exports[`renders correctly renders correctly when day is '13', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -57375,7 +56148,8 @@ exports[`renders correctly renders correctly when day is '13', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -57392,7 +56166,7 @@ exports[`renders correctly renders correctly when day is '13', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -57433,21 +56207,18 @@ exports[`renders correctly renders correctly when day is '13', month is '9', dis exports[`renders correctly renders correctly when day is '13', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -57469,6 +56240,7 @@ exports[`renders correctly renders correctly when day is '13', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -57507,7 +56279,7 @@ exports[`renders correctly renders correctly when day is '13', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -57527,21 +56299,18 @@ exports[`renders correctly renders correctly when day is '13', month is '9', dis exports[`renders correctly renders correctly when day is '13', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -57563,6 +56332,7 @@ exports[`renders correctly renders correctly when day is '13', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -57601,7 +56371,7 @@ exports[`renders correctly renders correctly when day is '13', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -57621,21 +56391,18 @@ exports[`renders correctly renders correctly when day is '13', month is '9', dis exports[`renders correctly renders correctly when day is '13', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -57657,7 +56424,8 @@ exports[`renders correctly renders correctly when day is '13', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -57674,7 +56442,7 @@ exports[`renders correctly renders correctly when day is '13', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -57715,21 +56483,18 @@ exports[`renders correctly renders correctly when day is '13', month is '10', di exports[`renders correctly renders correctly when day is '13', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -57751,7 +56516,8 @@ exports[`renders correctly renders correctly when day is '13', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -57768,7 +56534,7 @@ exports[`renders correctly renders correctly when day is '13', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -57809,21 +56575,18 @@ exports[`renders correctly renders correctly when day is '13', month is '10', di exports[`renders correctly renders correctly when day is '13', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -57845,6 +56608,7 @@ exports[`renders correctly renders correctly when day is '13', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -57883,7 +56647,7 @@ exports[`renders correctly renders correctly when day is '13', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -57903,21 +56667,18 @@ exports[`renders correctly renders correctly when day is '13', month is '10', di exports[`renders correctly renders correctly when day is '13', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -57939,6 +56700,7 @@ exports[`renders correctly renders correctly when day is '13', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -57977,7 +56739,7 @@ exports[`renders correctly renders correctly when day is '13', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -57997,21 +56759,18 @@ exports[`renders correctly renders correctly when day is '13', month is '10', di exports[`renders correctly renders correctly when day is '13', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -58033,7 +56792,8 @@ exports[`renders correctly renders correctly when day is '13', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -58048,7 +56808,7 @@ exports[`renders correctly renders correctly when day is '13', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -58089,21 +56849,18 @@ exports[`renders correctly renders correctly when day is '13', month is '11', di exports[`renders correctly renders correctly when day is '13', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -58125,7 +56882,8 @@ exports[`renders correctly renders correctly when day is '13', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -58140,7 +56898,7 @@ exports[`renders correctly renders correctly when day is '13', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -58181,21 +56939,18 @@ exports[`renders correctly renders correctly when day is '13', month is '11', di exports[`renders correctly renders correctly when day is '13', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -58217,6 +56972,7 @@ exports[`renders correctly renders correctly when day is '13', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -58253,7 +57009,7 @@ exports[`renders correctly renders correctly when day is '13', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -58273,21 +57029,18 @@ exports[`renders correctly renders correctly when day is '13', month is '11', di exports[`renders correctly renders correctly when day is '13', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -58309,6 +57062,7 @@ exports[`renders correctly renders correctly when day is '13', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -58345,7 +57099,7 @@ exports[`renders correctly renders correctly when day is '13', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -58365,21 +57119,18 @@ exports[`renders correctly renders correctly when day is '13', month is '11', di exports[`renders correctly renders correctly when day is '13', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -58401,7 +57152,8 @@ exports[`renders correctly renders correctly when day is '13', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -58416,7 +57168,7 @@ exports[`renders correctly renders correctly when day is '13', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -58457,21 +57209,18 @@ exports[`renders correctly renders correctly when day is '13', month is '12', di exports[`renders correctly renders correctly when day is '13', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -58493,7 +57242,8 @@ exports[`renders correctly renders correctly when day is '13', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -58508,7 +57258,7 @@ exports[`renders correctly renders correctly when day is '13', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -58549,21 +57299,18 @@ exports[`renders correctly renders correctly when day is '13', month is '12', di exports[`renders correctly renders correctly when day is '13', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -58585,6 +57332,7 @@ exports[`renders correctly renders correctly when day is '13', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -58621,7 +57369,7 @@ exports[`renders correctly renders correctly when day is '13', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -58641,21 +57389,18 @@ exports[`renders correctly renders correctly when day is '13', month is '12', di exports[`renders correctly renders correctly when day is '13', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -58677,6 +57422,7 @@ exports[`renders correctly renders correctly when day is '13', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -58713,7 +57459,7 @@ exports[`renders correctly renders correctly when day is '13', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -58733,21 +57479,18 @@ exports[`renders correctly renders correctly when day is '13', month is '12', di exports[`renders correctly renders correctly when day is '14', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -58769,7 +57512,8 @@ exports[`renders correctly renders correctly when day is '14', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -58786,7 +57530,7 @@ exports[`renders correctly renders correctly when day is '14', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -58827,21 +57571,18 @@ exports[`renders correctly renders correctly when day is '14', month is '1', dis exports[`renders correctly renders correctly when day is '14', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -58863,7 +57604,8 @@ exports[`renders correctly renders correctly when day is '14', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -58880,7 +57622,7 @@ exports[`renders correctly renders correctly when day is '14', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -58921,115 +57663,18 @@ exports[`renders correctly renders correctly when day is '14', month is '1', dis exports[`renders correctly renders correctly when day is '14', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] - } -> - <View - style={ - { - "padding": 0, - } + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, } - testID="holi-calendar-icon" - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#ebebeb", - "fontFamily": "InstrumentSans-Medium", - "fontSize": 12, - "fontWeight": "500", - "lineHeight": 12, - "paddingBottom": 2, - "textAlign": "center", - "userSelect": "auto", - } - } - > - M - </Text> - <View - style={ - { - "alignItems": "center", - "backgroundColor": "#ebebeb", - "borderTopLeftRadius": 6, - "borderTopRightRadius": 6, - "display": "flex", - "justifyContent": "center", - "minHeight": 44, - "minWidth": 60, - } - } - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#787777", - "fontFamily": "InstrumentSans-Regular", - "fontSize": 28, - "fontWeight": "400", - "lineHeight": 22.4, - "paddingTop": 8, - "userSelect": "auto", - } - } - > - 14 - </Text> - </View> - </View> -</View> -`; - -exports[`renders correctly renders correctly when day is '14', month is '1', disabled is 'true', size is 'small' 1`] = ` -<View - style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] } > <View @@ -59051,6 +57696,99 @@ exports[`renders correctly renders correctly when day is '14', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", + "color": "#ebebeb", + "fontFamily": "InstrumentSans-Medium", + "fontSize": 12, + "fontWeight": "500", + "lineHeight": 12, + "paddingBottom": 2, + "textAlign": "center", + "userSelect": "auto", + } + } + > + M + </Text> + <View + style={ + { + "alignItems": "center", + "backgroundColor": "#ebebeb", + "borderTopLeftRadius": 6, + "borderTopRightRadius": 6, + "display": "flex", + "justifyContent": "center", + "minHeight": 44, + "minWidth": 60, + } + } + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "color": "#676565", + "fontFamily": "InstrumentSans-Regular", + "fontSize": 28, + "fontWeight": "400", + "lineHeight": 22.4, + "paddingTop": 8, + "userSelect": "auto", + } + } + > + 14 + </Text> + </View> + </View> +</View> +`; + +exports[`renders correctly renders correctly when day is '14', month is '1', disabled is 'true', size is 'small' 1`] = ` +<View + style={ + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } + } +> + <View + style={ + { + "padding": 0, + } + } + testID="holi-calendar-icon" + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -59089,7 +57827,7 @@ exports[`renders correctly renders correctly when day is '14', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -59109,21 +57847,18 @@ exports[`renders correctly renders correctly when day is '14', month is '1', dis exports[`renders correctly renders correctly when day is '14', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -59145,7 +57880,8 @@ exports[`renders correctly renders correctly when day is '14', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -59162,7 +57898,7 @@ exports[`renders correctly renders correctly when day is '14', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -59203,21 +57939,18 @@ exports[`renders correctly renders correctly when day is '14', month is '2', dis exports[`renders correctly renders correctly when day is '14', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -59239,7 +57972,8 @@ exports[`renders correctly renders correctly when day is '14', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -59256,7 +57990,7 @@ exports[`renders correctly renders correctly when day is '14', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -59297,21 +58031,18 @@ exports[`renders correctly renders correctly when day is '14', month is '2', dis exports[`renders correctly renders correctly when day is '14', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -59333,6 +58064,7 @@ exports[`renders correctly renders correctly when day is '14', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -59371,7 +58103,7 @@ exports[`renders correctly renders correctly when day is '14', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -59391,21 +58123,18 @@ exports[`renders correctly renders correctly when day is '14', month is '2', dis exports[`renders correctly renders correctly when day is '14', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -59427,6 +58156,7 @@ exports[`renders correctly renders correctly when day is '14', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -59465,7 +58195,7 @@ exports[`renders correctly renders correctly when day is '14', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -59485,21 +58215,18 @@ exports[`renders correctly renders correctly when day is '14', month is '2', dis exports[`renders correctly renders correctly when day is '14', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -59521,7 +58248,8 @@ exports[`renders correctly renders correctly when day is '14', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -59538,7 +58266,7 @@ exports[`renders correctly renders correctly when day is '14', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -59579,21 +58307,18 @@ exports[`renders correctly renders correctly when day is '14', month is '3', dis exports[`renders correctly renders correctly when day is '14', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -59615,7 +58340,8 @@ exports[`renders correctly renders correctly when day is '14', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -59632,7 +58358,7 @@ exports[`renders correctly renders correctly when day is '14', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -59673,21 +58399,18 @@ exports[`renders correctly renders correctly when day is '14', month is '3', dis exports[`renders correctly renders correctly when day is '14', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -59709,6 +58432,7 @@ exports[`renders correctly renders correctly when day is '14', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -59747,7 +58471,7 @@ exports[`renders correctly renders correctly when day is '14', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -59767,21 +58491,18 @@ exports[`renders correctly renders correctly when day is '14', month is '3', dis exports[`renders correctly renders correctly when day is '14', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -59803,6 +58524,7 @@ exports[`renders correctly renders correctly when day is '14', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -59841,7 +58563,7 @@ exports[`renders correctly renders correctly when day is '14', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -59861,21 +58583,18 @@ exports[`renders correctly renders correctly when day is '14', month is '3', dis exports[`renders correctly renders correctly when day is '14', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -59897,7 +58616,8 @@ exports[`renders correctly renders correctly when day is '14', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -59914,7 +58634,7 @@ exports[`renders correctly renders correctly when day is '14', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -59955,21 +58675,18 @@ exports[`renders correctly renders correctly when day is '14', month is '4', dis exports[`renders correctly renders correctly when day is '14', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -59991,7 +58708,8 @@ exports[`renders correctly renders correctly when day is '14', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -60008,7 +58726,7 @@ exports[`renders correctly renders correctly when day is '14', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -60049,21 +58767,18 @@ exports[`renders correctly renders correctly when day is '14', month is '4', dis exports[`renders correctly renders correctly when day is '14', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -60085,6 +58800,7 @@ exports[`renders correctly renders correctly when day is '14', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -60123,7 +58839,7 @@ exports[`renders correctly renders correctly when day is '14', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -60143,21 +58859,18 @@ exports[`renders correctly renders correctly when day is '14', month is '4', dis exports[`renders correctly renders correctly when day is '14', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -60179,6 +58892,7 @@ exports[`renders correctly renders correctly when day is '14', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -60217,7 +58931,7 @@ exports[`renders correctly renders correctly when day is '14', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -60237,21 +58951,18 @@ exports[`renders correctly renders correctly when day is '14', month is '4', dis exports[`renders correctly renders correctly when day is '14', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -60273,7 +58984,8 @@ exports[`renders correctly renders correctly when day is '14', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -60290,7 +59002,7 @@ exports[`renders correctly renders correctly when day is '14', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -60331,21 +59043,18 @@ exports[`renders correctly renders correctly when day is '14', month is '5', dis exports[`renders correctly renders correctly when day is '14', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -60367,7 +59076,8 @@ exports[`renders correctly renders correctly when day is '14', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -60384,7 +59094,7 @@ exports[`renders correctly renders correctly when day is '14', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -60425,21 +59135,18 @@ exports[`renders correctly renders correctly when day is '14', month is '5', dis exports[`renders correctly renders correctly when day is '14', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -60461,6 +59168,7 @@ exports[`renders correctly renders correctly when day is '14', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -60499,7 +59207,7 @@ exports[`renders correctly renders correctly when day is '14', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -60519,21 +59227,18 @@ exports[`renders correctly renders correctly when day is '14', month is '5', dis exports[`renders correctly renders correctly when day is '14', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -60555,6 +59260,7 @@ exports[`renders correctly renders correctly when day is '14', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -60593,7 +59299,7 @@ exports[`renders correctly renders correctly when day is '14', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -60613,21 +59319,18 @@ exports[`renders correctly renders correctly when day is '14', month is '5', dis exports[`renders correctly renders correctly when day is '14', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -60649,7 +59352,8 @@ exports[`renders correctly renders correctly when day is '14', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -60666,7 +59370,7 @@ exports[`renders correctly renders correctly when day is '14', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -60707,21 +59411,18 @@ exports[`renders correctly renders correctly when day is '14', month is '6', dis exports[`renders correctly renders correctly when day is '14', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -60743,7 +59444,8 @@ exports[`renders correctly renders correctly when day is '14', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -60760,7 +59462,7 @@ exports[`renders correctly renders correctly when day is '14', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -60801,21 +59503,18 @@ exports[`renders correctly renders correctly when day is '14', month is '6', dis exports[`renders correctly renders correctly when day is '14', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -60837,6 +59536,7 @@ exports[`renders correctly renders correctly when day is '14', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -60875,7 +59575,7 @@ exports[`renders correctly renders correctly when day is '14', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -60895,21 +59595,18 @@ exports[`renders correctly renders correctly when day is '14', month is '6', dis exports[`renders correctly renders correctly when day is '14', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -60931,6 +59628,7 @@ exports[`renders correctly renders correctly when day is '14', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -60969,7 +59667,7 @@ exports[`renders correctly renders correctly when day is '14', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -60989,21 +59687,18 @@ exports[`renders correctly renders correctly when day is '14', month is '6', dis exports[`renders correctly renders correctly when day is '14', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -61025,7 +59720,8 @@ exports[`renders correctly renders correctly when day is '14', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -61042,7 +59738,7 @@ exports[`renders correctly renders correctly when day is '14', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -61083,21 +59779,18 @@ exports[`renders correctly renders correctly when day is '14', month is '7', dis exports[`renders correctly renders correctly when day is '14', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -61119,7 +59812,8 @@ exports[`renders correctly renders correctly when day is '14', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -61136,7 +59830,7 @@ exports[`renders correctly renders correctly when day is '14', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -61177,21 +59871,18 @@ exports[`renders correctly renders correctly when day is '14', month is '7', dis exports[`renders correctly renders correctly when day is '14', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -61213,6 +59904,7 @@ exports[`renders correctly renders correctly when day is '14', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -61251,7 +59943,7 @@ exports[`renders correctly renders correctly when day is '14', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -61271,21 +59963,18 @@ exports[`renders correctly renders correctly when day is '14', month is '7', dis exports[`renders correctly renders correctly when day is '14', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -61307,6 +59996,7 @@ exports[`renders correctly renders correctly when day is '14', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -61345,7 +60035,7 @@ exports[`renders correctly renders correctly when day is '14', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -61365,21 +60055,18 @@ exports[`renders correctly renders correctly when day is '14', month is '7', dis exports[`renders correctly renders correctly when day is '14', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -61401,7 +60088,8 @@ exports[`renders correctly renders correctly when day is '14', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -61418,7 +60106,7 @@ exports[`renders correctly renders correctly when day is '14', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -61459,21 +60147,18 @@ exports[`renders correctly renders correctly when day is '14', month is '8', dis exports[`renders correctly renders correctly when day is '14', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -61495,7 +60180,8 @@ exports[`renders correctly renders correctly when day is '14', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -61512,7 +60198,7 @@ exports[`renders correctly renders correctly when day is '14', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -61553,21 +60239,18 @@ exports[`renders correctly renders correctly when day is '14', month is '8', dis exports[`renders correctly renders correctly when day is '14', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -61589,6 +60272,7 @@ exports[`renders correctly renders correctly when day is '14', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -61627,7 +60311,7 @@ exports[`renders correctly renders correctly when day is '14', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -61647,21 +60331,18 @@ exports[`renders correctly renders correctly when day is '14', month is '8', dis exports[`renders correctly renders correctly when day is '14', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -61683,6 +60364,7 @@ exports[`renders correctly renders correctly when day is '14', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -61721,7 +60403,7 @@ exports[`renders correctly renders correctly when day is '14', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -61741,21 +60423,18 @@ exports[`renders correctly renders correctly when day is '14', month is '8', dis exports[`renders correctly renders correctly when day is '14', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -61777,7 +60456,8 @@ exports[`renders correctly renders correctly when day is '14', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -61794,7 +60474,7 @@ exports[`renders correctly renders correctly when day is '14', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -61835,21 +60515,18 @@ exports[`renders correctly renders correctly when day is '14', month is '9', dis exports[`renders correctly renders correctly when day is '14', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -61871,7 +60548,8 @@ exports[`renders correctly renders correctly when day is '14', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -61888,7 +60566,7 @@ exports[`renders correctly renders correctly when day is '14', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -61929,21 +60607,18 @@ exports[`renders correctly renders correctly when day is '14', month is '9', dis exports[`renders correctly renders correctly when day is '14', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -61965,6 +60640,7 @@ exports[`renders correctly renders correctly when day is '14', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -62003,7 +60679,7 @@ exports[`renders correctly renders correctly when day is '14', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -62023,21 +60699,18 @@ exports[`renders correctly renders correctly when day is '14', month is '9', dis exports[`renders correctly renders correctly when day is '14', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -62059,6 +60732,7 @@ exports[`renders correctly renders correctly when day is '14', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -62097,7 +60771,7 @@ exports[`renders correctly renders correctly when day is '14', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -62117,21 +60791,18 @@ exports[`renders correctly renders correctly when day is '14', month is '9', dis exports[`renders correctly renders correctly when day is '14', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -62153,7 +60824,8 @@ exports[`renders correctly renders correctly when day is '14', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -62170,7 +60842,7 @@ exports[`renders correctly renders correctly when day is '14', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -62211,21 +60883,18 @@ exports[`renders correctly renders correctly when day is '14', month is '10', di exports[`renders correctly renders correctly when day is '14', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -62247,7 +60916,8 @@ exports[`renders correctly renders correctly when day is '14', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -62264,7 +60934,7 @@ exports[`renders correctly renders correctly when day is '14', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -62305,21 +60975,18 @@ exports[`renders correctly renders correctly when day is '14', month is '10', di exports[`renders correctly renders correctly when day is '14', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -62341,6 +61008,7 @@ exports[`renders correctly renders correctly when day is '14', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -62379,7 +61047,7 @@ exports[`renders correctly renders correctly when day is '14', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -62399,21 +61067,18 @@ exports[`renders correctly renders correctly when day is '14', month is '10', di exports[`renders correctly renders correctly when day is '14', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -62435,6 +61100,7 @@ exports[`renders correctly renders correctly when day is '14', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -62473,7 +61139,7 @@ exports[`renders correctly renders correctly when day is '14', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -62493,21 +61159,18 @@ exports[`renders correctly renders correctly when day is '14', month is '10', di exports[`renders correctly renders correctly when day is '14', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -62529,7 +61192,8 @@ exports[`renders correctly renders correctly when day is '14', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -62544,7 +61208,7 @@ exports[`renders correctly renders correctly when day is '14', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -62585,21 +61249,18 @@ exports[`renders correctly renders correctly when day is '14', month is '11', di exports[`renders correctly renders correctly when day is '14', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -62621,7 +61282,8 @@ exports[`renders correctly renders correctly when day is '14', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -62636,7 +61298,7 @@ exports[`renders correctly renders correctly when day is '14', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -62677,21 +61339,18 @@ exports[`renders correctly renders correctly when day is '14', month is '11', di exports[`renders correctly renders correctly when day is '14', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -62713,6 +61372,7 @@ exports[`renders correctly renders correctly when day is '14', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -62749,7 +61409,7 @@ exports[`renders correctly renders correctly when day is '14', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -62769,21 +61429,18 @@ exports[`renders correctly renders correctly when day is '14', month is '11', di exports[`renders correctly renders correctly when day is '14', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -62805,6 +61462,7 @@ exports[`renders correctly renders correctly when day is '14', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -62841,7 +61499,7 @@ exports[`renders correctly renders correctly when day is '14', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -62861,21 +61519,18 @@ exports[`renders correctly renders correctly when day is '14', month is '11', di exports[`renders correctly renders correctly when day is '14', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -62897,7 +61552,8 @@ exports[`renders correctly renders correctly when day is '14', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -62912,7 +61568,7 @@ exports[`renders correctly renders correctly when day is '14', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -62953,21 +61609,18 @@ exports[`renders correctly renders correctly when day is '14', month is '12', di exports[`renders correctly renders correctly when day is '14', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -62989,7 +61642,8 @@ exports[`renders correctly renders correctly when day is '14', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -63004,7 +61658,7 @@ exports[`renders correctly renders correctly when day is '14', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -63045,21 +61699,18 @@ exports[`renders correctly renders correctly when day is '14', month is '12', di exports[`renders correctly renders correctly when day is '14', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -63081,6 +61732,7 @@ exports[`renders correctly renders correctly when day is '14', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -63117,7 +61769,7 @@ exports[`renders correctly renders correctly when day is '14', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -63137,21 +61789,18 @@ exports[`renders correctly renders correctly when day is '14', month is '12', di exports[`renders correctly renders correctly when day is '14', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -63173,6 +61822,7 @@ exports[`renders correctly renders correctly when day is '14', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -63209,7 +61859,7 @@ exports[`renders correctly renders correctly when day is '14', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -63229,21 +61879,18 @@ exports[`renders correctly renders correctly when day is '14', month is '12', di exports[`renders correctly renders correctly when day is '15', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -63265,7 +61912,8 @@ exports[`renders correctly renders correctly when day is '15', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -63282,7 +61930,7 @@ exports[`renders correctly renders correctly when day is '15', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -63323,21 +61971,18 @@ exports[`renders correctly renders correctly when day is '15', month is '1', dis exports[`renders correctly renders correctly when day is '15', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -63359,7 +62004,8 @@ exports[`renders correctly renders correctly when day is '15', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -63376,7 +62022,7 @@ exports[`renders correctly renders correctly when day is '15', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -63417,21 +62063,18 @@ exports[`renders correctly renders correctly when day is '15', month is '1', dis exports[`renders correctly renders correctly when day is '15', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -63453,6 +62096,7 @@ exports[`renders correctly renders correctly when day is '15', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -63491,7 +62135,7 @@ exports[`renders correctly renders correctly when day is '15', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -63511,21 +62155,18 @@ exports[`renders correctly renders correctly when day is '15', month is '1', dis exports[`renders correctly renders correctly when day is '15', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -63547,6 +62188,7 @@ exports[`renders correctly renders correctly when day is '15', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -63585,7 +62227,7 @@ exports[`renders correctly renders correctly when day is '15', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -63605,21 +62247,18 @@ exports[`renders correctly renders correctly when day is '15', month is '1', dis exports[`renders correctly renders correctly when day is '15', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -63641,7 +62280,8 @@ exports[`renders correctly renders correctly when day is '15', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -63658,7 +62298,7 @@ exports[`renders correctly renders correctly when day is '15', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -63699,21 +62339,18 @@ exports[`renders correctly renders correctly when day is '15', month is '2', dis exports[`renders correctly renders correctly when day is '15', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -63735,7 +62372,8 @@ exports[`renders correctly renders correctly when day is '15', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -63752,7 +62390,7 @@ exports[`renders correctly renders correctly when day is '15', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -63793,21 +62431,18 @@ exports[`renders correctly renders correctly when day is '15', month is '2', dis exports[`renders correctly renders correctly when day is '15', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -63829,6 +62464,7 @@ exports[`renders correctly renders correctly when day is '15', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -63867,7 +62503,7 @@ exports[`renders correctly renders correctly when day is '15', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -63887,21 +62523,18 @@ exports[`renders correctly renders correctly when day is '15', month is '2', dis exports[`renders correctly renders correctly when day is '15', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -63923,6 +62556,7 @@ exports[`renders correctly renders correctly when day is '15', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -63961,7 +62595,7 @@ exports[`renders correctly renders correctly when day is '15', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -63981,21 +62615,18 @@ exports[`renders correctly renders correctly when day is '15', month is '2', dis exports[`renders correctly renders correctly when day is '15', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -64017,7 +62648,8 @@ exports[`renders correctly renders correctly when day is '15', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -64034,7 +62666,7 @@ exports[`renders correctly renders correctly when day is '15', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -64075,21 +62707,18 @@ exports[`renders correctly renders correctly when day is '15', month is '3', dis exports[`renders correctly renders correctly when day is '15', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -64111,7 +62740,8 @@ exports[`renders correctly renders correctly when day is '15', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -64128,7 +62758,7 @@ exports[`renders correctly renders correctly when day is '15', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -64169,21 +62799,18 @@ exports[`renders correctly renders correctly when day is '15', month is '3', dis exports[`renders correctly renders correctly when day is '15', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -64205,6 +62832,7 @@ exports[`renders correctly renders correctly when day is '15', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -64243,7 +62871,7 @@ exports[`renders correctly renders correctly when day is '15', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -64263,21 +62891,18 @@ exports[`renders correctly renders correctly when day is '15', month is '3', dis exports[`renders correctly renders correctly when day is '15', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -64299,6 +62924,7 @@ exports[`renders correctly renders correctly when day is '15', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -64337,7 +62963,7 @@ exports[`renders correctly renders correctly when day is '15', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -64357,21 +62983,18 @@ exports[`renders correctly renders correctly when day is '15', month is '3', dis exports[`renders correctly renders correctly when day is '15', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -64393,7 +63016,8 @@ exports[`renders correctly renders correctly when day is '15', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -64410,7 +63034,7 @@ exports[`renders correctly renders correctly when day is '15', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -64451,21 +63075,18 @@ exports[`renders correctly renders correctly when day is '15', month is '4', dis exports[`renders correctly renders correctly when day is '15', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -64487,7 +63108,8 @@ exports[`renders correctly renders correctly when day is '15', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -64504,7 +63126,7 @@ exports[`renders correctly renders correctly when day is '15', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -64545,21 +63167,18 @@ exports[`renders correctly renders correctly when day is '15', month is '4', dis exports[`renders correctly renders correctly when day is '15', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -64581,6 +63200,7 @@ exports[`renders correctly renders correctly when day is '15', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -64619,7 +63239,7 @@ exports[`renders correctly renders correctly when day is '15', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -64639,21 +63259,18 @@ exports[`renders correctly renders correctly when day is '15', month is '4', dis exports[`renders correctly renders correctly when day is '15', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -64675,6 +63292,7 @@ exports[`renders correctly renders correctly when day is '15', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -64713,7 +63331,7 @@ exports[`renders correctly renders correctly when day is '15', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -64733,21 +63351,18 @@ exports[`renders correctly renders correctly when day is '15', month is '4', dis exports[`renders correctly renders correctly when day is '15', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -64769,7 +63384,8 @@ exports[`renders correctly renders correctly when day is '15', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -64786,7 +63402,7 @@ exports[`renders correctly renders correctly when day is '15', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -64827,21 +63443,18 @@ exports[`renders correctly renders correctly when day is '15', month is '5', dis exports[`renders correctly renders correctly when day is '15', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -64863,7 +63476,8 @@ exports[`renders correctly renders correctly when day is '15', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -64880,7 +63494,7 @@ exports[`renders correctly renders correctly when day is '15', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -64921,21 +63535,18 @@ exports[`renders correctly renders correctly when day is '15', month is '5', dis exports[`renders correctly renders correctly when day is '15', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -64957,6 +63568,7 @@ exports[`renders correctly renders correctly when day is '15', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -64995,7 +63607,7 @@ exports[`renders correctly renders correctly when day is '15', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -65015,21 +63627,18 @@ exports[`renders correctly renders correctly when day is '15', month is '5', dis exports[`renders correctly renders correctly when day is '15', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -65051,6 +63660,7 @@ exports[`renders correctly renders correctly when day is '15', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -65089,7 +63699,7 @@ exports[`renders correctly renders correctly when day is '15', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -65109,21 +63719,18 @@ exports[`renders correctly renders correctly when day is '15', month is '5', dis exports[`renders correctly renders correctly when day is '15', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -65145,7 +63752,8 @@ exports[`renders correctly renders correctly when day is '15', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -65162,7 +63770,7 @@ exports[`renders correctly renders correctly when day is '15', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -65203,21 +63811,18 @@ exports[`renders correctly renders correctly when day is '15', month is '6', dis exports[`renders correctly renders correctly when day is '15', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -65239,7 +63844,8 @@ exports[`renders correctly renders correctly when day is '15', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -65256,7 +63862,7 @@ exports[`renders correctly renders correctly when day is '15', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -65297,21 +63903,18 @@ exports[`renders correctly renders correctly when day is '15', month is '6', dis exports[`renders correctly renders correctly when day is '15', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -65333,6 +63936,7 @@ exports[`renders correctly renders correctly when day is '15', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -65371,7 +63975,7 @@ exports[`renders correctly renders correctly when day is '15', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -65391,21 +63995,18 @@ exports[`renders correctly renders correctly when day is '15', month is '6', dis exports[`renders correctly renders correctly when day is '15', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -65427,6 +64028,7 @@ exports[`renders correctly renders correctly when day is '15', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -65465,7 +64067,7 @@ exports[`renders correctly renders correctly when day is '15', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -65485,21 +64087,18 @@ exports[`renders correctly renders correctly when day is '15', month is '6', dis exports[`renders correctly renders correctly when day is '15', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -65521,7 +64120,8 @@ exports[`renders correctly renders correctly when day is '15', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -65538,7 +64138,7 @@ exports[`renders correctly renders correctly when day is '15', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -65579,21 +64179,18 @@ exports[`renders correctly renders correctly when day is '15', month is '7', dis exports[`renders correctly renders correctly when day is '15', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -65615,7 +64212,8 @@ exports[`renders correctly renders correctly when day is '15', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -65632,7 +64230,7 @@ exports[`renders correctly renders correctly when day is '15', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -65673,21 +64271,18 @@ exports[`renders correctly renders correctly when day is '15', month is '7', dis exports[`renders correctly renders correctly when day is '15', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -65709,6 +64304,7 @@ exports[`renders correctly renders correctly when day is '15', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -65747,7 +64343,7 @@ exports[`renders correctly renders correctly when day is '15', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -65767,21 +64363,18 @@ exports[`renders correctly renders correctly when day is '15', month is '7', dis exports[`renders correctly renders correctly when day is '15', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -65803,6 +64396,7 @@ exports[`renders correctly renders correctly when day is '15', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -65841,7 +64435,7 @@ exports[`renders correctly renders correctly when day is '15', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -65861,21 +64455,18 @@ exports[`renders correctly renders correctly when day is '15', month is '7', dis exports[`renders correctly renders correctly when day is '15', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -65897,7 +64488,8 @@ exports[`renders correctly renders correctly when day is '15', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -65914,7 +64506,7 @@ exports[`renders correctly renders correctly when day is '15', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -65955,21 +64547,18 @@ exports[`renders correctly renders correctly when day is '15', month is '8', dis exports[`renders correctly renders correctly when day is '15', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -65991,7 +64580,8 @@ exports[`renders correctly renders correctly when day is '15', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -66008,7 +64598,7 @@ exports[`renders correctly renders correctly when day is '15', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -66049,21 +64639,18 @@ exports[`renders correctly renders correctly when day is '15', month is '8', dis exports[`renders correctly renders correctly when day is '15', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -66085,6 +64672,7 @@ exports[`renders correctly renders correctly when day is '15', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -66123,7 +64711,7 @@ exports[`renders correctly renders correctly when day is '15', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -66143,21 +64731,18 @@ exports[`renders correctly renders correctly when day is '15', month is '8', dis exports[`renders correctly renders correctly when day is '15', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -66179,6 +64764,7 @@ exports[`renders correctly renders correctly when day is '15', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -66217,7 +64803,7 @@ exports[`renders correctly renders correctly when day is '15', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -66237,21 +64823,18 @@ exports[`renders correctly renders correctly when day is '15', month is '8', dis exports[`renders correctly renders correctly when day is '15', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -66273,7 +64856,8 @@ exports[`renders correctly renders correctly when day is '15', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -66290,7 +64874,7 @@ exports[`renders correctly renders correctly when day is '15', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -66331,21 +64915,18 @@ exports[`renders correctly renders correctly when day is '15', month is '9', dis exports[`renders correctly renders correctly when day is '15', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -66367,7 +64948,8 @@ exports[`renders correctly renders correctly when day is '15', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -66384,7 +64966,7 @@ exports[`renders correctly renders correctly when day is '15', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -66425,21 +65007,18 @@ exports[`renders correctly renders correctly when day is '15', month is '9', dis exports[`renders correctly renders correctly when day is '15', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -66461,6 +65040,7 @@ exports[`renders correctly renders correctly when day is '15', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -66499,7 +65079,7 @@ exports[`renders correctly renders correctly when day is '15', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -66519,21 +65099,18 @@ exports[`renders correctly renders correctly when day is '15', month is '9', dis exports[`renders correctly renders correctly when day is '15', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -66555,6 +65132,7 @@ exports[`renders correctly renders correctly when day is '15', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -66593,7 +65171,7 @@ exports[`renders correctly renders correctly when day is '15', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -66613,21 +65191,18 @@ exports[`renders correctly renders correctly when day is '15', month is '9', dis exports[`renders correctly renders correctly when day is '15', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -66649,7 +65224,8 @@ exports[`renders correctly renders correctly when day is '15', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -66666,7 +65242,7 @@ exports[`renders correctly renders correctly when day is '15', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -66707,21 +65283,18 @@ exports[`renders correctly renders correctly when day is '15', month is '10', di exports[`renders correctly renders correctly when day is '15', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -66743,7 +65316,8 @@ exports[`renders correctly renders correctly when day is '15', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -66760,7 +65334,7 @@ exports[`renders correctly renders correctly when day is '15', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -66801,21 +65375,18 @@ exports[`renders correctly renders correctly when day is '15', month is '10', di exports[`renders correctly renders correctly when day is '15', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -66837,6 +65408,7 @@ exports[`renders correctly renders correctly when day is '15', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -66875,7 +65447,7 @@ exports[`renders correctly renders correctly when day is '15', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -66895,21 +65467,18 @@ exports[`renders correctly renders correctly when day is '15', month is '10', di exports[`renders correctly renders correctly when day is '15', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -66931,6 +65500,7 @@ exports[`renders correctly renders correctly when day is '15', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -66969,7 +65539,7 @@ exports[`renders correctly renders correctly when day is '15', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -66989,21 +65559,18 @@ exports[`renders correctly renders correctly when day is '15', month is '10', di exports[`renders correctly renders correctly when day is '15', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -67025,7 +65592,8 @@ exports[`renders correctly renders correctly when day is '15', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -67040,7 +65608,7 @@ exports[`renders correctly renders correctly when day is '15', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -67081,21 +65649,18 @@ exports[`renders correctly renders correctly when day is '15', month is '11', di exports[`renders correctly renders correctly when day is '15', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -67117,7 +65682,8 @@ exports[`renders correctly renders correctly when day is '15', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -67132,7 +65698,7 @@ exports[`renders correctly renders correctly when day is '15', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -67173,21 +65739,18 @@ exports[`renders correctly renders correctly when day is '15', month is '11', di exports[`renders correctly renders correctly when day is '15', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -67209,6 +65772,7 @@ exports[`renders correctly renders correctly when day is '15', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -67245,7 +65809,7 @@ exports[`renders correctly renders correctly when day is '15', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -67265,21 +65829,18 @@ exports[`renders correctly renders correctly when day is '15', month is '11', di exports[`renders correctly renders correctly when day is '15', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -67301,6 +65862,7 @@ exports[`renders correctly renders correctly when day is '15', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -67337,7 +65899,7 @@ exports[`renders correctly renders correctly when day is '15', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -67357,21 +65919,18 @@ exports[`renders correctly renders correctly when day is '15', month is '11', di exports[`renders correctly renders correctly when day is '15', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -67393,7 +65952,8 @@ exports[`renders correctly renders correctly when day is '15', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -67408,7 +65968,7 @@ exports[`renders correctly renders correctly when day is '15', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -67449,21 +66009,18 @@ exports[`renders correctly renders correctly when day is '15', month is '12', di exports[`renders correctly renders correctly when day is '15', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -67485,7 +66042,8 @@ exports[`renders correctly renders correctly when day is '15', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -67500,7 +66058,7 @@ exports[`renders correctly renders correctly when day is '15', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -67541,21 +66099,18 @@ exports[`renders correctly renders correctly when day is '15', month is '12', di exports[`renders correctly renders correctly when day is '15', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -67577,6 +66132,7 @@ exports[`renders correctly renders correctly when day is '15', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -67613,7 +66169,7 @@ exports[`renders correctly renders correctly when day is '15', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -67633,21 +66189,18 @@ exports[`renders correctly renders correctly when day is '15', month is '12', di exports[`renders correctly renders correctly when day is '15', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -67669,6 +66222,7 @@ exports[`renders correctly renders correctly when day is '15', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -67705,7 +66259,7 @@ exports[`renders correctly renders correctly when day is '15', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -67725,21 +66279,18 @@ exports[`renders correctly renders correctly when day is '15', month is '12', di exports[`renders correctly renders correctly when day is '16', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -67761,7 +66312,8 @@ exports[`renders correctly renders correctly when day is '16', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -67778,7 +66330,7 @@ exports[`renders correctly renders correctly when day is '16', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -67819,21 +66371,18 @@ exports[`renders correctly renders correctly when day is '16', month is '1', dis exports[`renders correctly renders correctly when day is '16', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -67855,7 +66404,8 @@ exports[`renders correctly renders correctly when day is '16', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -67872,7 +66422,7 @@ exports[`renders correctly renders correctly when day is '16', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -67913,21 +66463,18 @@ exports[`renders correctly renders correctly when day is '16', month is '1', dis exports[`renders correctly renders correctly when day is '16', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -67949,6 +66496,7 @@ exports[`renders correctly renders correctly when day is '16', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -67987,7 +66535,7 @@ exports[`renders correctly renders correctly when day is '16', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -68007,21 +66555,18 @@ exports[`renders correctly renders correctly when day is '16', month is '1', dis exports[`renders correctly renders correctly when day is '16', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -68043,6 +66588,7 @@ exports[`renders correctly renders correctly when day is '16', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -68081,7 +66627,7 @@ exports[`renders correctly renders correctly when day is '16', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -68101,21 +66647,18 @@ exports[`renders correctly renders correctly when day is '16', month is '1', dis exports[`renders correctly renders correctly when day is '16', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -68137,7 +66680,8 @@ exports[`renders correctly renders correctly when day is '16', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -68154,7 +66698,7 @@ exports[`renders correctly renders correctly when day is '16', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -68195,21 +66739,18 @@ exports[`renders correctly renders correctly when day is '16', month is '2', dis exports[`renders correctly renders correctly when day is '16', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -68231,7 +66772,8 @@ exports[`renders correctly renders correctly when day is '16', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -68248,7 +66790,7 @@ exports[`renders correctly renders correctly when day is '16', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -68289,21 +66831,18 @@ exports[`renders correctly renders correctly when day is '16', month is '2', dis exports[`renders correctly renders correctly when day is '16', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -68325,6 +66864,7 @@ exports[`renders correctly renders correctly when day is '16', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -68363,7 +66903,7 @@ exports[`renders correctly renders correctly when day is '16', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -68383,21 +66923,18 @@ exports[`renders correctly renders correctly when day is '16', month is '2', dis exports[`renders correctly renders correctly when day is '16', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -68419,6 +66956,7 @@ exports[`renders correctly renders correctly when day is '16', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -68457,7 +66995,7 @@ exports[`renders correctly renders correctly when day is '16', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -68477,21 +67015,18 @@ exports[`renders correctly renders correctly when day is '16', month is '2', dis exports[`renders correctly renders correctly when day is '16', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -68513,7 +67048,8 @@ exports[`renders correctly renders correctly when day is '16', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -68530,7 +67066,7 @@ exports[`renders correctly renders correctly when day is '16', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -68571,21 +67107,18 @@ exports[`renders correctly renders correctly when day is '16', month is '3', dis exports[`renders correctly renders correctly when day is '16', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -68607,7 +67140,8 @@ exports[`renders correctly renders correctly when day is '16', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -68624,7 +67158,7 @@ exports[`renders correctly renders correctly when day is '16', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -68665,21 +67199,18 @@ exports[`renders correctly renders correctly when day is '16', month is '3', dis exports[`renders correctly renders correctly when day is '16', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -68701,6 +67232,7 @@ exports[`renders correctly renders correctly when day is '16', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -68739,7 +67271,7 @@ exports[`renders correctly renders correctly when day is '16', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -68759,21 +67291,18 @@ exports[`renders correctly renders correctly when day is '16', month is '3', dis exports[`renders correctly renders correctly when day is '16', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -68795,6 +67324,7 @@ exports[`renders correctly renders correctly when day is '16', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -68833,7 +67363,7 @@ exports[`renders correctly renders correctly when day is '16', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -68853,21 +67383,18 @@ exports[`renders correctly renders correctly when day is '16', month is '3', dis exports[`renders correctly renders correctly when day is '16', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -68889,7 +67416,8 @@ exports[`renders correctly renders correctly when day is '16', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -68906,7 +67434,7 @@ exports[`renders correctly renders correctly when day is '16', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -68947,21 +67475,18 @@ exports[`renders correctly renders correctly when day is '16', month is '4', dis exports[`renders correctly renders correctly when day is '16', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -68983,7 +67508,8 @@ exports[`renders correctly renders correctly when day is '16', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -69000,7 +67526,7 @@ exports[`renders correctly renders correctly when day is '16', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -69041,21 +67567,18 @@ exports[`renders correctly renders correctly when day is '16', month is '4', dis exports[`renders correctly renders correctly when day is '16', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -69077,6 +67600,7 @@ exports[`renders correctly renders correctly when day is '16', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -69115,7 +67639,7 @@ exports[`renders correctly renders correctly when day is '16', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -69135,21 +67659,18 @@ exports[`renders correctly renders correctly when day is '16', month is '4', dis exports[`renders correctly renders correctly when day is '16', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -69171,6 +67692,7 @@ exports[`renders correctly renders correctly when day is '16', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -69209,7 +67731,7 @@ exports[`renders correctly renders correctly when day is '16', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -69229,21 +67751,18 @@ exports[`renders correctly renders correctly when day is '16', month is '4', dis exports[`renders correctly renders correctly when day is '16', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -69265,7 +67784,8 @@ exports[`renders correctly renders correctly when day is '16', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -69282,7 +67802,7 @@ exports[`renders correctly renders correctly when day is '16', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -69323,21 +67843,18 @@ exports[`renders correctly renders correctly when day is '16', month is '5', dis exports[`renders correctly renders correctly when day is '16', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -69359,7 +67876,8 @@ exports[`renders correctly renders correctly when day is '16', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -69376,7 +67894,7 @@ exports[`renders correctly renders correctly when day is '16', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -69417,21 +67935,18 @@ exports[`renders correctly renders correctly when day is '16', month is '5', dis exports[`renders correctly renders correctly when day is '16', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -69453,6 +67968,7 @@ exports[`renders correctly renders correctly when day is '16', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -69491,7 +68007,7 @@ exports[`renders correctly renders correctly when day is '16', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -69511,21 +68027,18 @@ exports[`renders correctly renders correctly when day is '16', month is '5', dis exports[`renders correctly renders correctly when day is '16', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -69547,6 +68060,7 @@ exports[`renders correctly renders correctly when day is '16', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -69585,7 +68099,7 @@ exports[`renders correctly renders correctly when day is '16', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -69605,21 +68119,18 @@ exports[`renders correctly renders correctly when day is '16', month is '5', dis exports[`renders correctly renders correctly when day is '16', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -69641,7 +68152,8 @@ exports[`renders correctly renders correctly when day is '16', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -69658,7 +68170,7 @@ exports[`renders correctly renders correctly when day is '16', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -69699,21 +68211,18 @@ exports[`renders correctly renders correctly when day is '16', month is '6', dis exports[`renders correctly renders correctly when day is '16', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -69735,7 +68244,8 @@ exports[`renders correctly renders correctly when day is '16', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -69752,7 +68262,7 @@ exports[`renders correctly renders correctly when day is '16', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -69793,21 +68303,18 @@ exports[`renders correctly renders correctly when day is '16', month is '6', dis exports[`renders correctly renders correctly when day is '16', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -69829,6 +68336,7 @@ exports[`renders correctly renders correctly when day is '16', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -69867,7 +68375,7 @@ exports[`renders correctly renders correctly when day is '16', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -69887,21 +68395,18 @@ exports[`renders correctly renders correctly when day is '16', month is '6', dis exports[`renders correctly renders correctly when day is '16', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -69923,6 +68428,7 @@ exports[`renders correctly renders correctly when day is '16', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -69961,7 +68467,7 @@ exports[`renders correctly renders correctly when day is '16', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -69981,21 +68487,18 @@ exports[`renders correctly renders correctly when day is '16', month is '6', dis exports[`renders correctly renders correctly when day is '16', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -70017,7 +68520,8 @@ exports[`renders correctly renders correctly when day is '16', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -70034,7 +68538,7 @@ exports[`renders correctly renders correctly when day is '16', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -70075,21 +68579,18 @@ exports[`renders correctly renders correctly when day is '16', month is '7', dis exports[`renders correctly renders correctly when day is '16', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -70111,7 +68612,8 @@ exports[`renders correctly renders correctly when day is '16', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -70128,7 +68630,7 @@ exports[`renders correctly renders correctly when day is '16', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -70169,21 +68671,18 @@ exports[`renders correctly renders correctly when day is '16', month is '7', dis exports[`renders correctly renders correctly when day is '16', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -70205,6 +68704,7 @@ exports[`renders correctly renders correctly when day is '16', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -70243,7 +68743,7 @@ exports[`renders correctly renders correctly when day is '16', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -70263,21 +68763,18 @@ exports[`renders correctly renders correctly when day is '16', month is '7', dis exports[`renders correctly renders correctly when day is '16', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -70299,6 +68796,7 @@ exports[`renders correctly renders correctly when day is '16', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -70337,7 +68835,7 @@ exports[`renders correctly renders correctly when day is '16', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -70357,21 +68855,18 @@ exports[`renders correctly renders correctly when day is '16', month is '7', dis exports[`renders correctly renders correctly when day is '16', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -70393,7 +68888,8 @@ exports[`renders correctly renders correctly when day is '16', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -70410,7 +68906,7 @@ exports[`renders correctly renders correctly when day is '16', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -70451,21 +68947,18 @@ exports[`renders correctly renders correctly when day is '16', month is '8', dis exports[`renders correctly renders correctly when day is '16', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -70487,7 +68980,8 @@ exports[`renders correctly renders correctly when day is '16', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -70504,7 +68998,7 @@ exports[`renders correctly renders correctly when day is '16', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -70545,21 +69039,18 @@ exports[`renders correctly renders correctly when day is '16', month is '8', dis exports[`renders correctly renders correctly when day is '16', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -70581,6 +69072,7 @@ exports[`renders correctly renders correctly when day is '16', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -70619,7 +69111,7 @@ exports[`renders correctly renders correctly when day is '16', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -70639,21 +69131,18 @@ exports[`renders correctly renders correctly when day is '16', month is '8', dis exports[`renders correctly renders correctly when day is '16', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -70675,6 +69164,7 @@ exports[`renders correctly renders correctly when day is '16', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -70713,7 +69203,7 @@ exports[`renders correctly renders correctly when day is '16', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -70733,21 +69223,18 @@ exports[`renders correctly renders correctly when day is '16', month is '8', dis exports[`renders correctly renders correctly when day is '16', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -70769,7 +69256,8 @@ exports[`renders correctly renders correctly when day is '16', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -70786,7 +69274,7 @@ exports[`renders correctly renders correctly when day is '16', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -70827,21 +69315,18 @@ exports[`renders correctly renders correctly when day is '16', month is '9', dis exports[`renders correctly renders correctly when day is '16', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -70863,7 +69348,8 @@ exports[`renders correctly renders correctly when day is '16', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -70880,7 +69366,7 @@ exports[`renders correctly renders correctly when day is '16', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -70921,21 +69407,18 @@ exports[`renders correctly renders correctly when day is '16', month is '9', dis exports[`renders correctly renders correctly when day is '16', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -70957,6 +69440,7 @@ exports[`renders correctly renders correctly when day is '16', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -70995,7 +69479,7 @@ exports[`renders correctly renders correctly when day is '16', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -71015,21 +69499,18 @@ exports[`renders correctly renders correctly when day is '16', month is '9', dis exports[`renders correctly renders correctly when day is '16', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -71051,6 +69532,7 @@ exports[`renders correctly renders correctly when day is '16', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -71089,7 +69571,7 @@ exports[`renders correctly renders correctly when day is '16', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -71109,21 +69591,18 @@ exports[`renders correctly renders correctly when day is '16', month is '9', dis exports[`renders correctly renders correctly when day is '16', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -71145,7 +69624,8 @@ exports[`renders correctly renders correctly when day is '16', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -71162,7 +69642,7 @@ exports[`renders correctly renders correctly when day is '16', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -71203,21 +69683,18 @@ exports[`renders correctly renders correctly when day is '16', month is '10', di exports[`renders correctly renders correctly when day is '16', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -71239,7 +69716,8 @@ exports[`renders correctly renders correctly when day is '16', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -71256,7 +69734,7 @@ exports[`renders correctly renders correctly when day is '16', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -71297,21 +69775,18 @@ exports[`renders correctly renders correctly when day is '16', month is '10', di exports[`renders correctly renders correctly when day is '16', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -71333,6 +69808,7 @@ exports[`renders correctly renders correctly when day is '16', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -71371,7 +69847,7 @@ exports[`renders correctly renders correctly when day is '16', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -71391,21 +69867,18 @@ exports[`renders correctly renders correctly when day is '16', month is '10', di exports[`renders correctly renders correctly when day is '16', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -71427,6 +69900,7 @@ exports[`renders correctly renders correctly when day is '16', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -71465,7 +69939,7 @@ exports[`renders correctly renders correctly when day is '16', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -71485,21 +69959,18 @@ exports[`renders correctly renders correctly when day is '16', month is '10', di exports[`renders correctly renders correctly when day is '16', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -71521,7 +69992,8 @@ exports[`renders correctly renders correctly when day is '16', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -71536,7 +70008,7 @@ exports[`renders correctly renders correctly when day is '16', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -71577,21 +70049,18 @@ exports[`renders correctly renders correctly when day is '16', month is '11', di exports[`renders correctly renders correctly when day is '16', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -71613,7 +70082,8 @@ exports[`renders correctly renders correctly when day is '16', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -71628,7 +70098,7 @@ exports[`renders correctly renders correctly when day is '16', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -71669,21 +70139,18 @@ exports[`renders correctly renders correctly when day is '16', month is '11', di exports[`renders correctly renders correctly when day is '16', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -71705,6 +70172,7 @@ exports[`renders correctly renders correctly when day is '16', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -71741,7 +70209,7 @@ exports[`renders correctly renders correctly when day is '16', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -71761,21 +70229,18 @@ exports[`renders correctly renders correctly when day is '16', month is '11', di exports[`renders correctly renders correctly when day is '16', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -71797,6 +70262,7 @@ exports[`renders correctly renders correctly when day is '16', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -71833,7 +70299,7 @@ exports[`renders correctly renders correctly when day is '16', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -71853,21 +70319,18 @@ exports[`renders correctly renders correctly when day is '16', month is '11', di exports[`renders correctly renders correctly when day is '16', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -71889,7 +70352,8 @@ exports[`renders correctly renders correctly when day is '16', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -71904,7 +70368,7 @@ exports[`renders correctly renders correctly when day is '16', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -71945,21 +70409,18 @@ exports[`renders correctly renders correctly when day is '16', month is '12', di exports[`renders correctly renders correctly when day is '16', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -71981,7 +70442,8 @@ exports[`renders correctly renders correctly when day is '16', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -71996,7 +70458,7 @@ exports[`renders correctly renders correctly when day is '16', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -72037,21 +70499,18 @@ exports[`renders correctly renders correctly when day is '16', month is '12', di exports[`renders correctly renders correctly when day is '16', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -72073,6 +70532,7 @@ exports[`renders correctly renders correctly when day is '16', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -72109,7 +70569,7 @@ exports[`renders correctly renders correctly when day is '16', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -72129,21 +70589,18 @@ exports[`renders correctly renders correctly when day is '16', month is '12', di exports[`renders correctly renders correctly when day is '16', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -72165,6 +70622,7 @@ exports[`renders correctly renders correctly when day is '16', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -72201,7 +70659,7 @@ exports[`renders correctly renders correctly when day is '16', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -72221,21 +70679,18 @@ exports[`renders correctly renders correctly when day is '16', month is '12', di exports[`renders correctly renders correctly when day is '17', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -72257,7 +70712,8 @@ exports[`renders correctly renders correctly when day is '17', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -72274,7 +70730,7 @@ exports[`renders correctly renders correctly when day is '17', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -72315,21 +70771,18 @@ exports[`renders correctly renders correctly when day is '17', month is '1', dis exports[`renders correctly renders correctly when day is '17', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -72351,7 +70804,8 @@ exports[`renders correctly renders correctly when day is '17', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -72368,7 +70822,7 @@ exports[`renders correctly renders correctly when day is '17', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -72409,21 +70863,18 @@ exports[`renders correctly renders correctly when day is '17', month is '1', dis exports[`renders correctly renders correctly when day is '17', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -72445,6 +70896,7 @@ exports[`renders correctly renders correctly when day is '17', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -72483,7 +70935,7 @@ exports[`renders correctly renders correctly when day is '17', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -72503,21 +70955,18 @@ exports[`renders correctly renders correctly when day is '17', month is '1', dis exports[`renders correctly renders correctly when day is '17', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -72539,6 +70988,7 @@ exports[`renders correctly renders correctly when day is '17', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -72577,7 +71027,7 @@ exports[`renders correctly renders correctly when day is '17', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -72597,21 +71047,18 @@ exports[`renders correctly renders correctly when day is '17', month is '1', dis exports[`renders correctly renders correctly when day is '17', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -72633,7 +71080,8 @@ exports[`renders correctly renders correctly when day is '17', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -72650,7 +71098,7 @@ exports[`renders correctly renders correctly when day is '17', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -72691,21 +71139,18 @@ exports[`renders correctly renders correctly when day is '17', month is '2', dis exports[`renders correctly renders correctly when day is '17', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -72727,7 +71172,8 @@ exports[`renders correctly renders correctly when day is '17', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -72744,7 +71190,7 @@ exports[`renders correctly renders correctly when day is '17', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -72785,21 +71231,18 @@ exports[`renders correctly renders correctly when day is '17', month is '2', dis exports[`renders correctly renders correctly when day is '17', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -72821,6 +71264,7 @@ exports[`renders correctly renders correctly when day is '17', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -72859,7 +71303,7 @@ exports[`renders correctly renders correctly when day is '17', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -72879,21 +71323,18 @@ exports[`renders correctly renders correctly when day is '17', month is '2', dis exports[`renders correctly renders correctly when day is '17', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -72915,6 +71356,7 @@ exports[`renders correctly renders correctly when day is '17', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -72953,7 +71395,7 @@ exports[`renders correctly renders correctly when day is '17', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -72973,21 +71415,18 @@ exports[`renders correctly renders correctly when day is '17', month is '2', dis exports[`renders correctly renders correctly when day is '17', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -73009,7 +71448,8 @@ exports[`renders correctly renders correctly when day is '17', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -73026,7 +71466,7 @@ exports[`renders correctly renders correctly when day is '17', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -73067,21 +71507,18 @@ exports[`renders correctly renders correctly when day is '17', month is '3', dis exports[`renders correctly renders correctly when day is '17', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -73103,7 +71540,8 @@ exports[`renders correctly renders correctly when day is '17', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -73120,7 +71558,7 @@ exports[`renders correctly renders correctly when day is '17', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -73161,21 +71599,18 @@ exports[`renders correctly renders correctly when day is '17', month is '3', dis exports[`renders correctly renders correctly when day is '17', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -73197,6 +71632,7 @@ exports[`renders correctly renders correctly when day is '17', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -73235,7 +71671,7 @@ exports[`renders correctly renders correctly when day is '17', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -73255,21 +71691,18 @@ exports[`renders correctly renders correctly when day is '17', month is '3', dis exports[`renders correctly renders correctly when day is '17', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -73291,6 +71724,7 @@ exports[`renders correctly renders correctly when day is '17', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -73329,7 +71763,7 @@ exports[`renders correctly renders correctly when day is '17', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -73349,21 +71783,18 @@ exports[`renders correctly renders correctly when day is '17', month is '3', dis exports[`renders correctly renders correctly when day is '17', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -73385,7 +71816,8 @@ exports[`renders correctly renders correctly when day is '17', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -73402,7 +71834,7 @@ exports[`renders correctly renders correctly when day is '17', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -73443,21 +71875,18 @@ exports[`renders correctly renders correctly when day is '17', month is '4', dis exports[`renders correctly renders correctly when day is '17', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -73479,7 +71908,8 @@ exports[`renders correctly renders correctly when day is '17', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -73496,7 +71926,7 @@ exports[`renders correctly renders correctly when day is '17', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -73537,21 +71967,18 @@ exports[`renders correctly renders correctly when day is '17', month is '4', dis exports[`renders correctly renders correctly when day is '17', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -73573,6 +72000,7 @@ exports[`renders correctly renders correctly when day is '17', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -73611,7 +72039,7 @@ exports[`renders correctly renders correctly when day is '17', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -73631,21 +72059,18 @@ exports[`renders correctly renders correctly when day is '17', month is '4', dis exports[`renders correctly renders correctly when day is '17', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -73667,6 +72092,7 @@ exports[`renders correctly renders correctly when day is '17', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -73705,7 +72131,7 @@ exports[`renders correctly renders correctly when day is '17', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -73725,21 +72151,18 @@ exports[`renders correctly renders correctly when day is '17', month is '4', dis exports[`renders correctly renders correctly when day is '17', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -73761,7 +72184,8 @@ exports[`renders correctly renders correctly when day is '17', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -73778,7 +72202,7 @@ exports[`renders correctly renders correctly when day is '17', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -73819,21 +72243,18 @@ exports[`renders correctly renders correctly when day is '17', month is '5', dis exports[`renders correctly renders correctly when day is '17', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -73855,7 +72276,8 @@ exports[`renders correctly renders correctly when day is '17', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -73872,7 +72294,7 @@ exports[`renders correctly renders correctly when day is '17', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -73913,21 +72335,18 @@ exports[`renders correctly renders correctly when day is '17', month is '5', dis exports[`renders correctly renders correctly when day is '17', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -73949,6 +72368,7 @@ exports[`renders correctly renders correctly when day is '17', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -73987,7 +72407,7 @@ exports[`renders correctly renders correctly when day is '17', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -74007,21 +72427,18 @@ exports[`renders correctly renders correctly when day is '17', month is '5', dis exports[`renders correctly renders correctly when day is '17', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -74043,6 +72460,7 @@ exports[`renders correctly renders correctly when day is '17', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -74081,7 +72499,7 @@ exports[`renders correctly renders correctly when day is '17', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -74101,21 +72519,18 @@ exports[`renders correctly renders correctly when day is '17', month is '5', dis exports[`renders correctly renders correctly when day is '17', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -74137,7 +72552,8 @@ exports[`renders correctly renders correctly when day is '17', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -74154,7 +72570,7 @@ exports[`renders correctly renders correctly when day is '17', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -74195,21 +72611,18 @@ exports[`renders correctly renders correctly when day is '17', month is '6', dis exports[`renders correctly renders correctly when day is '17', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -74231,7 +72644,8 @@ exports[`renders correctly renders correctly when day is '17', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -74248,7 +72662,7 @@ exports[`renders correctly renders correctly when day is '17', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -74289,21 +72703,18 @@ exports[`renders correctly renders correctly when day is '17', month is '6', dis exports[`renders correctly renders correctly when day is '17', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -74325,6 +72736,7 @@ exports[`renders correctly renders correctly when day is '17', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -74363,7 +72775,7 @@ exports[`renders correctly renders correctly when day is '17', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -74383,21 +72795,18 @@ exports[`renders correctly renders correctly when day is '17', month is '6', dis exports[`renders correctly renders correctly when day is '17', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -74419,6 +72828,7 @@ exports[`renders correctly renders correctly when day is '17', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -74457,7 +72867,7 @@ exports[`renders correctly renders correctly when day is '17', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -74477,21 +72887,18 @@ exports[`renders correctly renders correctly when day is '17', month is '6', dis exports[`renders correctly renders correctly when day is '17', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -74513,7 +72920,8 @@ exports[`renders correctly renders correctly when day is '17', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -74530,7 +72938,7 @@ exports[`renders correctly renders correctly when day is '17', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -74571,21 +72979,18 @@ exports[`renders correctly renders correctly when day is '17', month is '7', dis exports[`renders correctly renders correctly when day is '17', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -74607,7 +73012,8 @@ exports[`renders correctly renders correctly when day is '17', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -74624,7 +73030,7 @@ exports[`renders correctly renders correctly when day is '17', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -74665,21 +73071,18 @@ exports[`renders correctly renders correctly when day is '17', month is '7', dis exports[`renders correctly renders correctly when day is '17', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -74701,6 +73104,7 @@ exports[`renders correctly renders correctly when day is '17', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -74739,7 +73143,7 @@ exports[`renders correctly renders correctly when day is '17', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -74759,21 +73163,18 @@ exports[`renders correctly renders correctly when day is '17', month is '7', dis exports[`renders correctly renders correctly when day is '17', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -74795,6 +73196,7 @@ exports[`renders correctly renders correctly when day is '17', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -74833,7 +73235,7 @@ exports[`renders correctly renders correctly when day is '17', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -74853,21 +73255,18 @@ exports[`renders correctly renders correctly when day is '17', month is '7', dis exports[`renders correctly renders correctly when day is '17', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -74889,7 +73288,8 @@ exports[`renders correctly renders correctly when day is '17', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -74906,7 +73306,7 @@ exports[`renders correctly renders correctly when day is '17', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -74947,21 +73347,18 @@ exports[`renders correctly renders correctly when day is '17', month is '8', dis exports[`renders correctly renders correctly when day is '17', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -74983,7 +73380,8 @@ exports[`renders correctly renders correctly when day is '17', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -75000,7 +73398,7 @@ exports[`renders correctly renders correctly when day is '17', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -75041,21 +73439,18 @@ exports[`renders correctly renders correctly when day is '17', month is '8', dis exports[`renders correctly renders correctly when day is '17', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -75077,6 +73472,7 @@ exports[`renders correctly renders correctly when day is '17', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -75115,7 +73511,7 @@ exports[`renders correctly renders correctly when day is '17', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -75135,21 +73531,18 @@ exports[`renders correctly renders correctly when day is '17', month is '8', dis exports[`renders correctly renders correctly when day is '17', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -75171,6 +73564,7 @@ exports[`renders correctly renders correctly when day is '17', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -75209,7 +73603,7 @@ exports[`renders correctly renders correctly when day is '17', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -75229,21 +73623,18 @@ exports[`renders correctly renders correctly when day is '17', month is '8', dis exports[`renders correctly renders correctly when day is '17', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -75265,7 +73656,8 @@ exports[`renders correctly renders correctly when day is '17', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -75282,7 +73674,7 @@ exports[`renders correctly renders correctly when day is '17', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -75323,21 +73715,18 @@ exports[`renders correctly renders correctly when day is '17', month is '9', dis exports[`renders correctly renders correctly when day is '17', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -75359,7 +73748,8 @@ exports[`renders correctly renders correctly when day is '17', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -75376,7 +73766,7 @@ exports[`renders correctly renders correctly when day is '17', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -75417,21 +73807,18 @@ exports[`renders correctly renders correctly when day is '17', month is '9', dis exports[`renders correctly renders correctly when day is '17', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -75453,6 +73840,7 @@ exports[`renders correctly renders correctly when day is '17', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -75491,7 +73879,7 @@ exports[`renders correctly renders correctly when day is '17', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -75511,21 +73899,18 @@ exports[`renders correctly renders correctly when day is '17', month is '9', dis exports[`renders correctly renders correctly when day is '17', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -75547,6 +73932,7 @@ exports[`renders correctly renders correctly when day is '17', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -75585,7 +73971,7 @@ exports[`renders correctly renders correctly when day is '17', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -75605,21 +73991,18 @@ exports[`renders correctly renders correctly when day is '17', month is '9', dis exports[`renders correctly renders correctly when day is '17', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -75641,7 +74024,8 @@ exports[`renders correctly renders correctly when day is '17', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -75658,7 +74042,7 @@ exports[`renders correctly renders correctly when day is '17', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -75699,21 +74083,18 @@ exports[`renders correctly renders correctly when day is '17', month is '10', di exports[`renders correctly renders correctly when day is '17', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -75735,7 +74116,8 @@ exports[`renders correctly renders correctly when day is '17', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -75752,7 +74134,7 @@ exports[`renders correctly renders correctly when day is '17', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -75793,115 +74175,18 @@ exports[`renders correctly renders correctly when day is '17', month is '10', di exports[`renders correctly renders correctly when day is '17', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] - } -> - <View - style={ - { - "padding": 0, - } + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, } - testID="holi-calendar-icon" - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#ebebeb", - "fontFamily": "InstrumentSans-Medium", - "fontSize": 12, - "fontWeight": "500", - "lineHeight": 12, - "paddingBottom": 2, - "textAlign": "center", - "userSelect": "auto", - } - } - > - S - </Text> - <View - style={ - { - "alignItems": "center", - "backgroundColor": "#ebebeb", - "borderTopLeftRadius": 6, - "borderTopRightRadius": 6, - "display": "flex", - "justifyContent": "center", - "minHeight": 44, - "minWidth": 60, - } - } - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#787777", - "fontFamily": "InstrumentSans-Regular", - "fontSize": 28, - "fontWeight": "400", - "lineHeight": 22.4, - "paddingTop": 8, - "userSelect": "auto", - } - } - > - 17 - </Text> - </View> - </View> -</View> -`; - -exports[`renders correctly renders correctly when day is '17', month is '10', disabled is 'true', size is 'small' 1`] = ` -<View - style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] } > <View @@ -75923,6 +74208,99 @@ exports[`renders correctly renders correctly when day is '17', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", + "color": "#ebebeb", + "fontFamily": "InstrumentSans-Medium", + "fontSize": 12, + "fontWeight": "500", + "lineHeight": 12, + "paddingBottom": 2, + "textAlign": "center", + "userSelect": "auto", + } + } + > + S + </Text> + <View + style={ + { + "alignItems": "center", + "backgroundColor": "#ebebeb", + "borderTopLeftRadius": 6, + "borderTopRightRadius": 6, + "display": "flex", + "justifyContent": "center", + "minHeight": 44, + "minWidth": 60, + } + } + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "color": "#676565", + "fontFamily": "InstrumentSans-Regular", + "fontSize": 28, + "fontWeight": "400", + "lineHeight": 22.4, + "paddingTop": 8, + "userSelect": "auto", + } + } + > + 17 + </Text> + </View> + </View> +</View> +`; + +exports[`renders correctly renders correctly when day is '17', month is '10', disabled is 'true', size is 'small' 1`] = ` +<View + style={ + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } + } +> + <View + style={ + { + "padding": 0, + } + } + testID="holi-calendar-icon" + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -75961,7 +74339,7 @@ exports[`renders correctly renders correctly when day is '17', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -75981,21 +74359,18 @@ exports[`renders correctly renders correctly when day is '17', month is '10', di exports[`renders correctly renders correctly when day is '17', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -76017,7 +74392,8 @@ exports[`renders correctly renders correctly when day is '17', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -76032,7 +74408,7 @@ exports[`renders correctly renders correctly when day is '17', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -76073,21 +74449,18 @@ exports[`renders correctly renders correctly when day is '17', month is '11', di exports[`renders correctly renders correctly when day is '17', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -76109,7 +74482,8 @@ exports[`renders correctly renders correctly when day is '17', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -76124,7 +74498,7 @@ exports[`renders correctly renders correctly when day is '17', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -76165,21 +74539,18 @@ exports[`renders correctly renders correctly when day is '17', month is '11', di exports[`renders correctly renders correctly when day is '17', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -76201,6 +74572,7 @@ exports[`renders correctly renders correctly when day is '17', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -76237,7 +74609,7 @@ exports[`renders correctly renders correctly when day is '17', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -76257,21 +74629,18 @@ exports[`renders correctly renders correctly when day is '17', month is '11', di exports[`renders correctly renders correctly when day is '17', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -76293,6 +74662,7 @@ exports[`renders correctly renders correctly when day is '17', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -76329,7 +74699,7 @@ exports[`renders correctly renders correctly when day is '17', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -76349,21 +74719,18 @@ exports[`renders correctly renders correctly when day is '17', month is '11', di exports[`renders correctly renders correctly when day is '17', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -76385,7 +74752,8 @@ exports[`renders correctly renders correctly when day is '17', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -76400,7 +74768,7 @@ exports[`renders correctly renders correctly when day is '17', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -76441,21 +74809,18 @@ exports[`renders correctly renders correctly when day is '17', month is '12', di exports[`renders correctly renders correctly when day is '17', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -76477,7 +74842,8 @@ exports[`renders correctly renders correctly when day is '17', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -76492,7 +74858,7 @@ exports[`renders correctly renders correctly when day is '17', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -76533,21 +74899,18 @@ exports[`renders correctly renders correctly when day is '17', month is '12', di exports[`renders correctly renders correctly when day is '17', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -76569,6 +74932,7 @@ exports[`renders correctly renders correctly when day is '17', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -76605,7 +74969,7 @@ exports[`renders correctly renders correctly when day is '17', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -76625,21 +74989,18 @@ exports[`renders correctly renders correctly when day is '17', month is '12', di exports[`renders correctly renders correctly when day is '17', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -76661,6 +75022,7 @@ exports[`renders correctly renders correctly when day is '17', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -76697,7 +75059,7 @@ exports[`renders correctly renders correctly when day is '17', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -76717,21 +75079,18 @@ exports[`renders correctly renders correctly when day is '17', month is '12', di exports[`renders correctly renders correctly when day is '18', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -76753,7 +75112,8 @@ exports[`renders correctly renders correctly when day is '18', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -76770,7 +75130,7 @@ exports[`renders correctly renders correctly when day is '18', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -76811,21 +75171,18 @@ exports[`renders correctly renders correctly when day is '18', month is '1', dis exports[`renders correctly renders correctly when day is '18', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -76847,7 +75204,8 @@ exports[`renders correctly renders correctly when day is '18', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -76864,7 +75222,7 @@ exports[`renders correctly renders correctly when day is '18', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -76905,21 +75263,18 @@ exports[`renders correctly renders correctly when day is '18', month is '1', dis exports[`renders correctly renders correctly when day is '18', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -76941,6 +75296,7 @@ exports[`renders correctly renders correctly when day is '18', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -76979,7 +75335,7 @@ exports[`renders correctly renders correctly when day is '18', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -76999,21 +75355,18 @@ exports[`renders correctly renders correctly when day is '18', month is '1', dis exports[`renders correctly renders correctly when day is '18', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -77035,6 +75388,7 @@ exports[`renders correctly renders correctly when day is '18', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -77073,7 +75427,7 @@ exports[`renders correctly renders correctly when day is '18', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -77093,21 +75447,18 @@ exports[`renders correctly renders correctly when day is '18', month is '1', dis exports[`renders correctly renders correctly when day is '18', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -77129,7 +75480,8 @@ exports[`renders correctly renders correctly when day is '18', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -77146,7 +75498,7 @@ exports[`renders correctly renders correctly when day is '18', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -77187,21 +75539,18 @@ exports[`renders correctly renders correctly when day is '18', month is '2', dis exports[`renders correctly renders correctly when day is '18', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -77223,7 +75572,8 @@ exports[`renders correctly renders correctly when day is '18', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -77240,7 +75590,7 @@ exports[`renders correctly renders correctly when day is '18', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -77281,21 +75631,18 @@ exports[`renders correctly renders correctly when day is '18', month is '2', dis exports[`renders correctly renders correctly when day is '18', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -77317,6 +75664,7 @@ exports[`renders correctly renders correctly when day is '18', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -77355,7 +75703,7 @@ exports[`renders correctly renders correctly when day is '18', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -77375,21 +75723,18 @@ exports[`renders correctly renders correctly when day is '18', month is '2', dis exports[`renders correctly renders correctly when day is '18', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -77411,6 +75756,7 @@ exports[`renders correctly renders correctly when day is '18', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -77449,7 +75795,7 @@ exports[`renders correctly renders correctly when day is '18', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -77469,21 +75815,18 @@ exports[`renders correctly renders correctly when day is '18', month is '2', dis exports[`renders correctly renders correctly when day is '18', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -77505,7 +75848,8 @@ exports[`renders correctly renders correctly when day is '18', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -77522,7 +75866,7 @@ exports[`renders correctly renders correctly when day is '18', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -77563,21 +75907,18 @@ exports[`renders correctly renders correctly when day is '18', month is '3', dis exports[`renders correctly renders correctly when day is '18', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -77599,7 +75940,8 @@ exports[`renders correctly renders correctly when day is '18', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -77616,7 +75958,7 @@ exports[`renders correctly renders correctly when day is '18', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -77657,21 +75999,18 @@ exports[`renders correctly renders correctly when day is '18', month is '3', dis exports[`renders correctly renders correctly when day is '18', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -77693,6 +76032,7 @@ exports[`renders correctly renders correctly when day is '18', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -77731,7 +76071,7 @@ exports[`renders correctly renders correctly when day is '18', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -77751,21 +76091,18 @@ exports[`renders correctly renders correctly when day is '18', month is '3', dis exports[`renders correctly renders correctly when day is '18', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -77787,6 +76124,7 @@ exports[`renders correctly renders correctly when day is '18', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -77825,7 +76163,7 @@ exports[`renders correctly renders correctly when day is '18', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -77845,21 +76183,18 @@ exports[`renders correctly renders correctly when day is '18', month is '3', dis exports[`renders correctly renders correctly when day is '18', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -77881,7 +76216,8 @@ exports[`renders correctly renders correctly when day is '18', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -77898,7 +76234,7 @@ exports[`renders correctly renders correctly when day is '18', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -77939,21 +76275,18 @@ exports[`renders correctly renders correctly when day is '18', month is '4', dis exports[`renders correctly renders correctly when day is '18', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -77975,7 +76308,8 @@ exports[`renders correctly renders correctly when day is '18', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -77992,7 +76326,7 @@ exports[`renders correctly renders correctly when day is '18', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -78033,21 +76367,18 @@ exports[`renders correctly renders correctly when day is '18', month is '4', dis exports[`renders correctly renders correctly when day is '18', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -78069,6 +76400,7 @@ exports[`renders correctly renders correctly when day is '18', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -78107,7 +76439,7 @@ exports[`renders correctly renders correctly when day is '18', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -78127,21 +76459,18 @@ exports[`renders correctly renders correctly when day is '18', month is '4', dis exports[`renders correctly renders correctly when day is '18', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -78163,6 +76492,7 @@ exports[`renders correctly renders correctly when day is '18', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -78201,7 +76531,7 @@ exports[`renders correctly renders correctly when day is '18', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -78221,21 +76551,18 @@ exports[`renders correctly renders correctly when day is '18', month is '4', dis exports[`renders correctly renders correctly when day is '18', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -78257,7 +76584,8 @@ exports[`renders correctly renders correctly when day is '18', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -78274,7 +76602,7 @@ exports[`renders correctly renders correctly when day is '18', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -78315,21 +76643,18 @@ exports[`renders correctly renders correctly when day is '18', month is '5', dis exports[`renders correctly renders correctly when day is '18', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -78351,7 +76676,8 @@ exports[`renders correctly renders correctly when day is '18', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -78368,7 +76694,7 @@ exports[`renders correctly renders correctly when day is '18', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -78409,21 +76735,18 @@ exports[`renders correctly renders correctly when day is '18', month is '5', dis exports[`renders correctly renders correctly when day is '18', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -78445,6 +76768,7 @@ exports[`renders correctly renders correctly when day is '18', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -78483,7 +76807,7 @@ exports[`renders correctly renders correctly when day is '18', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -78503,21 +76827,18 @@ exports[`renders correctly renders correctly when day is '18', month is '5', dis exports[`renders correctly renders correctly when day is '18', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -78539,6 +76860,7 @@ exports[`renders correctly renders correctly when day is '18', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -78577,7 +76899,7 @@ exports[`renders correctly renders correctly when day is '18', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -78597,21 +76919,18 @@ exports[`renders correctly renders correctly when day is '18', month is '5', dis exports[`renders correctly renders correctly when day is '18', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -78633,7 +76952,8 @@ exports[`renders correctly renders correctly when day is '18', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -78650,7 +76970,7 @@ exports[`renders correctly renders correctly when day is '18', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -78691,21 +77011,18 @@ exports[`renders correctly renders correctly when day is '18', month is '6', dis exports[`renders correctly renders correctly when day is '18', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -78727,7 +77044,8 @@ exports[`renders correctly renders correctly when day is '18', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -78744,7 +77062,7 @@ exports[`renders correctly renders correctly when day is '18', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -78785,21 +77103,18 @@ exports[`renders correctly renders correctly when day is '18', month is '6', dis exports[`renders correctly renders correctly when day is '18', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -78821,6 +77136,7 @@ exports[`renders correctly renders correctly when day is '18', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -78859,7 +77175,7 @@ exports[`renders correctly renders correctly when day is '18', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -78879,21 +77195,18 @@ exports[`renders correctly renders correctly when day is '18', month is '6', dis exports[`renders correctly renders correctly when day is '18', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -78915,6 +77228,7 @@ exports[`renders correctly renders correctly when day is '18', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -78953,7 +77267,7 @@ exports[`renders correctly renders correctly when day is '18', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -78973,21 +77287,18 @@ exports[`renders correctly renders correctly when day is '18', month is '6', dis exports[`renders correctly renders correctly when day is '18', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -79009,7 +77320,8 @@ exports[`renders correctly renders correctly when day is '18', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -79026,7 +77338,7 @@ exports[`renders correctly renders correctly when day is '18', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -79067,21 +77379,18 @@ exports[`renders correctly renders correctly when day is '18', month is '7', dis exports[`renders correctly renders correctly when day is '18', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -79103,7 +77412,8 @@ exports[`renders correctly renders correctly when day is '18', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -79120,7 +77430,7 @@ exports[`renders correctly renders correctly when day is '18', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -79161,21 +77471,18 @@ exports[`renders correctly renders correctly when day is '18', month is '7', dis exports[`renders correctly renders correctly when day is '18', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -79197,6 +77504,7 @@ exports[`renders correctly renders correctly when day is '18', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -79235,7 +77543,7 @@ exports[`renders correctly renders correctly when day is '18', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -79255,21 +77563,18 @@ exports[`renders correctly renders correctly when day is '18', month is '7', dis exports[`renders correctly renders correctly when day is '18', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -79291,6 +77596,7 @@ exports[`renders correctly renders correctly when day is '18', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -79329,7 +77635,7 @@ exports[`renders correctly renders correctly when day is '18', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -79349,21 +77655,18 @@ exports[`renders correctly renders correctly when day is '18', month is '7', dis exports[`renders correctly renders correctly when day is '18', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -79385,7 +77688,8 @@ exports[`renders correctly renders correctly when day is '18', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -79402,7 +77706,7 @@ exports[`renders correctly renders correctly when day is '18', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -79443,21 +77747,18 @@ exports[`renders correctly renders correctly when day is '18', month is '8', dis exports[`renders correctly renders correctly when day is '18', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -79479,7 +77780,8 @@ exports[`renders correctly renders correctly when day is '18', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -79496,7 +77798,7 @@ exports[`renders correctly renders correctly when day is '18', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -79537,21 +77839,18 @@ exports[`renders correctly renders correctly when day is '18', month is '8', dis exports[`renders correctly renders correctly when day is '18', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -79573,6 +77872,7 @@ exports[`renders correctly renders correctly when day is '18', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -79611,7 +77911,7 @@ exports[`renders correctly renders correctly when day is '18', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -79631,21 +77931,18 @@ exports[`renders correctly renders correctly when day is '18', month is '8', dis exports[`renders correctly renders correctly when day is '18', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -79667,6 +77964,7 @@ exports[`renders correctly renders correctly when day is '18', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -79705,7 +78003,7 @@ exports[`renders correctly renders correctly when day is '18', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -79725,21 +78023,18 @@ exports[`renders correctly renders correctly when day is '18', month is '8', dis exports[`renders correctly renders correctly when day is '18', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -79761,7 +78056,8 @@ exports[`renders correctly renders correctly when day is '18', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -79778,7 +78074,7 @@ exports[`renders correctly renders correctly when day is '18', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -79819,21 +78115,18 @@ exports[`renders correctly renders correctly when day is '18', month is '9', dis exports[`renders correctly renders correctly when day is '18', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -79855,7 +78148,8 @@ exports[`renders correctly renders correctly when day is '18', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -79872,7 +78166,7 @@ exports[`renders correctly renders correctly when day is '18', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -79913,21 +78207,18 @@ exports[`renders correctly renders correctly when day is '18', month is '9', dis exports[`renders correctly renders correctly when day is '18', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -79949,6 +78240,7 @@ exports[`renders correctly renders correctly when day is '18', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -79987,7 +78279,7 @@ exports[`renders correctly renders correctly when day is '18', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -80007,21 +78299,18 @@ exports[`renders correctly renders correctly when day is '18', month is '9', dis exports[`renders correctly renders correctly when day is '18', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -80043,6 +78332,7 @@ exports[`renders correctly renders correctly when day is '18', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -80081,7 +78371,7 @@ exports[`renders correctly renders correctly when day is '18', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -80101,21 +78391,18 @@ exports[`renders correctly renders correctly when day is '18', month is '9', dis exports[`renders correctly renders correctly when day is '18', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -80137,7 +78424,8 @@ exports[`renders correctly renders correctly when day is '18', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -80154,7 +78442,7 @@ exports[`renders correctly renders correctly when day is '18', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -80195,21 +78483,18 @@ exports[`renders correctly renders correctly when day is '18', month is '10', di exports[`renders correctly renders correctly when day is '18', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -80231,7 +78516,8 @@ exports[`renders correctly renders correctly when day is '18', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -80248,7 +78534,7 @@ exports[`renders correctly renders correctly when day is '18', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -80289,21 +78575,18 @@ exports[`renders correctly renders correctly when day is '18', month is '10', di exports[`renders correctly renders correctly when day is '18', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -80325,6 +78608,7 @@ exports[`renders correctly renders correctly when day is '18', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -80363,7 +78647,7 @@ exports[`renders correctly renders correctly when day is '18', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -80383,21 +78667,18 @@ exports[`renders correctly renders correctly when day is '18', month is '10', di exports[`renders correctly renders correctly when day is '18', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -80419,6 +78700,7 @@ exports[`renders correctly renders correctly when day is '18', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -80457,7 +78739,7 @@ exports[`renders correctly renders correctly when day is '18', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -80477,21 +78759,18 @@ exports[`renders correctly renders correctly when day is '18', month is '10', di exports[`renders correctly renders correctly when day is '18', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -80513,7 +78792,8 @@ exports[`renders correctly renders correctly when day is '18', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -80528,7 +78808,7 @@ exports[`renders correctly renders correctly when day is '18', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -80569,21 +78849,18 @@ exports[`renders correctly renders correctly when day is '18', month is '11', di exports[`renders correctly renders correctly when day is '18', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -80605,7 +78882,8 @@ exports[`renders correctly renders correctly when day is '18', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -80620,7 +78898,7 @@ exports[`renders correctly renders correctly when day is '18', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -80661,21 +78939,18 @@ exports[`renders correctly renders correctly when day is '18', month is '11', di exports[`renders correctly renders correctly when day is '18', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -80697,6 +78972,7 @@ exports[`renders correctly renders correctly when day is '18', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -80733,7 +79009,7 @@ exports[`renders correctly renders correctly when day is '18', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -80753,21 +79029,18 @@ exports[`renders correctly renders correctly when day is '18', month is '11', di exports[`renders correctly renders correctly when day is '18', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -80789,6 +79062,7 @@ exports[`renders correctly renders correctly when day is '18', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -80825,7 +79099,7 @@ exports[`renders correctly renders correctly when day is '18', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -80845,21 +79119,18 @@ exports[`renders correctly renders correctly when day is '18', month is '11', di exports[`renders correctly renders correctly when day is '18', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -80881,7 +79152,8 @@ exports[`renders correctly renders correctly when day is '18', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -80896,7 +79168,7 @@ exports[`renders correctly renders correctly when day is '18', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -80937,21 +79209,18 @@ exports[`renders correctly renders correctly when day is '18', month is '12', di exports[`renders correctly renders correctly when day is '18', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -80973,7 +79242,8 @@ exports[`renders correctly renders correctly when day is '18', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -80988,7 +79258,7 @@ exports[`renders correctly renders correctly when day is '18', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -81029,21 +79299,18 @@ exports[`renders correctly renders correctly when day is '18', month is '12', di exports[`renders correctly renders correctly when day is '18', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -81065,6 +79332,7 @@ exports[`renders correctly renders correctly when day is '18', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -81101,7 +79369,7 @@ exports[`renders correctly renders correctly when day is '18', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -81121,21 +79389,18 @@ exports[`renders correctly renders correctly when day is '18', month is '12', di exports[`renders correctly renders correctly when day is '18', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -81157,6 +79422,7 @@ exports[`renders correctly renders correctly when day is '18', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -81193,7 +79459,7 @@ exports[`renders correctly renders correctly when day is '18', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -81213,21 +79479,18 @@ exports[`renders correctly renders correctly when day is '18', month is '12', di exports[`renders correctly renders correctly when day is '19', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -81249,7 +79512,8 @@ exports[`renders correctly renders correctly when day is '19', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -81266,7 +79530,7 @@ exports[`renders correctly renders correctly when day is '19', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -81307,21 +79571,18 @@ exports[`renders correctly renders correctly when day is '19', month is '1', dis exports[`renders correctly renders correctly when day is '19', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -81343,7 +79604,8 @@ exports[`renders correctly renders correctly when day is '19', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -81360,7 +79622,7 @@ exports[`renders correctly renders correctly when day is '19', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -81401,21 +79663,18 @@ exports[`renders correctly renders correctly when day is '19', month is '1', dis exports[`renders correctly renders correctly when day is '19', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -81437,6 +79696,7 @@ exports[`renders correctly renders correctly when day is '19', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -81475,7 +79735,7 @@ exports[`renders correctly renders correctly when day is '19', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -81495,21 +79755,18 @@ exports[`renders correctly renders correctly when day is '19', month is '1', dis exports[`renders correctly renders correctly when day is '19', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -81531,6 +79788,7 @@ exports[`renders correctly renders correctly when day is '19', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -81569,7 +79827,7 @@ exports[`renders correctly renders correctly when day is '19', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -81589,21 +79847,18 @@ exports[`renders correctly renders correctly when day is '19', month is '1', dis exports[`renders correctly renders correctly when day is '19', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -81625,7 +79880,8 @@ exports[`renders correctly renders correctly when day is '19', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -81642,7 +79898,7 @@ exports[`renders correctly renders correctly when day is '19', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -81683,21 +79939,18 @@ exports[`renders correctly renders correctly when day is '19', month is '2', dis exports[`renders correctly renders correctly when day is '19', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -81719,7 +79972,8 @@ exports[`renders correctly renders correctly when day is '19', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -81736,7 +79990,7 @@ exports[`renders correctly renders correctly when day is '19', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -81777,21 +80031,18 @@ exports[`renders correctly renders correctly when day is '19', month is '2', dis exports[`renders correctly renders correctly when day is '19', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -81813,6 +80064,7 @@ exports[`renders correctly renders correctly when day is '19', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -81851,7 +80103,7 @@ exports[`renders correctly renders correctly when day is '19', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -81871,21 +80123,18 @@ exports[`renders correctly renders correctly when day is '19', month is '2', dis exports[`renders correctly renders correctly when day is '19', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -81907,6 +80156,7 @@ exports[`renders correctly renders correctly when day is '19', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -81945,7 +80195,7 @@ exports[`renders correctly renders correctly when day is '19', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -81965,21 +80215,18 @@ exports[`renders correctly renders correctly when day is '19', month is '2', dis exports[`renders correctly renders correctly when day is '19', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -82001,7 +80248,8 @@ exports[`renders correctly renders correctly when day is '19', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -82018,7 +80266,7 @@ exports[`renders correctly renders correctly when day is '19', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -82059,21 +80307,18 @@ exports[`renders correctly renders correctly when day is '19', month is '3', dis exports[`renders correctly renders correctly when day is '19', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -82095,7 +80340,8 @@ exports[`renders correctly renders correctly when day is '19', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -82112,7 +80358,7 @@ exports[`renders correctly renders correctly when day is '19', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -82153,21 +80399,18 @@ exports[`renders correctly renders correctly when day is '19', month is '3', dis exports[`renders correctly renders correctly when day is '19', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -82189,6 +80432,7 @@ exports[`renders correctly renders correctly when day is '19', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -82227,7 +80471,7 @@ exports[`renders correctly renders correctly when day is '19', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -82247,21 +80491,18 @@ exports[`renders correctly renders correctly when day is '19', month is '3', dis exports[`renders correctly renders correctly when day is '19', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -82283,6 +80524,7 @@ exports[`renders correctly renders correctly when day is '19', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -82321,7 +80563,7 @@ exports[`renders correctly renders correctly when day is '19', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -82341,21 +80583,18 @@ exports[`renders correctly renders correctly when day is '19', month is '3', dis exports[`renders correctly renders correctly when day is '19', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -82377,7 +80616,8 @@ exports[`renders correctly renders correctly when day is '19', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -82394,7 +80634,7 @@ exports[`renders correctly renders correctly when day is '19', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -82435,21 +80675,18 @@ exports[`renders correctly renders correctly when day is '19', month is '4', dis exports[`renders correctly renders correctly when day is '19', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -82471,7 +80708,8 @@ exports[`renders correctly renders correctly when day is '19', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -82488,7 +80726,7 @@ exports[`renders correctly renders correctly when day is '19', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -82529,21 +80767,18 @@ exports[`renders correctly renders correctly when day is '19', month is '4', dis exports[`renders correctly renders correctly when day is '19', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -82565,6 +80800,7 @@ exports[`renders correctly renders correctly when day is '19', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -82603,7 +80839,7 @@ exports[`renders correctly renders correctly when day is '19', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -82623,21 +80859,18 @@ exports[`renders correctly renders correctly when day is '19', month is '4', dis exports[`renders correctly renders correctly when day is '19', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -82659,6 +80892,7 @@ exports[`renders correctly renders correctly when day is '19', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -82697,7 +80931,7 @@ exports[`renders correctly renders correctly when day is '19', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -82717,21 +80951,18 @@ exports[`renders correctly renders correctly when day is '19', month is '4', dis exports[`renders correctly renders correctly when day is '19', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -82753,7 +80984,8 @@ exports[`renders correctly renders correctly when day is '19', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -82770,7 +81002,7 @@ exports[`renders correctly renders correctly when day is '19', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -82811,21 +81043,18 @@ exports[`renders correctly renders correctly when day is '19', month is '5', dis exports[`renders correctly renders correctly when day is '19', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -82847,7 +81076,8 @@ exports[`renders correctly renders correctly when day is '19', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -82864,7 +81094,7 @@ exports[`renders correctly renders correctly when day is '19', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -82905,21 +81135,18 @@ exports[`renders correctly renders correctly when day is '19', month is '5', dis exports[`renders correctly renders correctly when day is '19', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -82941,6 +81168,7 @@ exports[`renders correctly renders correctly when day is '19', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -82979,7 +81207,7 @@ exports[`renders correctly renders correctly when day is '19', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -82999,21 +81227,18 @@ exports[`renders correctly renders correctly when day is '19', month is '5', dis exports[`renders correctly renders correctly when day is '19', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -83035,6 +81260,7 @@ exports[`renders correctly renders correctly when day is '19', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -83073,7 +81299,7 @@ exports[`renders correctly renders correctly when day is '19', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -83093,21 +81319,18 @@ exports[`renders correctly renders correctly when day is '19', month is '5', dis exports[`renders correctly renders correctly when day is '19', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -83129,7 +81352,8 @@ exports[`renders correctly renders correctly when day is '19', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -83146,7 +81370,7 @@ exports[`renders correctly renders correctly when day is '19', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -83187,21 +81411,18 @@ exports[`renders correctly renders correctly when day is '19', month is '6', dis exports[`renders correctly renders correctly when day is '19', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -83223,7 +81444,8 @@ exports[`renders correctly renders correctly when day is '19', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -83240,7 +81462,7 @@ exports[`renders correctly renders correctly when day is '19', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -83281,21 +81503,18 @@ exports[`renders correctly renders correctly when day is '19', month is '6', dis exports[`renders correctly renders correctly when day is '19', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -83317,6 +81536,7 @@ exports[`renders correctly renders correctly when day is '19', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -83355,7 +81575,7 @@ exports[`renders correctly renders correctly when day is '19', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -83375,21 +81595,18 @@ exports[`renders correctly renders correctly when day is '19', month is '6', dis exports[`renders correctly renders correctly when day is '19', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -83411,6 +81628,7 @@ exports[`renders correctly renders correctly when day is '19', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -83449,7 +81667,7 @@ exports[`renders correctly renders correctly when day is '19', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -83469,21 +81687,18 @@ exports[`renders correctly renders correctly when day is '19', month is '6', dis exports[`renders correctly renders correctly when day is '19', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -83505,7 +81720,8 @@ exports[`renders correctly renders correctly when day is '19', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -83522,7 +81738,7 @@ exports[`renders correctly renders correctly when day is '19', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -83563,21 +81779,18 @@ exports[`renders correctly renders correctly when day is '19', month is '7', dis exports[`renders correctly renders correctly when day is '19', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -83599,7 +81812,8 @@ exports[`renders correctly renders correctly when day is '19', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -83616,7 +81830,7 @@ exports[`renders correctly renders correctly when day is '19', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -83657,21 +81871,18 @@ exports[`renders correctly renders correctly when day is '19', month is '7', dis exports[`renders correctly renders correctly when day is '19', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -83693,6 +81904,7 @@ exports[`renders correctly renders correctly when day is '19', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -83731,7 +81943,7 @@ exports[`renders correctly renders correctly when day is '19', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -83751,21 +81963,18 @@ exports[`renders correctly renders correctly when day is '19', month is '7', dis exports[`renders correctly renders correctly when day is '19', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -83787,6 +81996,7 @@ exports[`renders correctly renders correctly when day is '19', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -83825,7 +82035,7 @@ exports[`renders correctly renders correctly when day is '19', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -83845,21 +82055,18 @@ exports[`renders correctly renders correctly when day is '19', month is '7', dis exports[`renders correctly renders correctly when day is '19', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -83881,7 +82088,8 @@ exports[`renders correctly renders correctly when day is '19', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -83898,7 +82106,7 @@ exports[`renders correctly renders correctly when day is '19', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -83939,21 +82147,18 @@ exports[`renders correctly renders correctly when day is '19', month is '8', dis exports[`renders correctly renders correctly when day is '19', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -83975,7 +82180,8 @@ exports[`renders correctly renders correctly when day is '19', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -83992,7 +82198,7 @@ exports[`renders correctly renders correctly when day is '19', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -84033,21 +82239,18 @@ exports[`renders correctly renders correctly when day is '19', month is '8', dis exports[`renders correctly renders correctly when day is '19', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -84069,6 +82272,7 @@ exports[`renders correctly renders correctly when day is '19', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -84107,7 +82311,7 @@ exports[`renders correctly renders correctly when day is '19', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -84127,21 +82331,18 @@ exports[`renders correctly renders correctly when day is '19', month is '8', dis exports[`renders correctly renders correctly when day is '19', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -84163,6 +82364,7 @@ exports[`renders correctly renders correctly when day is '19', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -84201,7 +82403,7 @@ exports[`renders correctly renders correctly when day is '19', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -84221,21 +82423,18 @@ exports[`renders correctly renders correctly when day is '19', month is '8', dis exports[`renders correctly renders correctly when day is '19', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -84257,7 +82456,8 @@ exports[`renders correctly renders correctly when day is '19', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -84274,7 +82474,7 @@ exports[`renders correctly renders correctly when day is '19', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -84315,21 +82515,18 @@ exports[`renders correctly renders correctly when day is '19', month is '9', dis exports[`renders correctly renders correctly when day is '19', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -84351,7 +82548,8 @@ exports[`renders correctly renders correctly when day is '19', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -84368,7 +82566,7 @@ exports[`renders correctly renders correctly when day is '19', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -84409,21 +82607,18 @@ exports[`renders correctly renders correctly when day is '19', month is '9', dis exports[`renders correctly renders correctly when day is '19', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -84445,6 +82640,7 @@ exports[`renders correctly renders correctly when day is '19', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -84483,7 +82679,7 @@ exports[`renders correctly renders correctly when day is '19', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -84503,21 +82699,18 @@ exports[`renders correctly renders correctly when day is '19', month is '9', dis exports[`renders correctly renders correctly when day is '19', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -84539,6 +82732,7 @@ exports[`renders correctly renders correctly when day is '19', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -84577,7 +82771,7 @@ exports[`renders correctly renders correctly when day is '19', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -84597,21 +82791,18 @@ exports[`renders correctly renders correctly when day is '19', month is '9', dis exports[`renders correctly renders correctly when day is '19', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -84633,7 +82824,8 @@ exports[`renders correctly renders correctly when day is '19', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -84650,7 +82842,7 @@ exports[`renders correctly renders correctly when day is '19', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -84691,21 +82883,18 @@ exports[`renders correctly renders correctly when day is '19', month is '10', di exports[`renders correctly renders correctly when day is '19', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -84727,7 +82916,8 @@ exports[`renders correctly renders correctly when day is '19', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -84744,7 +82934,7 @@ exports[`renders correctly renders correctly when day is '19', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -84785,21 +82975,18 @@ exports[`renders correctly renders correctly when day is '19', month is '10', di exports[`renders correctly renders correctly when day is '19', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -84821,6 +83008,7 @@ exports[`renders correctly renders correctly when day is '19', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -84859,7 +83047,7 @@ exports[`renders correctly renders correctly when day is '19', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -84879,21 +83067,18 @@ exports[`renders correctly renders correctly when day is '19', month is '10', di exports[`renders correctly renders correctly when day is '19', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -84915,6 +83100,7 @@ exports[`renders correctly renders correctly when day is '19', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -84953,7 +83139,7 @@ exports[`renders correctly renders correctly when day is '19', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -84973,21 +83159,18 @@ exports[`renders correctly renders correctly when day is '19', month is '10', di exports[`renders correctly renders correctly when day is '19', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -85009,7 +83192,8 @@ exports[`renders correctly renders correctly when day is '19', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -85024,7 +83208,7 @@ exports[`renders correctly renders correctly when day is '19', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -85065,21 +83249,18 @@ exports[`renders correctly renders correctly when day is '19', month is '11', di exports[`renders correctly renders correctly when day is '19', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -85101,7 +83282,8 @@ exports[`renders correctly renders correctly when day is '19', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -85116,7 +83298,7 @@ exports[`renders correctly renders correctly when day is '19', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -85157,21 +83339,18 @@ exports[`renders correctly renders correctly when day is '19', month is '11', di exports[`renders correctly renders correctly when day is '19', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -85193,6 +83372,7 @@ exports[`renders correctly renders correctly when day is '19', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -85229,7 +83409,7 @@ exports[`renders correctly renders correctly when day is '19', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -85249,21 +83429,18 @@ exports[`renders correctly renders correctly when day is '19', month is '11', di exports[`renders correctly renders correctly when day is '19', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -85285,6 +83462,7 @@ exports[`renders correctly renders correctly when day is '19', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -85321,7 +83499,7 @@ exports[`renders correctly renders correctly when day is '19', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -85341,21 +83519,18 @@ exports[`renders correctly renders correctly when day is '19', month is '11', di exports[`renders correctly renders correctly when day is '19', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -85377,7 +83552,8 @@ exports[`renders correctly renders correctly when day is '19', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -85392,7 +83568,7 @@ exports[`renders correctly renders correctly when day is '19', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -85433,21 +83609,18 @@ exports[`renders correctly renders correctly when day is '19', month is '12', di exports[`renders correctly renders correctly when day is '19', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -85469,7 +83642,8 @@ exports[`renders correctly renders correctly when day is '19', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -85484,7 +83658,7 @@ exports[`renders correctly renders correctly when day is '19', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -85525,21 +83699,18 @@ exports[`renders correctly renders correctly when day is '19', month is '12', di exports[`renders correctly renders correctly when day is '19', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -85561,6 +83732,7 @@ exports[`renders correctly renders correctly when day is '19', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -85597,7 +83769,7 @@ exports[`renders correctly renders correctly when day is '19', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -85617,21 +83789,18 @@ exports[`renders correctly renders correctly when day is '19', month is '12', di exports[`renders correctly renders correctly when day is '19', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -85653,6 +83822,7 @@ exports[`renders correctly renders correctly when day is '19', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -85689,7 +83859,7 @@ exports[`renders correctly renders correctly when day is '19', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -85709,21 +83879,18 @@ exports[`renders correctly renders correctly when day is '19', month is '12', di exports[`renders correctly renders correctly when day is '20', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -85745,7 +83912,8 @@ exports[`renders correctly renders correctly when day is '20', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -85762,7 +83930,7 @@ exports[`renders correctly renders correctly when day is '20', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -85803,21 +83971,18 @@ exports[`renders correctly renders correctly when day is '20', month is '1', dis exports[`renders correctly renders correctly when day is '20', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -85839,7 +84004,8 @@ exports[`renders correctly renders correctly when day is '20', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -85856,7 +84022,7 @@ exports[`renders correctly renders correctly when day is '20', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -85897,21 +84063,18 @@ exports[`renders correctly renders correctly when day is '20', month is '1', dis exports[`renders correctly renders correctly when day is '20', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -85933,6 +84096,7 @@ exports[`renders correctly renders correctly when day is '20', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -85971,7 +84135,7 @@ exports[`renders correctly renders correctly when day is '20', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -85991,21 +84155,18 @@ exports[`renders correctly renders correctly when day is '20', month is '1', dis exports[`renders correctly renders correctly when day is '20', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -86027,6 +84188,7 @@ exports[`renders correctly renders correctly when day is '20', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -86065,7 +84227,7 @@ exports[`renders correctly renders correctly when day is '20', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -86085,21 +84247,18 @@ exports[`renders correctly renders correctly when day is '20', month is '1', dis exports[`renders correctly renders correctly when day is '20', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -86121,7 +84280,8 @@ exports[`renders correctly renders correctly when day is '20', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -86138,7 +84298,7 @@ exports[`renders correctly renders correctly when day is '20', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -86179,21 +84339,18 @@ exports[`renders correctly renders correctly when day is '20', month is '2', dis exports[`renders correctly renders correctly when day is '20', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -86215,7 +84372,8 @@ exports[`renders correctly renders correctly when day is '20', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -86232,7 +84390,7 @@ exports[`renders correctly renders correctly when day is '20', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -86273,21 +84431,18 @@ exports[`renders correctly renders correctly when day is '20', month is '2', dis exports[`renders correctly renders correctly when day is '20', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -86309,6 +84464,7 @@ exports[`renders correctly renders correctly when day is '20', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -86347,7 +84503,7 @@ exports[`renders correctly renders correctly when day is '20', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -86367,21 +84523,18 @@ exports[`renders correctly renders correctly when day is '20', month is '2', dis exports[`renders correctly renders correctly when day is '20', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -86403,6 +84556,7 @@ exports[`renders correctly renders correctly when day is '20', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -86441,7 +84595,7 @@ exports[`renders correctly renders correctly when day is '20', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -86461,21 +84615,18 @@ exports[`renders correctly renders correctly when day is '20', month is '2', dis exports[`renders correctly renders correctly when day is '20', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -86497,7 +84648,8 @@ exports[`renders correctly renders correctly when day is '20', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -86514,7 +84666,7 @@ exports[`renders correctly renders correctly when day is '20', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -86555,21 +84707,18 @@ exports[`renders correctly renders correctly when day is '20', month is '3', dis exports[`renders correctly renders correctly when day is '20', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -86591,7 +84740,8 @@ exports[`renders correctly renders correctly when day is '20', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -86608,7 +84758,7 @@ exports[`renders correctly renders correctly when day is '20', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -86649,21 +84799,18 @@ exports[`renders correctly renders correctly when day is '20', month is '3', dis exports[`renders correctly renders correctly when day is '20', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -86685,6 +84832,7 @@ exports[`renders correctly renders correctly when day is '20', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -86723,7 +84871,7 @@ exports[`renders correctly renders correctly when day is '20', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -86743,21 +84891,18 @@ exports[`renders correctly renders correctly when day is '20', month is '3', dis exports[`renders correctly renders correctly when day is '20', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -86779,6 +84924,7 @@ exports[`renders correctly renders correctly when day is '20', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -86817,7 +84963,7 @@ exports[`renders correctly renders correctly when day is '20', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -86837,21 +84983,18 @@ exports[`renders correctly renders correctly when day is '20', month is '3', dis exports[`renders correctly renders correctly when day is '20', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -86873,7 +85016,8 @@ exports[`renders correctly renders correctly when day is '20', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -86890,7 +85034,7 @@ exports[`renders correctly renders correctly when day is '20', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -86931,21 +85075,18 @@ exports[`renders correctly renders correctly when day is '20', month is '4', dis exports[`renders correctly renders correctly when day is '20', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -86967,7 +85108,8 @@ exports[`renders correctly renders correctly when day is '20', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -86984,7 +85126,7 @@ exports[`renders correctly renders correctly when day is '20', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -87025,21 +85167,18 @@ exports[`renders correctly renders correctly when day is '20', month is '4', dis exports[`renders correctly renders correctly when day is '20', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -87061,6 +85200,7 @@ exports[`renders correctly renders correctly when day is '20', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -87099,7 +85239,7 @@ exports[`renders correctly renders correctly when day is '20', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -87119,21 +85259,18 @@ exports[`renders correctly renders correctly when day is '20', month is '4', dis exports[`renders correctly renders correctly when day is '20', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -87155,6 +85292,7 @@ exports[`renders correctly renders correctly when day is '20', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -87193,7 +85331,7 @@ exports[`renders correctly renders correctly when day is '20', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -87213,21 +85351,18 @@ exports[`renders correctly renders correctly when day is '20', month is '4', dis exports[`renders correctly renders correctly when day is '20', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -87249,7 +85384,8 @@ exports[`renders correctly renders correctly when day is '20', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -87266,7 +85402,7 @@ exports[`renders correctly renders correctly when day is '20', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -87307,21 +85443,18 @@ exports[`renders correctly renders correctly when day is '20', month is '5', dis exports[`renders correctly renders correctly when day is '20', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -87343,7 +85476,8 @@ exports[`renders correctly renders correctly when day is '20', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -87360,7 +85494,7 @@ exports[`renders correctly renders correctly when day is '20', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -87401,21 +85535,18 @@ exports[`renders correctly renders correctly when day is '20', month is '5', dis exports[`renders correctly renders correctly when day is '20', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -87437,6 +85568,7 @@ exports[`renders correctly renders correctly when day is '20', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -87475,7 +85607,7 @@ exports[`renders correctly renders correctly when day is '20', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -87495,21 +85627,18 @@ exports[`renders correctly renders correctly when day is '20', month is '5', dis exports[`renders correctly renders correctly when day is '20', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -87531,6 +85660,7 @@ exports[`renders correctly renders correctly when day is '20', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -87569,7 +85699,7 @@ exports[`renders correctly renders correctly when day is '20', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -87589,21 +85719,18 @@ exports[`renders correctly renders correctly when day is '20', month is '5', dis exports[`renders correctly renders correctly when day is '20', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -87625,7 +85752,8 @@ exports[`renders correctly renders correctly when day is '20', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -87642,7 +85770,7 @@ exports[`renders correctly renders correctly when day is '20', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -87683,21 +85811,18 @@ exports[`renders correctly renders correctly when day is '20', month is '6', dis exports[`renders correctly renders correctly when day is '20', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -87719,7 +85844,8 @@ exports[`renders correctly renders correctly when day is '20', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -87736,7 +85862,7 @@ exports[`renders correctly renders correctly when day is '20', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -87777,21 +85903,18 @@ exports[`renders correctly renders correctly when day is '20', month is '6', dis exports[`renders correctly renders correctly when day is '20', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -87813,6 +85936,7 @@ exports[`renders correctly renders correctly when day is '20', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -87851,7 +85975,7 @@ exports[`renders correctly renders correctly when day is '20', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -87871,21 +85995,18 @@ exports[`renders correctly renders correctly when day is '20', month is '6', dis exports[`renders correctly renders correctly when day is '20', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -87907,6 +86028,7 @@ exports[`renders correctly renders correctly when day is '20', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -87945,7 +86067,7 @@ exports[`renders correctly renders correctly when day is '20', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -87965,21 +86087,18 @@ exports[`renders correctly renders correctly when day is '20', month is '6', dis exports[`renders correctly renders correctly when day is '20', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -88001,7 +86120,8 @@ exports[`renders correctly renders correctly when day is '20', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -88018,7 +86138,7 @@ exports[`renders correctly renders correctly when day is '20', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -88059,21 +86179,18 @@ exports[`renders correctly renders correctly when day is '20', month is '7', dis exports[`renders correctly renders correctly when day is '20', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -88095,7 +86212,8 @@ exports[`renders correctly renders correctly when day is '20', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -88112,7 +86230,7 @@ exports[`renders correctly renders correctly when day is '20', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -88153,21 +86271,18 @@ exports[`renders correctly renders correctly when day is '20', month is '7', dis exports[`renders correctly renders correctly when day is '20', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -88189,6 +86304,7 @@ exports[`renders correctly renders correctly when day is '20', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -88227,7 +86343,7 @@ exports[`renders correctly renders correctly when day is '20', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -88247,21 +86363,18 @@ exports[`renders correctly renders correctly when day is '20', month is '7', dis exports[`renders correctly renders correctly when day is '20', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -88283,6 +86396,7 @@ exports[`renders correctly renders correctly when day is '20', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -88321,7 +86435,7 @@ exports[`renders correctly renders correctly when day is '20', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -88341,21 +86455,18 @@ exports[`renders correctly renders correctly when day is '20', month is '7', dis exports[`renders correctly renders correctly when day is '20', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -88377,7 +86488,8 @@ exports[`renders correctly renders correctly when day is '20', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -88394,7 +86506,7 @@ exports[`renders correctly renders correctly when day is '20', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -88435,21 +86547,18 @@ exports[`renders correctly renders correctly when day is '20', month is '8', dis exports[`renders correctly renders correctly when day is '20', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -88471,7 +86580,8 @@ exports[`renders correctly renders correctly when day is '20', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -88488,7 +86598,7 @@ exports[`renders correctly renders correctly when day is '20', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -88529,21 +86639,18 @@ exports[`renders correctly renders correctly when day is '20', month is '8', dis exports[`renders correctly renders correctly when day is '20', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -88565,6 +86672,7 @@ exports[`renders correctly renders correctly when day is '20', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -88603,7 +86711,7 @@ exports[`renders correctly renders correctly when day is '20', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -88623,21 +86731,18 @@ exports[`renders correctly renders correctly when day is '20', month is '8', dis exports[`renders correctly renders correctly when day is '20', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -88659,6 +86764,7 @@ exports[`renders correctly renders correctly when day is '20', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -88697,7 +86803,7 @@ exports[`renders correctly renders correctly when day is '20', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -88717,21 +86823,18 @@ exports[`renders correctly renders correctly when day is '20', month is '8', dis exports[`renders correctly renders correctly when day is '20', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -88753,7 +86856,8 @@ exports[`renders correctly renders correctly when day is '20', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -88770,7 +86874,7 @@ exports[`renders correctly renders correctly when day is '20', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -88811,21 +86915,18 @@ exports[`renders correctly renders correctly when day is '20', month is '9', dis exports[`renders correctly renders correctly when day is '20', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -88847,7 +86948,8 @@ exports[`renders correctly renders correctly when day is '20', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -88864,7 +86966,7 @@ exports[`renders correctly renders correctly when day is '20', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -88905,21 +87007,18 @@ exports[`renders correctly renders correctly when day is '20', month is '9', dis exports[`renders correctly renders correctly when day is '20', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -88941,6 +87040,7 @@ exports[`renders correctly renders correctly when day is '20', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -88979,7 +87079,7 @@ exports[`renders correctly renders correctly when day is '20', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -88999,21 +87099,18 @@ exports[`renders correctly renders correctly when day is '20', month is '9', dis exports[`renders correctly renders correctly when day is '20', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -89035,6 +87132,7 @@ exports[`renders correctly renders correctly when day is '20', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -89073,7 +87171,7 @@ exports[`renders correctly renders correctly when day is '20', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -89093,21 +87191,18 @@ exports[`renders correctly renders correctly when day is '20', month is '9', dis exports[`renders correctly renders correctly when day is '20', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -89129,7 +87224,8 @@ exports[`renders correctly renders correctly when day is '20', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -89146,7 +87242,7 @@ exports[`renders correctly renders correctly when day is '20', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -89187,21 +87283,18 @@ exports[`renders correctly renders correctly when day is '20', month is '10', di exports[`renders correctly renders correctly when day is '20', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -89223,7 +87316,8 @@ exports[`renders correctly renders correctly when day is '20', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -89240,7 +87334,7 @@ exports[`renders correctly renders correctly when day is '20', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -89281,21 +87375,18 @@ exports[`renders correctly renders correctly when day is '20', month is '10', di exports[`renders correctly renders correctly when day is '20', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -89317,6 +87408,7 @@ exports[`renders correctly renders correctly when day is '20', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -89355,7 +87447,7 @@ exports[`renders correctly renders correctly when day is '20', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -89375,21 +87467,18 @@ exports[`renders correctly renders correctly when day is '20', month is '10', di exports[`renders correctly renders correctly when day is '20', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -89411,6 +87500,7 @@ exports[`renders correctly renders correctly when day is '20', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -89449,7 +87539,7 @@ exports[`renders correctly renders correctly when day is '20', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -89469,21 +87559,18 @@ exports[`renders correctly renders correctly when day is '20', month is '10', di exports[`renders correctly renders correctly when day is '20', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -89505,7 +87592,8 @@ exports[`renders correctly renders correctly when day is '20', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -89520,7 +87608,7 @@ exports[`renders correctly renders correctly when day is '20', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -89561,21 +87649,18 @@ exports[`renders correctly renders correctly when day is '20', month is '11', di exports[`renders correctly renders correctly when day is '20', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -89597,7 +87682,8 @@ exports[`renders correctly renders correctly when day is '20', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -89612,7 +87698,7 @@ exports[`renders correctly renders correctly when day is '20', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -89653,21 +87739,18 @@ exports[`renders correctly renders correctly when day is '20', month is '11', di exports[`renders correctly renders correctly when day is '20', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -89689,6 +87772,7 @@ exports[`renders correctly renders correctly when day is '20', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -89725,7 +87809,7 @@ exports[`renders correctly renders correctly when day is '20', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -89745,21 +87829,18 @@ exports[`renders correctly renders correctly when day is '20', month is '11', di exports[`renders correctly renders correctly when day is '20', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -89781,6 +87862,7 @@ exports[`renders correctly renders correctly when day is '20', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -89817,7 +87899,7 @@ exports[`renders correctly renders correctly when day is '20', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -89837,21 +87919,18 @@ exports[`renders correctly renders correctly when day is '20', month is '11', di exports[`renders correctly renders correctly when day is '20', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -89873,7 +87952,8 @@ exports[`renders correctly renders correctly when day is '20', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -89888,7 +87968,7 @@ exports[`renders correctly renders correctly when day is '20', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -89929,21 +88009,18 @@ exports[`renders correctly renders correctly when day is '20', month is '12', di exports[`renders correctly renders correctly when day is '20', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -89965,7 +88042,8 @@ exports[`renders correctly renders correctly when day is '20', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -89980,7 +88058,7 @@ exports[`renders correctly renders correctly when day is '20', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -90021,21 +88099,18 @@ exports[`renders correctly renders correctly when day is '20', month is '12', di exports[`renders correctly renders correctly when day is '20', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -90057,6 +88132,7 @@ exports[`renders correctly renders correctly when day is '20', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -90093,7 +88169,7 @@ exports[`renders correctly renders correctly when day is '20', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -90113,21 +88189,18 @@ exports[`renders correctly renders correctly when day is '20', month is '12', di exports[`renders correctly renders correctly when day is '20', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -90149,6 +88222,7 @@ exports[`renders correctly renders correctly when day is '20', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -90185,7 +88259,7 @@ exports[`renders correctly renders correctly when day is '20', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -90205,21 +88279,18 @@ exports[`renders correctly renders correctly when day is '20', month is '12', di exports[`renders correctly renders correctly when day is '21', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -90241,7 +88312,8 @@ exports[`renders correctly renders correctly when day is '21', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -90258,7 +88330,7 @@ exports[`renders correctly renders correctly when day is '21', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -90299,21 +88371,18 @@ exports[`renders correctly renders correctly when day is '21', month is '1', dis exports[`renders correctly renders correctly when day is '21', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -90335,7 +88404,8 @@ exports[`renders correctly renders correctly when day is '21', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -90352,7 +88422,7 @@ exports[`renders correctly renders correctly when day is '21', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -90393,21 +88463,18 @@ exports[`renders correctly renders correctly when day is '21', month is '1', dis exports[`renders correctly renders correctly when day is '21', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -90429,6 +88496,7 @@ exports[`renders correctly renders correctly when day is '21', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -90467,7 +88535,7 @@ exports[`renders correctly renders correctly when day is '21', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -90487,21 +88555,18 @@ exports[`renders correctly renders correctly when day is '21', month is '1', dis exports[`renders correctly renders correctly when day is '21', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -90523,6 +88588,7 @@ exports[`renders correctly renders correctly when day is '21', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -90561,7 +88627,7 @@ exports[`renders correctly renders correctly when day is '21', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -90581,21 +88647,18 @@ exports[`renders correctly renders correctly when day is '21', month is '1', dis exports[`renders correctly renders correctly when day is '21', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -90617,7 +88680,8 @@ exports[`renders correctly renders correctly when day is '21', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -90634,7 +88698,7 @@ exports[`renders correctly renders correctly when day is '21', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -90675,21 +88739,18 @@ exports[`renders correctly renders correctly when day is '21', month is '2', dis exports[`renders correctly renders correctly when day is '21', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -90711,7 +88772,8 @@ exports[`renders correctly renders correctly when day is '21', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -90728,7 +88790,7 @@ exports[`renders correctly renders correctly when day is '21', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -90769,21 +88831,18 @@ exports[`renders correctly renders correctly when day is '21', month is '2', dis exports[`renders correctly renders correctly when day is '21', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -90805,6 +88864,7 @@ exports[`renders correctly renders correctly when day is '21', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -90843,7 +88903,7 @@ exports[`renders correctly renders correctly when day is '21', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -90863,21 +88923,18 @@ exports[`renders correctly renders correctly when day is '21', month is '2', dis exports[`renders correctly renders correctly when day is '21', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -90899,6 +88956,7 @@ exports[`renders correctly renders correctly when day is '21', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -90937,7 +88995,7 @@ exports[`renders correctly renders correctly when day is '21', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -90957,21 +89015,18 @@ exports[`renders correctly renders correctly when day is '21', month is '2', dis exports[`renders correctly renders correctly when day is '21', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -90993,7 +89048,8 @@ exports[`renders correctly renders correctly when day is '21', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -91010,7 +89066,7 @@ exports[`renders correctly renders correctly when day is '21', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -91051,21 +89107,18 @@ exports[`renders correctly renders correctly when day is '21', month is '3', dis exports[`renders correctly renders correctly when day is '21', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -91087,7 +89140,8 @@ exports[`renders correctly renders correctly when day is '21', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -91104,7 +89158,7 @@ exports[`renders correctly renders correctly when day is '21', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -91145,21 +89199,18 @@ exports[`renders correctly renders correctly when day is '21', month is '3', dis exports[`renders correctly renders correctly when day is '21', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -91181,6 +89232,7 @@ exports[`renders correctly renders correctly when day is '21', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -91219,7 +89271,7 @@ exports[`renders correctly renders correctly when day is '21', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -91239,21 +89291,18 @@ exports[`renders correctly renders correctly when day is '21', month is '3', dis exports[`renders correctly renders correctly when day is '21', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -91275,6 +89324,7 @@ exports[`renders correctly renders correctly when day is '21', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -91313,7 +89363,7 @@ exports[`renders correctly renders correctly when day is '21', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -91333,21 +89383,18 @@ exports[`renders correctly renders correctly when day is '21', month is '3', dis exports[`renders correctly renders correctly when day is '21', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -91369,7 +89416,8 @@ exports[`renders correctly renders correctly when day is '21', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -91386,7 +89434,7 @@ exports[`renders correctly renders correctly when day is '21', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -91427,21 +89475,18 @@ exports[`renders correctly renders correctly when day is '21', month is '4', dis exports[`renders correctly renders correctly when day is '21', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -91463,7 +89508,8 @@ exports[`renders correctly renders correctly when day is '21', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -91480,7 +89526,7 @@ exports[`renders correctly renders correctly when day is '21', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -91521,21 +89567,18 @@ exports[`renders correctly renders correctly when day is '21', month is '4', dis exports[`renders correctly renders correctly when day is '21', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -91557,6 +89600,7 @@ exports[`renders correctly renders correctly when day is '21', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -91595,7 +89639,7 @@ exports[`renders correctly renders correctly when day is '21', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -91615,21 +89659,18 @@ exports[`renders correctly renders correctly when day is '21', month is '4', dis exports[`renders correctly renders correctly when day is '21', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -91651,6 +89692,7 @@ exports[`renders correctly renders correctly when day is '21', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -91689,7 +89731,7 @@ exports[`renders correctly renders correctly when day is '21', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -91709,21 +89751,18 @@ exports[`renders correctly renders correctly when day is '21', month is '4', dis exports[`renders correctly renders correctly when day is '21', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -91745,7 +89784,8 @@ exports[`renders correctly renders correctly when day is '21', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -91762,7 +89802,7 @@ exports[`renders correctly renders correctly when day is '21', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -91803,21 +89843,18 @@ exports[`renders correctly renders correctly when day is '21', month is '5', dis exports[`renders correctly renders correctly when day is '21', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -91839,7 +89876,8 @@ exports[`renders correctly renders correctly when day is '21', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -91856,7 +89894,7 @@ exports[`renders correctly renders correctly when day is '21', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -91897,21 +89935,18 @@ exports[`renders correctly renders correctly when day is '21', month is '5', dis exports[`renders correctly renders correctly when day is '21', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -91933,6 +89968,7 @@ exports[`renders correctly renders correctly when day is '21', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -91971,7 +90007,7 @@ exports[`renders correctly renders correctly when day is '21', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -91991,21 +90027,18 @@ exports[`renders correctly renders correctly when day is '21', month is '5', dis exports[`renders correctly renders correctly when day is '21', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -92027,6 +90060,7 @@ exports[`renders correctly renders correctly when day is '21', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -92065,7 +90099,7 @@ exports[`renders correctly renders correctly when day is '21', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -92085,21 +90119,18 @@ exports[`renders correctly renders correctly when day is '21', month is '5', dis exports[`renders correctly renders correctly when day is '21', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -92121,7 +90152,8 @@ exports[`renders correctly renders correctly when day is '21', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -92138,7 +90170,7 @@ exports[`renders correctly renders correctly when day is '21', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -92179,21 +90211,18 @@ exports[`renders correctly renders correctly when day is '21', month is '6', dis exports[`renders correctly renders correctly when day is '21', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -92215,7 +90244,8 @@ exports[`renders correctly renders correctly when day is '21', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -92232,7 +90262,7 @@ exports[`renders correctly renders correctly when day is '21', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -92273,21 +90303,18 @@ exports[`renders correctly renders correctly when day is '21', month is '6', dis exports[`renders correctly renders correctly when day is '21', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -92309,6 +90336,7 @@ exports[`renders correctly renders correctly when day is '21', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -92347,7 +90375,7 @@ exports[`renders correctly renders correctly when day is '21', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -92367,21 +90395,18 @@ exports[`renders correctly renders correctly when day is '21', month is '6', dis exports[`renders correctly renders correctly when day is '21', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -92403,6 +90428,7 @@ exports[`renders correctly renders correctly when day is '21', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -92441,7 +90467,7 @@ exports[`renders correctly renders correctly when day is '21', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -92461,21 +90487,18 @@ exports[`renders correctly renders correctly when day is '21', month is '6', dis exports[`renders correctly renders correctly when day is '21', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -92497,7 +90520,8 @@ exports[`renders correctly renders correctly when day is '21', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -92514,7 +90538,7 @@ exports[`renders correctly renders correctly when day is '21', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -92555,21 +90579,18 @@ exports[`renders correctly renders correctly when day is '21', month is '7', dis exports[`renders correctly renders correctly when day is '21', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -92591,7 +90612,8 @@ exports[`renders correctly renders correctly when day is '21', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -92608,7 +90630,7 @@ exports[`renders correctly renders correctly when day is '21', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -92649,115 +90671,18 @@ exports[`renders correctly renders correctly when day is '21', month is '7', dis exports[`renders correctly renders correctly when day is '21', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] - } -> - <View - style={ - { - "padding": 0, - } + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, } - testID="holi-calendar-icon" - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#ebebeb", - "fontFamily": "InstrumentSans-Medium", - "fontSize": 12, - "fontWeight": "500", - "lineHeight": 12, - "paddingBottom": 2, - "textAlign": "center", - "userSelect": "auto", - } - } - > - A - </Text> - <View - style={ - { - "alignItems": "center", - "backgroundColor": "#ebebeb", - "borderTopLeftRadius": 6, - "borderTopRightRadius": 6, - "display": "flex", - "justifyContent": "center", - "minHeight": 44, - "minWidth": 60, - } - } - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#787777", - "fontFamily": "InstrumentSans-Regular", - "fontSize": 28, - "fontWeight": "400", - "lineHeight": 22.4, - "paddingTop": 8, - "userSelect": "auto", - } - } - > - 21 - </Text> - </View> - </View> -</View> -`; - -exports[`renders correctly renders correctly when day is '21', month is '7', disabled is 'true', size is 'small' 1`] = ` -<View - style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] } > <View @@ -92779,6 +90704,99 @@ exports[`renders correctly renders correctly when day is '21', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", + "color": "#ebebeb", + "fontFamily": "InstrumentSans-Medium", + "fontSize": 12, + "fontWeight": "500", + "lineHeight": 12, + "paddingBottom": 2, + "textAlign": "center", + "userSelect": "auto", + } + } + > + A + </Text> + <View + style={ + { + "alignItems": "center", + "backgroundColor": "#ebebeb", + "borderTopLeftRadius": 6, + "borderTopRightRadius": 6, + "display": "flex", + "justifyContent": "center", + "minHeight": 44, + "minWidth": 60, + } + } + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "color": "#676565", + "fontFamily": "InstrumentSans-Regular", + "fontSize": 28, + "fontWeight": "400", + "lineHeight": 22.4, + "paddingTop": 8, + "userSelect": "auto", + } + } + > + 21 + </Text> + </View> + </View> +</View> +`; + +exports[`renders correctly renders correctly when day is '21', month is '7', disabled is 'true', size is 'small' 1`] = ` +<View + style={ + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } + } +> + <View + style={ + { + "padding": 0, + } + } + testID="holi-calendar-icon" + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -92817,7 +90835,7 @@ exports[`renders correctly renders correctly when day is '21', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -92837,21 +90855,18 @@ exports[`renders correctly renders correctly when day is '21', month is '7', dis exports[`renders correctly renders correctly when day is '21', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -92873,7 +90888,8 @@ exports[`renders correctly renders correctly when day is '21', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -92890,7 +90906,7 @@ exports[`renders correctly renders correctly when day is '21', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -92931,21 +90947,18 @@ exports[`renders correctly renders correctly when day is '21', month is '8', dis exports[`renders correctly renders correctly when day is '21', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -92967,7 +90980,8 @@ exports[`renders correctly renders correctly when day is '21', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -92984,7 +90998,7 @@ exports[`renders correctly renders correctly when day is '21', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -93025,21 +91039,18 @@ exports[`renders correctly renders correctly when day is '21', month is '8', dis exports[`renders correctly renders correctly when day is '21', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -93061,6 +91072,7 @@ exports[`renders correctly renders correctly when day is '21', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -93099,7 +91111,7 @@ exports[`renders correctly renders correctly when day is '21', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -93119,21 +91131,18 @@ exports[`renders correctly renders correctly when day is '21', month is '8', dis exports[`renders correctly renders correctly when day is '21', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -93155,6 +91164,7 @@ exports[`renders correctly renders correctly when day is '21', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -93193,7 +91203,7 @@ exports[`renders correctly renders correctly when day is '21', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -93213,21 +91223,18 @@ exports[`renders correctly renders correctly when day is '21', month is '8', dis exports[`renders correctly renders correctly when day is '21', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -93249,7 +91256,8 @@ exports[`renders correctly renders correctly when day is '21', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -93266,7 +91274,7 @@ exports[`renders correctly renders correctly when day is '21', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -93307,21 +91315,18 @@ exports[`renders correctly renders correctly when day is '21', month is '9', dis exports[`renders correctly renders correctly when day is '21', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -93343,7 +91348,8 @@ exports[`renders correctly renders correctly when day is '21', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -93360,7 +91366,7 @@ exports[`renders correctly renders correctly when day is '21', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -93401,21 +91407,18 @@ exports[`renders correctly renders correctly when day is '21', month is '9', dis exports[`renders correctly renders correctly when day is '21', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -93437,6 +91440,7 @@ exports[`renders correctly renders correctly when day is '21', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -93475,7 +91479,7 @@ exports[`renders correctly renders correctly when day is '21', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -93495,21 +91499,18 @@ exports[`renders correctly renders correctly when day is '21', month is '9', dis exports[`renders correctly renders correctly when day is '21', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -93531,6 +91532,7 @@ exports[`renders correctly renders correctly when day is '21', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -93569,7 +91571,7 @@ exports[`renders correctly renders correctly when day is '21', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -93589,21 +91591,18 @@ exports[`renders correctly renders correctly when day is '21', month is '9', dis exports[`renders correctly renders correctly when day is '21', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -93625,7 +91624,8 @@ exports[`renders correctly renders correctly when day is '21', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -93642,7 +91642,7 @@ exports[`renders correctly renders correctly when day is '21', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -93683,21 +91683,18 @@ exports[`renders correctly renders correctly when day is '21', month is '10', di exports[`renders correctly renders correctly when day is '21', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -93719,7 +91716,8 @@ exports[`renders correctly renders correctly when day is '21', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -93736,7 +91734,7 @@ exports[`renders correctly renders correctly when day is '21', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -93777,21 +91775,18 @@ exports[`renders correctly renders correctly when day is '21', month is '10', di exports[`renders correctly renders correctly when day is '21', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -93813,6 +91808,7 @@ exports[`renders correctly renders correctly when day is '21', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -93851,7 +91847,7 @@ exports[`renders correctly renders correctly when day is '21', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -93871,21 +91867,18 @@ exports[`renders correctly renders correctly when day is '21', month is '10', di exports[`renders correctly renders correctly when day is '21', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -93907,6 +91900,7 @@ exports[`renders correctly renders correctly when day is '21', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -93945,7 +91939,7 @@ exports[`renders correctly renders correctly when day is '21', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -93965,21 +91959,18 @@ exports[`renders correctly renders correctly when day is '21', month is '10', di exports[`renders correctly renders correctly when day is '21', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -94001,7 +91992,8 @@ exports[`renders correctly renders correctly when day is '21', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -94016,7 +92008,7 @@ exports[`renders correctly renders correctly when day is '21', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -94057,21 +92049,18 @@ exports[`renders correctly renders correctly when day is '21', month is '11', di exports[`renders correctly renders correctly when day is '21', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -94093,7 +92082,8 @@ exports[`renders correctly renders correctly when day is '21', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -94108,7 +92098,7 @@ exports[`renders correctly renders correctly when day is '21', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -94149,21 +92139,18 @@ exports[`renders correctly renders correctly when day is '21', month is '11', di exports[`renders correctly renders correctly when day is '21', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -94185,6 +92172,7 @@ exports[`renders correctly renders correctly when day is '21', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -94221,7 +92209,7 @@ exports[`renders correctly renders correctly when day is '21', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -94241,21 +92229,18 @@ exports[`renders correctly renders correctly when day is '21', month is '11', di exports[`renders correctly renders correctly when day is '21', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -94277,6 +92262,7 @@ exports[`renders correctly renders correctly when day is '21', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -94313,7 +92299,7 @@ exports[`renders correctly renders correctly when day is '21', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -94333,21 +92319,18 @@ exports[`renders correctly renders correctly when day is '21', month is '11', di exports[`renders correctly renders correctly when day is '21', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -94369,7 +92352,8 @@ exports[`renders correctly renders correctly when day is '21', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -94384,7 +92368,7 @@ exports[`renders correctly renders correctly when day is '21', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -94425,21 +92409,18 @@ exports[`renders correctly renders correctly when day is '21', month is '12', di exports[`renders correctly renders correctly when day is '21', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -94461,7 +92442,8 @@ exports[`renders correctly renders correctly when day is '21', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -94476,7 +92458,7 @@ exports[`renders correctly renders correctly when day is '21', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -94517,21 +92499,18 @@ exports[`renders correctly renders correctly when day is '21', month is '12', di exports[`renders correctly renders correctly when day is '21', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -94553,6 +92532,7 @@ exports[`renders correctly renders correctly when day is '21', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -94589,7 +92569,7 @@ exports[`renders correctly renders correctly when day is '21', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -94609,21 +92589,18 @@ exports[`renders correctly renders correctly when day is '21', month is '12', di exports[`renders correctly renders correctly when day is '21', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -94645,6 +92622,7 @@ exports[`renders correctly renders correctly when day is '21', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -94681,7 +92659,7 @@ exports[`renders correctly renders correctly when day is '21', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -94701,21 +92679,18 @@ exports[`renders correctly renders correctly when day is '21', month is '12', di exports[`renders correctly renders correctly when day is '22', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -94737,7 +92712,8 @@ exports[`renders correctly renders correctly when day is '22', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -94754,7 +92730,7 @@ exports[`renders correctly renders correctly when day is '22', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -94795,21 +92771,18 @@ exports[`renders correctly renders correctly when day is '22', month is '1', dis exports[`renders correctly renders correctly when day is '22', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -94831,7 +92804,8 @@ exports[`renders correctly renders correctly when day is '22', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -94848,7 +92822,7 @@ exports[`renders correctly renders correctly when day is '22', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -94889,21 +92863,18 @@ exports[`renders correctly renders correctly when day is '22', month is '1', dis exports[`renders correctly renders correctly when day is '22', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -94925,6 +92896,7 @@ exports[`renders correctly renders correctly when day is '22', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -94963,7 +92935,7 @@ exports[`renders correctly renders correctly when day is '22', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -94983,21 +92955,18 @@ exports[`renders correctly renders correctly when day is '22', month is '1', dis exports[`renders correctly renders correctly when day is '22', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -95019,6 +92988,7 @@ exports[`renders correctly renders correctly when day is '22', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -95057,7 +93027,7 @@ exports[`renders correctly renders correctly when day is '22', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -95077,21 +93047,18 @@ exports[`renders correctly renders correctly when day is '22', month is '1', dis exports[`renders correctly renders correctly when day is '22', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -95113,7 +93080,8 @@ exports[`renders correctly renders correctly when day is '22', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -95130,7 +93098,7 @@ exports[`renders correctly renders correctly when day is '22', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -95171,21 +93139,18 @@ exports[`renders correctly renders correctly when day is '22', month is '2', dis exports[`renders correctly renders correctly when day is '22', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -95207,7 +93172,8 @@ exports[`renders correctly renders correctly when day is '22', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -95224,7 +93190,7 @@ exports[`renders correctly renders correctly when day is '22', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -95265,21 +93231,18 @@ exports[`renders correctly renders correctly when day is '22', month is '2', dis exports[`renders correctly renders correctly when day is '22', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -95301,6 +93264,7 @@ exports[`renders correctly renders correctly when day is '22', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -95339,7 +93303,7 @@ exports[`renders correctly renders correctly when day is '22', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -95359,21 +93323,18 @@ exports[`renders correctly renders correctly when day is '22', month is '2', dis exports[`renders correctly renders correctly when day is '22', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -95395,6 +93356,7 @@ exports[`renders correctly renders correctly when day is '22', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -95433,7 +93395,7 @@ exports[`renders correctly renders correctly when day is '22', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -95453,21 +93415,18 @@ exports[`renders correctly renders correctly when day is '22', month is '2', dis exports[`renders correctly renders correctly when day is '22', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -95489,7 +93448,8 @@ exports[`renders correctly renders correctly when day is '22', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -95506,7 +93466,7 @@ exports[`renders correctly renders correctly when day is '22', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -95547,21 +93507,18 @@ exports[`renders correctly renders correctly when day is '22', month is '3', dis exports[`renders correctly renders correctly when day is '22', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -95583,7 +93540,8 @@ exports[`renders correctly renders correctly when day is '22', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -95600,7 +93558,7 @@ exports[`renders correctly renders correctly when day is '22', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -95641,21 +93599,18 @@ exports[`renders correctly renders correctly when day is '22', month is '3', dis exports[`renders correctly renders correctly when day is '22', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -95677,6 +93632,7 @@ exports[`renders correctly renders correctly when day is '22', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -95715,7 +93671,7 @@ exports[`renders correctly renders correctly when day is '22', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -95735,21 +93691,18 @@ exports[`renders correctly renders correctly when day is '22', month is '3', dis exports[`renders correctly renders correctly when day is '22', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -95771,6 +93724,7 @@ exports[`renders correctly renders correctly when day is '22', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -95809,7 +93763,7 @@ exports[`renders correctly renders correctly when day is '22', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -95829,21 +93783,18 @@ exports[`renders correctly renders correctly when day is '22', month is '3', dis exports[`renders correctly renders correctly when day is '22', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -95865,7 +93816,8 @@ exports[`renders correctly renders correctly when day is '22', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -95882,7 +93834,7 @@ exports[`renders correctly renders correctly when day is '22', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -95923,21 +93875,18 @@ exports[`renders correctly renders correctly when day is '22', month is '4', dis exports[`renders correctly renders correctly when day is '22', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -95959,7 +93908,8 @@ exports[`renders correctly renders correctly when day is '22', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -95976,7 +93926,7 @@ exports[`renders correctly renders correctly when day is '22', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -96017,21 +93967,18 @@ exports[`renders correctly renders correctly when day is '22', month is '4', dis exports[`renders correctly renders correctly when day is '22', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -96053,6 +94000,7 @@ exports[`renders correctly renders correctly when day is '22', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -96091,7 +94039,7 @@ exports[`renders correctly renders correctly when day is '22', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -96111,21 +94059,18 @@ exports[`renders correctly renders correctly when day is '22', month is '4', dis exports[`renders correctly renders correctly when day is '22', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -96147,6 +94092,7 @@ exports[`renders correctly renders correctly when day is '22', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -96185,7 +94131,7 @@ exports[`renders correctly renders correctly when day is '22', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -96205,21 +94151,18 @@ exports[`renders correctly renders correctly when day is '22', month is '4', dis exports[`renders correctly renders correctly when day is '22', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -96241,7 +94184,8 @@ exports[`renders correctly renders correctly when day is '22', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -96258,7 +94202,7 @@ exports[`renders correctly renders correctly when day is '22', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -96299,21 +94243,18 @@ exports[`renders correctly renders correctly when day is '22', month is '5', dis exports[`renders correctly renders correctly when day is '22', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -96335,7 +94276,8 @@ exports[`renders correctly renders correctly when day is '22', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -96352,7 +94294,7 @@ exports[`renders correctly renders correctly when day is '22', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -96393,21 +94335,18 @@ exports[`renders correctly renders correctly when day is '22', month is '5', dis exports[`renders correctly renders correctly when day is '22', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -96429,6 +94368,7 @@ exports[`renders correctly renders correctly when day is '22', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -96467,7 +94407,7 @@ exports[`renders correctly renders correctly when day is '22', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -96487,21 +94427,18 @@ exports[`renders correctly renders correctly when day is '22', month is '5', dis exports[`renders correctly renders correctly when day is '22', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -96523,6 +94460,7 @@ exports[`renders correctly renders correctly when day is '22', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -96561,7 +94499,7 @@ exports[`renders correctly renders correctly when day is '22', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -96581,21 +94519,18 @@ exports[`renders correctly renders correctly when day is '22', month is '5', dis exports[`renders correctly renders correctly when day is '22', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -96617,7 +94552,8 @@ exports[`renders correctly renders correctly when day is '22', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -96634,7 +94570,7 @@ exports[`renders correctly renders correctly when day is '22', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -96675,21 +94611,18 @@ exports[`renders correctly renders correctly when day is '22', month is '6', dis exports[`renders correctly renders correctly when day is '22', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -96711,7 +94644,8 @@ exports[`renders correctly renders correctly when day is '22', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -96728,7 +94662,7 @@ exports[`renders correctly renders correctly when day is '22', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -96769,21 +94703,18 @@ exports[`renders correctly renders correctly when day is '22', month is '6', dis exports[`renders correctly renders correctly when day is '22', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -96805,6 +94736,7 @@ exports[`renders correctly renders correctly when day is '22', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -96843,7 +94775,7 @@ exports[`renders correctly renders correctly when day is '22', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -96863,21 +94795,18 @@ exports[`renders correctly renders correctly when day is '22', month is '6', dis exports[`renders correctly renders correctly when day is '22', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -96899,6 +94828,7 @@ exports[`renders correctly renders correctly when day is '22', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -96937,7 +94867,7 @@ exports[`renders correctly renders correctly when day is '22', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -96957,21 +94887,18 @@ exports[`renders correctly renders correctly when day is '22', month is '6', dis exports[`renders correctly renders correctly when day is '22', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -96993,7 +94920,8 @@ exports[`renders correctly renders correctly when day is '22', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -97010,7 +94938,7 @@ exports[`renders correctly renders correctly when day is '22', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -97051,21 +94979,18 @@ exports[`renders correctly renders correctly when day is '22', month is '7', dis exports[`renders correctly renders correctly when day is '22', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -97087,7 +95012,8 @@ exports[`renders correctly renders correctly when day is '22', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -97104,7 +95030,7 @@ exports[`renders correctly renders correctly when day is '22', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -97145,21 +95071,18 @@ exports[`renders correctly renders correctly when day is '22', month is '7', dis exports[`renders correctly renders correctly when day is '22', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -97181,6 +95104,7 @@ exports[`renders correctly renders correctly when day is '22', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -97219,7 +95143,7 @@ exports[`renders correctly renders correctly when day is '22', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -97239,21 +95163,18 @@ exports[`renders correctly renders correctly when day is '22', month is '7', dis exports[`renders correctly renders correctly when day is '22', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -97275,6 +95196,7 @@ exports[`renders correctly renders correctly when day is '22', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -97313,7 +95235,7 @@ exports[`renders correctly renders correctly when day is '22', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -97333,21 +95255,18 @@ exports[`renders correctly renders correctly when day is '22', month is '7', dis exports[`renders correctly renders correctly when day is '22', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -97369,7 +95288,8 @@ exports[`renders correctly renders correctly when day is '22', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -97386,7 +95306,7 @@ exports[`renders correctly renders correctly when day is '22', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -97427,21 +95347,18 @@ exports[`renders correctly renders correctly when day is '22', month is '8', dis exports[`renders correctly renders correctly when day is '22', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -97463,7 +95380,8 @@ exports[`renders correctly renders correctly when day is '22', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -97480,7 +95398,7 @@ exports[`renders correctly renders correctly when day is '22', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -97521,21 +95439,18 @@ exports[`renders correctly renders correctly when day is '22', month is '8', dis exports[`renders correctly renders correctly when day is '22', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -97557,6 +95472,7 @@ exports[`renders correctly renders correctly when day is '22', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -97595,7 +95511,7 @@ exports[`renders correctly renders correctly when day is '22', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -97615,21 +95531,18 @@ exports[`renders correctly renders correctly when day is '22', month is '8', dis exports[`renders correctly renders correctly when day is '22', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -97651,6 +95564,7 @@ exports[`renders correctly renders correctly when day is '22', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -97689,7 +95603,7 @@ exports[`renders correctly renders correctly when day is '22', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -97709,21 +95623,18 @@ exports[`renders correctly renders correctly when day is '22', month is '8', dis exports[`renders correctly renders correctly when day is '22', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -97745,7 +95656,8 @@ exports[`renders correctly renders correctly when day is '22', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -97762,7 +95674,7 @@ exports[`renders correctly renders correctly when day is '22', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -97803,21 +95715,18 @@ exports[`renders correctly renders correctly when day is '22', month is '9', dis exports[`renders correctly renders correctly when day is '22', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -97839,7 +95748,8 @@ exports[`renders correctly renders correctly when day is '22', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -97856,7 +95766,7 @@ exports[`renders correctly renders correctly when day is '22', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -97897,21 +95807,18 @@ exports[`renders correctly renders correctly when day is '22', month is '9', dis exports[`renders correctly renders correctly when day is '22', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -97933,6 +95840,7 @@ exports[`renders correctly renders correctly when day is '22', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -97971,7 +95879,7 @@ exports[`renders correctly renders correctly when day is '22', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -97991,21 +95899,18 @@ exports[`renders correctly renders correctly when day is '22', month is '9', dis exports[`renders correctly renders correctly when day is '22', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -98027,6 +95932,7 @@ exports[`renders correctly renders correctly when day is '22', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -98065,7 +95971,7 @@ exports[`renders correctly renders correctly when day is '22', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -98085,21 +95991,18 @@ exports[`renders correctly renders correctly when day is '22', month is '9', dis exports[`renders correctly renders correctly when day is '22', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -98121,7 +96024,8 @@ exports[`renders correctly renders correctly when day is '22', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -98138,7 +96042,7 @@ exports[`renders correctly renders correctly when day is '22', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -98179,21 +96083,18 @@ exports[`renders correctly renders correctly when day is '22', month is '10', di exports[`renders correctly renders correctly when day is '22', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -98215,7 +96116,8 @@ exports[`renders correctly renders correctly when day is '22', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -98232,7 +96134,7 @@ exports[`renders correctly renders correctly when day is '22', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -98273,21 +96175,18 @@ exports[`renders correctly renders correctly when day is '22', month is '10', di exports[`renders correctly renders correctly when day is '22', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -98309,6 +96208,7 @@ exports[`renders correctly renders correctly when day is '22', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -98347,7 +96247,7 @@ exports[`renders correctly renders correctly when day is '22', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -98367,21 +96267,18 @@ exports[`renders correctly renders correctly when day is '22', month is '10', di exports[`renders correctly renders correctly when day is '22', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -98403,6 +96300,7 @@ exports[`renders correctly renders correctly when day is '22', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -98441,7 +96339,7 @@ exports[`renders correctly renders correctly when day is '22', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -98461,21 +96359,18 @@ exports[`renders correctly renders correctly when day is '22', month is '10', di exports[`renders correctly renders correctly when day is '22', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -98497,7 +96392,8 @@ exports[`renders correctly renders correctly when day is '22', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -98512,7 +96408,7 @@ exports[`renders correctly renders correctly when day is '22', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -98553,21 +96449,18 @@ exports[`renders correctly renders correctly when day is '22', month is '11', di exports[`renders correctly renders correctly when day is '22', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -98589,7 +96482,8 @@ exports[`renders correctly renders correctly when day is '22', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -98604,7 +96498,7 @@ exports[`renders correctly renders correctly when day is '22', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -98645,21 +96539,18 @@ exports[`renders correctly renders correctly when day is '22', month is '11', di exports[`renders correctly renders correctly when day is '22', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -98681,6 +96572,7 @@ exports[`renders correctly renders correctly when day is '22', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -98717,7 +96609,7 @@ exports[`renders correctly renders correctly when day is '22', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -98737,21 +96629,18 @@ exports[`renders correctly renders correctly when day is '22', month is '11', di exports[`renders correctly renders correctly when day is '22', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -98773,6 +96662,7 @@ exports[`renders correctly renders correctly when day is '22', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -98809,7 +96699,7 @@ exports[`renders correctly renders correctly when day is '22', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -98829,21 +96719,18 @@ exports[`renders correctly renders correctly when day is '22', month is '11', di exports[`renders correctly renders correctly when day is '22', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -98865,7 +96752,8 @@ exports[`renders correctly renders correctly when day is '22', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -98880,7 +96768,7 @@ exports[`renders correctly renders correctly when day is '22', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -98921,21 +96809,18 @@ exports[`renders correctly renders correctly when day is '22', month is '12', di exports[`renders correctly renders correctly when day is '22', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -98957,7 +96842,8 @@ exports[`renders correctly renders correctly when day is '22', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -98972,7 +96858,7 @@ exports[`renders correctly renders correctly when day is '22', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -99013,21 +96899,18 @@ exports[`renders correctly renders correctly when day is '22', month is '12', di exports[`renders correctly renders correctly when day is '22', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -99049,6 +96932,7 @@ exports[`renders correctly renders correctly when day is '22', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -99085,7 +96969,7 @@ exports[`renders correctly renders correctly when day is '22', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -99105,21 +96989,18 @@ exports[`renders correctly renders correctly when day is '22', month is '12', di exports[`renders correctly renders correctly when day is '22', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -99141,6 +97022,7 @@ exports[`renders correctly renders correctly when day is '22', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -99177,7 +97059,7 @@ exports[`renders correctly renders correctly when day is '22', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -99197,21 +97079,18 @@ exports[`renders correctly renders correctly when day is '22', month is '12', di exports[`renders correctly renders correctly when day is '23', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -99233,7 +97112,8 @@ exports[`renders correctly renders correctly when day is '23', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -99250,7 +97130,7 @@ exports[`renders correctly renders correctly when day is '23', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -99291,21 +97171,18 @@ exports[`renders correctly renders correctly when day is '23', month is '1', dis exports[`renders correctly renders correctly when day is '23', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -99327,7 +97204,8 @@ exports[`renders correctly renders correctly when day is '23', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -99344,7 +97222,7 @@ exports[`renders correctly renders correctly when day is '23', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -99385,21 +97263,18 @@ exports[`renders correctly renders correctly when day is '23', month is '1', dis exports[`renders correctly renders correctly when day is '23', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -99421,6 +97296,7 @@ exports[`renders correctly renders correctly when day is '23', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -99459,7 +97335,7 @@ exports[`renders correctly renders correctly when day is '23', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -99479,21 +97355,18 @@ exports[`renders correctly renders correctly when day is '23', month is '1', dis exports[`renders correctly renders correctly when day is '23', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -99515,6 +97388,7 @@ exports[`renders correctly renders correctly when day is '23', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -99553,7 +97427,7 @@ exports[`renders correctly renders correctly when day is '23', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -99573,21 +97447,18 @@ exports[`renders correctly renders correctly when day is '23', month is '1', dis exports[`renders correctly renders correctly when day is '23', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -99609,7 +97480,8 @@ exports[`renders correctly renders correctly when day is '23', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -99626,7 +97498,7 @@ exports[`renders correctly renders correctly when day is '23', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -99667,21 +97539,18 @@ exports[`renders correctly renders correctly when day is '23', month is '2', dis exports[`renders correctly renders correctly when day is '23', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -99703,7 +97572,8 @@ exports[`renders correctly renders correctly when day is '23', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -99720,7 +97590,7 @@ exports[`renders correctly renders correctly when day is '23', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -99761,21 +97631,18 @@ exports[`renders correctly renders correctly when day is '23', month is '2', dis exports[`renders correctly renders correctly when day is '23', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -99797,6 +97664,7 @@ exports[`renders correctly renders correctly when day is '23', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -99835,7 +97703,7 @@ exports[`renders correctly renders correctly when day is '23', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -99855,21 +97723,18 @@ exports[`renders correctly renders correctly when day is '23', month is '2', dis exports[`renders correctly renders correctly when day is '23', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -99891,6 +97756,7 @@ exports[`renders correctly renders correctly when day is '23', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -99929,7 +97795,7 @@ exports[`renders correctly renders correctly when day is '23', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -99949,21 +97815,18 @@ exports[`renders correctly renders correctly when day is '23', month is '2', dis exports[`renders correctly renders correctly when day is '23', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -99985,7 +97848,8 @@ exports[`renders correctly renders correctly when day is '23', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -100002,7 +97866,7 @@ exports[`renders correctly renders correctly when day is '23', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -100043,21 +97907,18 @@ exports[`renders correctly renders correctly when day is '23', month is '3', dis exports[`renders correctly renders correctly when day is '23', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -100079,7 +97940,8 @@ exports[`renders correctly renders correctly when day is '23', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -100096,7 +97958,7 @@ exports[`renders correctly renders correctly when day is '23', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -100137,21 +97999,18 @@ exports[`renders correctly renders correctly when day is '23', month is '3', dis exports[`renders correctly renders correctly when day is '23', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -100173,6 +98032,7 @@ exports[`renders correctly renders correctly when day is '23', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -100211,7 +98071,7 @@ exports[`renders correctly renders correctly when day is '23', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -100231,21 +98091,18 @@ exports[`renders correctly renders correctly when day is '23', month is '3', dis exports[`renders correctly renders correctly when day is '23', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -100267,6 +98124,7 @@ exports[`renders correctly renders correctly when day is '23', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -100305,7 +98163,7 @@ exports[`renders correctly renders correctly when day is '23', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -100325,21 +98183,18 @@ exports[`renders correctly renders correctly when day is '23', month is '3', dis exports[`renders correctly renders correctly when day is '23', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -100361,7 +98216,8 @@ exports[`renders correctly renders correctly when day is '23', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -100378,7 +98234,7 @@ exports[`renders correctly renders correctly when day is '23', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -100419,21 +98275,18 @@ exports[`renders correctly renders correctly when day is '23', month is '4', dis exports[`renders correctly renders correctly when day is '23', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -100455,7 +98308,8 @@ exports[`renders correctly renders correctly when day is '23', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -100472,7 +98326,7 @@ exports[`renders correctly renders correctly when day is '23', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -100513,21 +98367,18 @@ exports[`renders correctly renders correctly when day is '23', month is '4', dis exports[`renders correctly renders correctly when day is '23', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -100549,6 +98400,7 @@ exports[`renders correctly renders correctly when day is '23', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -100587,7 +98439,7 @@ exports[`renders correctly renders correctly when day is '23', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -100607,21 +98459,18 @@ exports[`renders correctly renders correctly when day is '23', month is '4', dis exports[`renders correctly renders correctly when day is '23', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -100643,6 +98492,7 @@ exports[`renders correctly renders correctly when day is '23', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -100681,7 +98531,7 @@ exports[`renders correctly renders correctly when day is '23', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -100701,21 +98551,18 @@ exports[`renders correctly renders correctly when day is '23', month is '4', dis exports[`renders correctly renders correctly when day is '23', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -100737,7 +98584,8 @@ exports[`renders correctly renders correctly when day is '23', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -100754,7 +98602,7 @@ exports[`renders correctly renders correctly when day is '23', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -100795,21 +98643,18 @@ exports[`renders correctly renders correctly when day is '23', month is '5', dis exports[`renders correctly renders correctly when day is '23', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -100831,7 +98676,8 @@ exports[`renders correctly renders correctly when day is '23', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -100848,7 +98694,7 @@ exports[`renders correctly renders correctly when day is '23', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -100889,21 +98735,18 @@ exports[`renders correctly renders correctly when day is '23', month is '5', dis exports[`renders correctly renders correctly when day is '23', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -100925,6 +98768,7 @@ exports[`renders correctly renders correctly when day is '23', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -100963,7 +98807,7 @@ exports[`renders correctly renders correctly when day is '23', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -100983,21 +98827,18 @@ exports[`renders correctly renders correctly when day is '23', month is '5', dis exports[`renders correctly renders correctly when day is '23', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -101019,6 +98860,7 @@ exports[`renders correctly renders correctly when day is '23', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -101057,7 +98899,7 @@ exports[`renders correctly renders correctly when day is '23', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -101077,21 +98919,18 @@ exports[`renders correctly renders correctly when day is '23', month is '5', dis exports[`renders correctly renders correctly when day is '23', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -101113,7 +98952,8 @@ exports[`renders correctly renders correctly when day is '23', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -101130,7 +98970,7 @@ exports[`renders correctly renders correctly when day is '23', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -101171,21 +99011,18 @@ exports[`renders correctly renders correctly when day is '23', month is '6', dis exports[`renders correctly renders correctly when day is '23', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -101207,7 +99044,8 @@ exports[`renders correctly renders correctly when day is '23', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -101224,7 +99062,7 @@ exports[`renders correctly renders correctly when day is '23', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -101265,21 +99103,18 @@ exports[`renders correctly renders correctly when day is '23', month is '6', dis exports[`renders correctly renders correctly when day is '23', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -101301,6 +99136,7 @@ exports[`renders correctly renders correctly when day is '23', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -101339,7 +99175,7 @@ exports[`renders correctly renders correctly when day is '23', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -101359,21 +99195,18 @@ exports[`renders correctly renders correctly when day is '23', month is '6', dis exports[`renders correctly renders correctly when day is '23', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -101395,6 +99228,7 @@ exports[`renders correctly renders correctly when day is '23', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -101433,7 +99267,7 @@ exports[`renders correctly renders correctly when day is '23', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -101453,21 +99287,18 @@ exports[`renders correctly renders correctly when day is '23', month is '6', dis exports[`renders correctly renders correctly when day is '23', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -101489,7 +99320,8 @@ exports[`renders correctly renders correctly when day is '23', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -101506,7 +99338,7 @@ exports[`renders correctly renders correctly when day is '23', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -101547,21 +99379,18 @@ exports[`renders correctly renders correctly when day is '23', month is '7', dis exports[`renders correctly renders correctly when day is '23', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -101583,7 +99412,8 @@ exports[`renders correctly renders correctly when day is '23', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -101600,7 +99430,7 @@ exports[`renders correctly renders correctly when day is '23', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -101641,21 +99471,18 @@ exports[`renders correctly renders correctly when day is '23', month is '7', dis exports[`renders correctly renders correctly when day is '23', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -101677,6 +99504,7 @@ exports[`renders correctly renders correctly when day is '23', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -101715,7 +99543,7 @@ exports[`renders correctly renders correctly when day is '23', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -101735,21 +99563,18 @@ exports[`renders correctly renders correctly when day is '23', month is '7', dis exports[`renders correctly renders correctly when day is '23', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -101771,6 +99596,7 @@ exports[`renders correctly renders correctly when day is '23', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -101809,7 +99635,7 @@ exports[`renders correctly renders correctly when day is '23', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -101829,21 +99655,18 @@ exports[`renders correctly renders correctly when day is '23', month is '7', dis exports[`renders correctly renders correctly when day is '23', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -101865,7 +99688,8 @@ exports[`renders correctly renders correctly when day is '23', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -101882,7 +99706,7 @@ exports[`renders correctly renders correctly when day is '23', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -101923,21 +99747,18 @@ exports[`renders correctly renders correctly when day is '23', month is '8', dis exports[`renders correctly renders correctly when day is '23', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -101959,7 +99780,8 @@ exports[`renders correctly renders correctly when day is '23', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -101976,7 +99798,7 @@ exports[`renders correctly renders correctly when day is '23', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -102017,21 +99839,18 @@ exports[`renders correctly renders correctly when day is '23', month is '8', dis exports[`renders correctly renders correctly when day is '23', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -102053,6 +99872,7 @@ exports[`renders correctly renders correctly when day is '23', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -102091,7 +99911,7 @@ exports[`renders correctly renders correctly when day is '23', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -102111,21 +99931,18 @@ exports[`renders correctly renders correctly when day is '23', month is '8', dis exports[`renders correctly renders correctly when day is '23', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -102147,6 +99964,7 @@ exports[`renders correctly renders correctly when day is '23', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -102185,7 +100003,7 @@ exports[`renders correctly renders correctly when day is '23', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -102205,21 +100023,18 @@ exports[`renders correctly renders correctly when day is '23', month is '8', dis exports[`renders correctly renders correctly when day is '23', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -102241,7 +100056,8 @@ exports[`renders correctly renders correctly when day is '23', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -102258,7 +100074,7 @@ exports[`renders correctly renders correctly when day is '23', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -102299,21 +100115,18 @@ exports[`renders correctly renders correctly when day is '23', month is '9', dis exports[`renders correctly renders correctly when day is '23', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -102335,7 +100148,8 @@ exports[`renders correctly renders correctly when day is '23', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -102352,7 +100166,7 @@ exports[`renders correctly renders correctly when day is '23', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -102393,21 +100207,18 @@ exports[`renders correctly renders correctly when day is '23', month is '9', dis exports[`renders correctly renders correctly when day is '23', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -102429,6 +100240,7 @@ exports[`renders correctly renders correctly when day is '23', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -102467,7 +100279,7 @@ exports[`renders correctly renders correctly when day is '23', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -102487,21 +100299,18 @@ exports[`renders correctly renders correctly when day is '23', month is '9', dis exports[`renders correctly renders correctly when day is '23', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -102523,6 +100332,7 @@ exports[`renders correctly renders correctly when day is '23', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -102561,7 +100371,7 @@ exports[`renders correctly renders correctly when day is '23', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -102581,21 +100391,18 @@ exports[`renders correctly renders correctly when day is '23', month is '9', dis exports[`renders correctly renders correctly when day is '23', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -102617,7 +100424,8 @@ exports[`renders correctly renders correctly when day is '23', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -102634,7 +100442,7 @@ exports[`renders correctly renders correctly when day is '23', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -102675,21 +100483,18 @@ exports[`renders correctly renders correctly when day is '23', month is '10', di exports[`renders correctly renders correctly when day is '23', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -102711,7 +100516,8 @@ exports[`renders correctly renders correctly when day is '23', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -102728,7 +100534,7 @@ exports[`renders correctly renders correctly when day is '23', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -102769,21 +100575,18 @@ exports[`renders correctly renders correctly when day is '23', month is '10', di exports[`renders correctly renders correctly when day is '23', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -102805,6 +100608,7 @@ exports[`renders correctly renders correctly when day is '23', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -102843,7 +100647,7 @@ exports[`renders correctly renders correctly when day is '23', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -102863,21 +100667,18 @@ exports[`renders correctly renders correctly when day is '23', month is '10', di exports[`renders correctly renders correctly when day is '23', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -102899,6 +100700,7 @@ exports[`renders correctly renders correctly when day is '23', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -102937,7 +100739,7 @@ exports[`renders correctly renders correctly when day is '23', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -102957,21 +100759,18 @@ exports[`renders correctly renders correctly when day is '23', month is '10', di exports[`renders correctly renders correctly when day is '23', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -102993,7 +100792,8 @@ exports[`renders correctly renders correctly when day is '23', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -103008,7 +100808,7 @@ exports[`renders correctly renders correctly when day is '23', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -103049,21 +100849,18 @@ exports[`renders correctly renders correctly when day is '23', month is '11', di exports[`renders correctly renders correctly when day is '23', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -103085,7 +100882,8 @@ exports[`renders correctly renders correctly when day is '23', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -103100,7 +100898,7 @@ exports[`renders correctly renders correctly when day is '23', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -103141,21 +100939,18 @@ exports[`renders correctly renders correctly when day is '23', month is '11', di exports[`renders correctly renders correctly when day is '23', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -103177,6 +100972,7 @@ exports[`renders correctly renders correctly when day is '23', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -103213,7 +101009,7 @@ exports[`renders correctly renders correctly when day is '23', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -103233,21 +101029,18 @@ exports[`renders correctly renders correctly when day is '23', month is '11', di exports[`renders correctly renders correctly when day is '23', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -103269,6 +101062,7 @@ exports[`renders correctly renders correctly when day is '23', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -103305,7 +101099,7 @@ exports[`renders correctly renders correctly when day is '23', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -103325,21 +101119,18 @@ exports[`renders correctly renders correctly when day is '23', month is '11', di exports[`renders correctly renders correctly when day is '23', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -103361,7 +101152,8 @@ exports[`renders correctly renders correctly when day is '23', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -103376,7 +101168,7 @@ exports[`renders correctly renders correctly when day is '23', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -103417,21 +101209,18 @@ exports[`renders correctly renders correctly when day is '23', month is '12', di exports[`renders correctly renders correctly when day is '23', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -103453,7 +101242,8 @@ exports[`renders correctly renders correctly when day is '23', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -103468,7 +101258,7 @@ exports[`renders correctly renders correctly when day is '23', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -103509,21 +101299,18 @@ exports[`renders correctly renders correctly when day is '23', month is '12', di exports[`renders correctly renders correctly when day is '23', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -103545,6 +101332,7 @@ exports[`renders correctly renders correctly when day is '23', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -103581,7 +101369,7 @@ exports[`renders correctly renders correctly when day is '23', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -103601,21 +101389,18 @@ exports[`renders correctly renders correctly when day is '23', month is '12', di exports[`renders correctly renders correctly when day is '23', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -103637,6 +101422,7 @@ exports[`renders correctly renders correctly when day is '23', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -103673,7 +101459,7 @@ exports[`renders correctly renders correctly when day is '23', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -103693,21 +101479,18 @@ exports[`renders correctly renders correctly when day is '23', month is '12', di exports[`renders correctly renders correctly when day is '24', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -103729,7 +101512,8 @@ exports[`renders correctly renders correctly when day is '24', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -103746,7 +101530,7 @@ exports[`renders correctly renders correctly when day is '24', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -103787,21 +101571,18 @@ exports[`renders correctly renders correctly when day is '24', month is '1', dis exports[`renders correctly renders correctly when day is '24', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -103823,7 +101604,8 @@ exports[`renders correctly renders correctly when day is '24', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -103840,7 +101622,7 @@ exports[`renders correctly renders correctly when day is '24', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -103881,21 +101663,18 @@ exports[`renders correctly renders correctly when day is '24', month is '1', dis exports[`renders correctly renders correctly when day is '24', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -103917,6 +101696,7 @@ exports[`renders correctly renders correctly when day is '24', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -103955,7 +101735,7 @@ exports[`renders correctly renders correctly when day is '24', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -103975,21 +101755,18 @@ exports[`renders correctly renders correctly when day is '24', month is '1', dis exports[`renders correctly renders correctly when day is '24', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -104011,6 +101788,7 @@ exports[`renders correctly renders correctly when day is '24', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -104049,7 +101827,7 @@ exports[`renders correctly renders correctly when day is '24', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -104069,21 +101847,18 @@ exports[`renders correctly renders correctly when day is '24', month is '1', dis exports[`renders correctly renders correctly when day is '24', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -104105,7 +101880,8 @@ exports[`renders correctly renders correctly when day is '24', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -104122,7 +101898,7 @@ exports[`renders correctly renders correctly when day is '24', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -104163,21 +101939,18 @@ exports[`renders correctly renders correctly when day is '24', month is '2', dis exports[`renders correctly renders correctly when day is '24', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -104199,7 +101972,8 @@ exports[`renders correctly renders correctly when day is '24', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -104216,7 +101990,7 @@ exports[`renders correctly renders correctly when day is '24', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -104257,21 +102031,18 @@ exports[`renders correctly renders correctly when day is '24', month is '2', dis exports[`renders correctly renders correctly when day is '24', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -104293,6 +102064,7 @@ exports[`renders correctly renders correctly when day is '24', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -104331,7 +102103,7 @@ exports[`renders correctly renders correctly when day is '24', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -104351,21 +102123,18 @@ exports[`renders correctly renders correctly when day is '24', month is '2', dis exports[`renders correctly renders correctly when day is '24', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -104387,6 +102156,7 @@ exports[`renders correctly renders correctly when day is '24', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -104425,7 +102195,7 @@ exports[`renders correctly renders correctly when day is '24', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -104445,21 +102215,18 @@ exports[`renders correctly renders correctly when day is '24', month is '2', dis exports[`renders correctly renders correctly when day is '24', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -104481,7 +102248,8 @@ exports[`renders correctly renders correctly when day is '24', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -104498,7 +102266,7 @@ exports[`renders correctly renders correctly when day is '24', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -104539,21 +102307,18 @@ exports[`renders correctly renders correctly when day is '24', month is '3', dis exports[`renders correctly renders correctly when day is '24', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -104575,7 +102340,8 @@ exports[`renders correctly renders correctly when day is '24', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -104592,7 +102358,7 @@ exports[`renders correctly renders correctly when day is '24', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -104633,21 +102399,18 @@ exports[`renders correctly renders correctly when day is '24', month is '3', dis exports[`renders correctly renders correctly when day is '24', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -104669,6 +102432,7 @@ exports[`renders correctly renders correctly when day is '24', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -104707,7 +102471,7 @@ exports[`renders correctly renders correctly when day is '24', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -104727,21 +102491,18 @@ exports[`renders correctly renders correctly when day is '24', month is '3', dis exports[`renders correctly renders correctly when day is '24', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -104763,6 +102524,7 @@ exports[`renders correctly renders correctly when day is '24', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -104801,7 +102563,7 @@ exports[`renders correctly renders correctly when day is '24', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -104821,21 +102583,18 @@ exports[`renders correctly renders correctly when day is '24', month is '3', dis exports[`renders correctly renders correctly when day is '24', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -104857,7 +102616,8 @@ exports[`renders correctly renders correctly when day is '24', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -104874,7 +102634,7 @@ exports[`renders correctly renders correctly when day is '24', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -104915,21 +102675,18 @@ exports[`renders correctly renders correctly when day is '24', month is '4', dis exports[`renders correctly renders correctly when day is '24', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -104951,7 +102708,8 @@ exports[`renders correctly renders correctly when day is '24', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -104968,7 +102726,7 @@ exports[`renders correctly renders correctly when day is '24', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -105009,21 +102767,18 @@ exports[`renders correctly renders correctly when day is '24', month is '4', dis exports[`renders correctly renders correctly when day is '24', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -105045,6 +102800,7 @@ exports[`renders correctly renders correctly when day is '24', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -105083,7 +102839,7 @@ exports[`renders correctly renders correctly when day is '24', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -105103,21 +102859,18 @@ exports[`renders correctly renders correctly when day is '24', month is '4', dis exports[`renders correctly renders correctly when day is '24', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -105139,6 +102892,7 @@ exports[`renders correctly renders correctly when day is '24', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -105177,7 +102931,7 @@ exports[`renders correctly renders correctly when day is '24', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -105197,21 +102951,18 @@ exports[`renders correctly renders correctly when day is '24', month is '4', dis exports[`renders correctly renders correctly when day is '24', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -105233,7 +102984,8 @@ exports[`renders correctly renders correctly when day is '24', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -105250,7 +103002,7 @@ exports[`renders correctly renders correctly when day is '24', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -105291,21 +103043,18 @@ exports[`renders correctly renders correctly when day is '24', month is '5', dis exports[`renders correctly renders correctly when day is '24', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -105327,7 +103076,8 @@ exports[`renders correctly renders correctly when day is '24', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -105344,7 +103094,7 @@ exports[`renders correctly renders correctly when day is '24', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -105385,21 +103135,18 @@ exports[`renders correctly renders correctly when day is '24', month is '5', dis exports[`renders correctly renders correctly when day is '24', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -105421,6 +103168,7 @@ exports[`renders correctly renders correctly when day is '24', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -105459,7 +103207,7 @@ exports[`renders correctly renders correctly when day is '24', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -105479,21 +103227,18 @@ exports[`renders correctly renders correctly when day is '24', month is '5', dis exports[`renders correctly renders correctly when day is '24', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -105515,6 +103260,7 @@ exports[`renders correctly renders correctly when day is '24', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -105553,7 +103299,7 @@ exports[`renders correctly renders correctly when day is '24', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -105573,21 +103319,18 @@ exports[`renders correctly renders correctly when day is '24', month is '5', dis exports[`renders correctly renders correctly when day is '24', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -105609,7 +103352,8 @@ exports[`renders correctly renders correctly when day is '24', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -105626,7 +103370,7 @@ exports[`renders correctly renders correctly when day is '24', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -105667,21 +103411,18 @@ exports[`renders correctly renders correctly when day is '24', month is '6', dis exports[`renders correctly renders correctly when day is '24', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -105703,7 +103444,8 @@ exports[`renders correctly renders correctly when day is '24', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -105720,7 +103462,7 @@ exports[`renders correctly renders correctly when day is '24', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -105761,21 +103503,18 @@ exports[`renders correctly renders correctly when day is '24', month is '6', dis exports[`renders correctly renders correctly when day is '24', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -105797,6 +103536,7 @@ exports[`renders correctly renders correctly when day is '24', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -105835,7 +103575,7 @@ exports[`renders correctly renders correctly when day is '24', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -105855,21 +103595,18 @@ exports[`renders correctly renders correctly when day is '24', month is '6', dis exports[`renders correctly renders correctly when day is '24', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -105891,6 +103628,7 @@ exports[`renders correctly renders correctly when day is '24', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -105929,7 +103667,7 @@ exports[`renders correctly renders correctly when day is '24', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -105949,21 +103687,18 @@ exports[`renders correctly renders correctly when day is '24', month is '6', dis exports[`renders correctly renders correctly when day is '24', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -105985,7 +103720,8 @@ exports[`renders correctly renders correctly when day is '24', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -106002,7 +103738,7 @@ exports[`renders correctly renders correctly when day is '24', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -106043,21 +103779,18 @@ exports[`renders correctly renders correctly when day is '24', month is '7', dis exports[`renders correctly renders correctly when day is '24', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -106079,7 +103812,8 @@ exports[`renders correctly renders correctly when day is '24', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -106096,7 +103830,7 @@ exports[`renders correctly renders correctly when day is '24', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -106137,21 +103871,18 @@ exports[`renders correctly renders correctly when day is '24', month is '7', dis exports[`renders correctly renders correctly when day is '24', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -106173,6 +103904,7 @@ exports[`renders correctly renders correctly when day is '24', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -106211,7 +103943,7 @@ exports[`renders correctly renders correctly when day is '24', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -106231,21 +103963,18 @@ exports[`renders correctly renders correctly when day is '24', month is '7', dis exports[`renders correctly renders correctly when day is '24', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -106267,6 +103996,7 @@ exports[`renders correctly renders correctly when day is '24', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -106305,7 +104035,7 @@ exports[`renders correctly renders correctly when day is '24', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -106325,21 +104055,18 @@ exports[`renders correctly renders correctly when day is '24', month is '7', dis exports[`renders correctly renders correctly when day is '24', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -106361,7 +104088,8 @@ exports[`renders correctly renders correctly when day is '24', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -106378,7 +104106,7 @@ exports[`renders correctly renders correctly when day is '24', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -106419,21 +104147,18 @@ exports[`renders correctly renders correctly when day is '24', month is '8', dis exports[`renders correctly renders correctly when day is '24', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -106455,7 +104180,8 @@ exports[`renders correctly renders correctly when day is '24', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -106472,7 +104198,7 @@ exports[`renders correctly renders correctly when day is '24', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -106513,21 +104239,18 @@ exports[`renders correctly renders correctly when day is '24', month is '8', dis exports[`renders correctly renders correctly when day is '24', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -106549,6 +104272,7 @@ exports[`renders correctly renders correctly when day is '24', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -106587,7 +104311,7 @@ exports[`renders correctly renders correctly when day is '24', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -106607,21 +104331,18 @@ exports[`renders correctly renders correctly when day is '24', month is '8', dis exports[`renders correctly renders correctly when day is '24', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -106643,6 +104364,7 @@ exports[`renders correctly renders correctly when day is '24', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -106681,7 +104403,7 @@ exports[`renders correctly renders correctly when day is '24', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -106701,21 +104423,18 @@ exports[`renders correctly renders correctly when day is '24', month is '8', dis exports[`renders correctly renders correctly when day is '24', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -106737,7 +104456,8 @@ exports[`renders correctly renders correctly when day is '24', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -106754,7 +104474,7 @@ exports[`renders correctly renders correctly when day is '24', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -106795,21 +104515,18 @@ exports[`renders correctly renders correctly when day is '24', month is '9', dis exports[`renders correctly renders correctly when day is '24', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -106831,7 +104548,8 @@ exports[`renders correctly renders correctly when day is '24', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -106848,7 +104566,7 @@ exports[`renders correctly renders correctly when day is '24', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -106889,21 +104607,18 @@ exports[`renders correctly renders correctly when day is '24', month is '9', dis exports[`renders correctly renders correctly when day is '24', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -106925,6 +104640,7 @@ exports[`renders correctly renders correctly when day is '24', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -106963,7 +104679,7 @@ exports[`renders correctly renders correctly when day is '24', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -106983,21 +104699,18 @@ exports[`renders correctly renders correctly when day is '24', month is '9', dis exports[`renders correctly renders correctly when day is '24', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -107019,6 +104732,7 @@ exports[`renders correctly renders correctly when day is '24', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -107057,7 +104771,7 @@ exports[`renders correctly renders correctly when day is '24', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -107077,21 +104791,18 @@ exports[`renders correctly renders correctly when day is '24', month is '9', dis exports[`renders correctly renders correctly when day is '24', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -107113,7 +104824,8 @@ exports[`renders correctly renders correctly when day is '24', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -107130,7 +104842,7 @@ exports[`renders correctly renders correctly when day is '24', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -107171,21 +104883,18 @@ exports[`renders correctly renders correctly when day is '24', month is '10', di exports[`renders correctly renders correctly when day is '24', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -107207,7 +104916,8 @@ exports[`renders correctly renders correctly when day is '24', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -107224,7 +104934,7 @@ exports[`renders correctly renders correctly when day is '24', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -107265,21 +104975,18 @@ exports[`renders correctly renders correctly when day is '24', month is '10', di exports[`renders correctly renders correctly when day is '24', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -107301,6 +105008,7 @@ exports[`renders correctly renders correctly when day is '24', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -107339,7 +105047,7 @@ exports[`renders correctly renders correctly when day is '24', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -107359,21 +105067,18 @@ exports[`renders correctly renders correctly when day is '24', month is '10', di exports[`renders correctly renders correctly when day is '24', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -107395,6 +105100,7 @@ exports[`renders correctly renders correctly when day is '24', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -107433,7 +105139,7 @@ exports[`renders correctly renders correctly when day is '24', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -107453,21 +105159,18 @@ exports[`renders correctly renders correctly when day is '24', month is '10', di exports[`renders correctly renders correctly when day is '24', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -107489,7 +105192,8 @@ exports[`renders correctly renders correctly when day is '24', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -107504,7 +105208,7 @@ exports[`renders correctly renders correctly when day is '24', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -107545,21 +105249,18 @@ exports[`renders correctly renders correctly when day is '24', month is '11', di exports[`renders correctly renders correctly when day is '24', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -107581,7 +105282,8 @@ exports[`renders correctly renders correctly when day is '24', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -107596,7 +105298,7 @@ exports[`renders correctly renders correctly when day is '24', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -107637,21 +105339,18 @@ exports[`renders correctly renders correctly when day is '24', month is '11', di exports[`renders correctly renders correctly when day is '24', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -107673,6 +105372,7 @@ exports[`renders correctly renders correctly when day is '24', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -107709,7 +105409,7 @@ exports[`renders correctly renders correctly when day is '24', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -107729,21 +105429,18 @@ exports[`renders correctly renders correctly when day is '24', month is '11', di exports[`renders correctly renders correctly when day is '24', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -107765,6 +105462,7 @@ exports[`renders correctly renders correctly when day is '24', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -107801,7 +105499,7 @@ exports[`renders correctly renders correctly when day is '24', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -107821,21 +105519,18 @@ exports[`renders correctly renders correctly when day is '24', month is '11', di exports[`renders correctly renders correctly when day is '24', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -107857,7 +105552,8 @@ exports[`renders correctly renders correctly when day is '24', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -107872,7 +105568,7 @@ exports[`renders correctly renders correctly when day is '24', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -107913,21 +105609,18 @@ exports[`renders correctly renders correctly when day is '24', month is '12', di exports[`renders correctly renders correctly when day is '24', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -107949,7 +105642,8 @@ exports[`renders correctly renders correctly when day is '24', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -107964,7 +105658,7 @@ exports[`renders correctly renders correctly when day is '24', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -108005,21 +105699,18 @@ exports[`renders correctly renders correctly when day is '24', month is '12', di exports[`renders correctly renders correctly when day is '24', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -108041,6 +105732,7 @@ exports[`renders correctly renders correctly when day is '24', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -108077,7 +105769,7 @@ exports[`renders correctly renders correctly when day is '24', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -108097,21 +105789,18 @@ exports[`renders correctly renders correctly when day is '24', month is '12', di exports[`renders correctly renders correctly when day is '24', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -108133,6 +105822,7 @@ exports[`renders correctly renders correctly when day is '24', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -108169,7 +105859,7 @@ exports[`renders correctly renders correctly when day is '24', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -108189,21 +105879,18 @@ exports[`renders correctly renders correctly when day is '24', month is '12', di exports[`renders correctly renders correctly when day is '25', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -108225,7 +105912,8 @@ exports[`renders correctly renders correctly when day is '25', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -108242,7 +105930,7 @@ exports[`renders correctly renders correctly when day is '25', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -108283,21 +105971,18 @@ exports[`renders correctly renders correctly when day is '25', month is '1', dis exports[`renders correctly renders correctly when day is '25', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -108319,7 +106004,8 @@ exports[`renders correctly renders correctly when day is '25', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -108336,7 +106022,7 @@ exports[`renders correctly renders correctly when day is '25', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -108377,21 +106063,18 @@ exports[`renders correctly renders correctly when day is '25', month is '1', dis exports[`renders correctly renders correctly when day is '25', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -108413,6 +106096,7 @@ exports[`renders correctly renders correctly when day is '25', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -108451,7 +106135,7 @@ exports[`renders correctly renders correctly when day is '25', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -108471,21 +106155,18 @@ exports[`renders correctly renders correctly when day is '25', month is '1', dis exports[`renders correctly renders correctly when day is '25', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -108507,6 +106188,7 @@ exports[`renders correctly renders correctly when day is '25', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -108545,7 +106227,7 @@ exports[`renders correctly renders correctly when day is '25', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -108565,21 +106247,18 @@ exports[`renders correctly renders correctly when day is '25', month is '1', dis exports[`renders correctly renders correctly when day is '25', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -108601,7 +106280,8 @@ exports[`renders correctly renders correctly when day is '25', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -108618,7 +106298,7 @@ exports[`renders correctly renders correctly when day is '25', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -108659,21 +106339,18 @@ exports[`renders correctly renders correctly when day is '25', month is '2', dis exports[`renders correctly renders correctly when day is '25', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -108695,7 +106372,8 @@ exports[`renders correctly renders correctly when day is '25', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -108712,7 +106390,7 @@ exports[`renders correctly renders correctly when day is '25', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -108753,21 +106431,18 @@ exports[`renders correctly renders correctly when day is '25', month is '2', dis exports[`renders correctly renders correctly when day is '25', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -108789,6 +106464,7 @@ exports[`renders correctly renders correctly when day is '25', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -108827,7 +106503,7 @@ exports[`renders correctly renders correctly when day is '25', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -108847,21 +106523,18 @@ exports[`renders correctly renders correctly when day is '25', month is '2', dis exports[`renders correctly renders correctly when day is '25', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -108883,6 +106556,7 @@ exports[`renders correctly renders correctly when day is '25', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -108921,7 +106595,7 @@ exports[`renders correctly renders correctly when day is '25', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -108941,21 +106615,18 @@ exports[`renders correctly renders correctly when day is '25', month is '2', dis exports[`renders correctly renders correctly when day is '25', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -108977,7 +106648,8 @@ exports[`renders correctly renders correctly when day is '25', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -108994,7 +106666,7 @@ exports[`renders correctly renders correctly when day is '25', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -109035,21 +106707,18 @@ exports[`renders correctly renders correctly when day is '25', month is '3', dis exports[`renders correctly renders correctly when day is '25', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -109071,7 +106740,8 @@ exports[`renders correctly renders correctly when day is '25', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -109088,7 +106758,7 @@ exports[`renders correctly renders correctly when day is '25', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -109129,21 +106799,18 @@ exports[`renders correctly renders correctly when day is '25', month is '3', dis exports[`renders correctly renders correctly when day is '25', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -109165,6 +106832,7 @@ exports[`renders correctly renders correctly when day is '25', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -109203,7 +106871,7 @@ exports[`renders correctly renders correctly when day is '25', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -109223,21 +106891,18 @@ exports[`renders correctly renders correctly when day is '25', month is '3', dis exports[`renders correctly renders correctly when day is '25', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -109259,6 +106924,7 @@ exports[`renders correctly renders correctly when day is '25', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -109297,7 +106963,7 @@ exports[`renders correctly renders correctly when day is '25', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -109317,21 +106983,18 @@ exports[`renders correctly renders correctly when day is '25', month is '3', dis exports[`renders correctly renders correctly when day is '25', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -109353,7 +107016,8 @@ exports[`renders correctly renders correctly when day is '25', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -109370,7 +107034,7 @@ exports[`renders correctly renders correctly when day is '25', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -109411,21 +107075,18 @@ exports[`renders correctly renders correctly when day is '25', month is '4', dis exports[`renders correctly renders correctly when day is '25', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -109447,7 +107108,8 @@ exports[`renders correctly renders correctly when day is '25', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -109464,7 +107126,7 @@ exports[`renders correctly renders correctly when day is '25', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -109505,115 +107167,18 @@ exports[`renders correctly renders correctly when day is '25', month is '4', dis exports[`renders correctly renders correctly when day is '25', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] - } -> - <View - style={ - { - "padding": 0, - } + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, } - testID="holi-calendar-icon" - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#ebebeb", - "fontFamily": "InstrumentSans-Medium", - "fontSize": 12, - "fontWeight": "500", - "lineHeight": 12, - "paddingBottom": 2, - "textAlign": "center", - "userSelect": "auto", - } - } - > - T - </Text> - <View - style={ - { - "alignItems": "center", - "backgroundColor": "#ebebeb", - "borderTopLeftRadius": 6, - "borderTopRightRadius": 6, - "display": "flex", - "justifyContent": "center", - "minHeight": 44, - "minWidth": 60, - } - } - > - <Text - accessible={false} - collapsable={false} - jestAnimatedStyle={ - { - "value": {}, - } - } - selectable={true} - style={ - { - "color": "#787777", - "fontFamily": "InstrumentSans-Regular", - "fontSize": 28, - "fontWeight": "400", - "lineHeight": 22.4, - "paddingTop": 8, - "userSelect": "auto", - } - } - > - 25 - </Text> - </View> - </View> -</View> -`; - -exports[`renders correctly renders correctly when day is '25', month is '4', disabled is 'true', size is 'small' 1`] = ` -<View - style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] } > <View @@ -109635,6 +107200,99 @@ exports[`renders correctly renders correctly when day is '25', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", + "color": "#ebebeb", + "fontFamily": "InstrumentSans-Medium", + "fontSize": 12, + "fontWeight": "500", + "lineHeight": 12, + "paddingBottom": 2, + "textAlign": "center", + "userSelect": "auto", + } + } + > + T + </Text> + <View + style={ + { + "alignItems": "center", + "backgroundColor": "#ebebeb", + "borderTopLeftRadius": 6, + "borderTopRightRadius": 6, + "display": "flex", + "justifyContent": "center", + "minHeight": 44, + "minWidth": 60, + } + } + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "color": "#676565", + "fontFamily": "InstrumentSans-Regular", + "fontSize": 28, + "fontWeight": "400", + "lineHeight": 22.4, + "paddingTop": 8, + "userSelect": "auto", + } + } + > + 25 + </Text> + </View> + </View> +</View> +`; + +exports[`renders correctly renders correctly when day is '25', month is '4', disabled is 'true', size is 'small' 1`] = ` +<View + style={ + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } + } +> + <View + style={ + { + "padding": 0, + } + } + testID="holi-calendar-icon" + > + <Text + accessible={false} + collapsable={false} + jestAnimatedStyle={ + { + "value": {}, + } + } + selectable={true} + style={ + { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -109673,7 +107331,7 @@ exports[`renders correctly renders correctly when day is '25', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -109693,21 +107351,18 @@ exports[`renders correctly renders correctly when day is '25', month is '4', dis exports[`renders correctly renders correctly when day is '25', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -109729,7 +107384,8 @@ exports[`renders correctly renders correctly when day is '25', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -109746,7 +107402,7 @@ exports[`renders correctly renders correctly when day is '25', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -109787,21 +107443,18 @@ exports[`renders correctly renders correctly when day is '25', month is '5', dis exports[`renders correctly renders correctly when day is '25', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -109823,7 +107476,8 @@ exports[`renders correctly renders correctly when day is '25', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -109840,7 +107494,7 @@ exports[`renders correctly renders correctly when day is '25', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -109881,21 +107535,18 @@ exports[`renders correctly renders correctly when day is '25', month is '5', dis exports[`renders correctly renders correctly when day is '25', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -109917,6 +107568,7 @@ exports[`renders correctly renders correctly when day is '25', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -109955,7 +107607,7 @@ exports[`renders correctly renders correctly when day is '25', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -109975,21 +107627,18 @@ exports[`renders correctly renders correctly when day is '25', month is '5', dis exports[`renders correctly renders correctly when day is '25', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -110011,6 +107660,7 @@ exports[`renders correctly renders correctly when day is '25', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -110049,7 +107699,7 @@ exports[`renders correctly renders correctly when day is '25', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -110069,21 +107719,18 @@ exports[`renders correctly renders correctly when day is '25', month is '5', dis exports[`renders correctly renders correctly when day is '25', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -110105,7 +107752,8 @@ exports[`renders correctly renders correctly when day is '25', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -110122,7 +107770,7 @@ exports[`renders correctly renders correctly when day is '25', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -110163,21 +107811,18 @@ exports[`renders correctly renders correctly when day is '25', month is '6', dis exports[`renders correctly renders correctly when day is '25', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -110199,7 +107844,8 @@ exports[`renders correctly renders correctly when day is '25', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -110216,7 +107862,7 @@ exports[`renders correctly renders correctly when day is '25', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -110257,21 +107903,18 @@ exports[`renders correctly renders correctly when day is '25', month is '6', dis exports[`renders correctly renders correctly when day is '25', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -110293,6 +107936,7 @@ exports[`renders correctly renders correctly when day is '25', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -110331,7 +107975,7 @@ exports[`renders correctly renders correctly when day is '25', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -110351,21 +107995,18 @@ exports[`renders correctly renders correctly when day is '25', month is '6', dis exports[`renders correctly renders correctly when day is '25', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -110387,6 +108028,7 @@ exports[`renders correctly renders correctly when day is '25', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -110425,7 +108067,7 @@ exports[`renders correctly renders correctly when day is '25', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -110445,21 +108087,18 @@ exports[`renders correctly renders correctly when day is '25', month is '6', dis exports[`renders correctly renders correctly when day is '25', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -110481,7 +108120,8 @@ exports[`renders correctly renders correctly when day is '25', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -110498,7 +108138,7 @@ exports[`renders correctly renders correctly when day is '25', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -110539,21 +108179,18 @@ exports[`renders correctly renders correctly when day is '25', month is '7', dis exports[`renders correctly renders correctly when day is '25', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -110575,7 +108212,8 @@ exports[`renders correctly renders correctly when day is '25', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -110592,7 +108230,7 @@ exports[`renders correctly renders correctly when day is '25', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -110633,21 +108271,18 @@ exports[`renders correctly renders correctly when day is '25', month is '7', dis exports[`renders correctly renders correctly when day is '25', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -110669,6 +108304,7 @@ exports[`renders correctly renders correctly when day is '25', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -110707,7 +108343,7 @@ exports[`renders correctly renders correctly when day is '25', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -110727,21 +108363,18 @@ exports[`renders correctly renders correctly when day is '25', month is '7', dis exports[`renders correctly renders correctly when day is '25', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -110763,6 +108396,7 @@ exports[`renders correctly renders correctly when day is '25', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -110801,7 +108435,7 @@ exports[`renders correctly renders correctly when day is '25', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -110821,21 +108455,18 @@ exports[`renders correctly renders correctly when day is '25', month is '7', dis exports[`renders correctly renders correctly when day is '25', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -110857,7 +108488,8 @@ exports[`renders correctly renders correctly when day is '25', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -110874,7 +108506,7 @@ exports[`renders correctly renders correctly when day is '25', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -110915,21 +108547,18 @@ exports[`renders correctly renders correctly when day is '25', month is '8', dis exports[`renders correctly renders correctly when day is '25', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -110951,7 +108580,8 @@ exports[`renders correctly renders correctly when day is '25', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -110968,7 +108598,7 @@ exports[`renders correctly renders correctly when day is '25', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -111009,21 +108639,18 @@ exports[`renders correctly renders correctly when day is '25', month is '8', dis exports[`renders correctly renders correctly when day is '25', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -111045,6 +108672,7 @@ exports[`renders correctly renders correctly when day is '25', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -111083,7 +108711,7 @@ exports[`renders correctly renders correctly when day is '25', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -111103,21 +108731,18 @@ exports[`renders correctly renders correctly when day is '25', month is '8', dis exports[`renders correctly renders correctly when day is '25', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -111139,6 +108764,7 @@ exports[`renders correctly renders correctly when day is '25', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -111177,7 +108803,7 @@ exports[`renders correctly renders correctly when day is '25', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -111197,21 +108823,18 @@ exports[`renders correctly renders correctly when day is '25', month is '8', dis exports[`renders correctly renders correctly when day is '25', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -111233,7 +108856,8 @@ exports[`renders correctly renders correctly when day is '25', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -111250,7 +108874,7 @@ exports[`renders correctly renders correctly when day is '25', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -111291,21 +108915,18 @@ exports[`renders correctly renders correctly when day is '25', month is '9', dis exports[`renders correctly renders correctly when day is '25', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -111327,7 +108948,8 @@ exports[`renders correctly renders correctly when day is '25', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -111344,7 +108966,7 @@ exports[`renders correctly renders correctly when day is '25', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -111385,21 +109007,18 @@ exports[`renders correctly renders correctly when day is '25', month is '9', dis exports[`renders correctly renders correctly when day is '25', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -111421,6 +109040,7 @@ exports[`renders correctly renders correctly when day is '25', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -111459,7 +109079,7 @@ exports[`renders correctly renders correctly when day is '25', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -111479,21 +109099,18 @@ exports[`renders correctly renders correctly when day is '25', month is '9', dis exports[`renders correctly renders correctly when day is '25', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -111515,6 +109132,7 @@ exports[`renders correctly renders correctly when day is '25', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -111553,7 +109171,7 @@ exports[`renders correctly renders correctly when day is '25', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -111573,21 +109191,18 @@ exports[`renders correctly renders correctly when day is '25', month is '9', dis exports[`renders correctly renders correctly when day is '25', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -111609,7 +109224,8 @@ exports[`renders correctly renders correctly when day is '25', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -111626,7 +109242,7 @@ exports[`renders correctly renders correctly when day is '25', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -111667,21 +109283,18 @@ exports[`renders correctly renders correctly when day is '25', month is '10', di exports[`renders correctly renders correctly when day is '25', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -111703,7 +109316,8 @@ exports[`renders correctly renders correctly when day is '25', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -111720,7 +109334,7 @@ exports[`renders correctly renders correctly when day is '25', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -111761,21 +109375,18 @@ exports[`renders correctly renders correctly when day is '25', month is '10', di exports[`renders correctly renders correctly when day is '25', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -111797,6 +109408,7 @@ exports[`renders correctly renders correctly when day is '25', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -111835,7 +109447,7 @@ exports[`renders correctly renders correctly when day is '25', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -111855,21 +109467,18 @@ exports[`renders correctly renders correctly when day is '25', month is '10', di exports[`renders correctly renders correctly when day is '25', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -111891,6 +109500,7 @@ exports[`renders correctly renders correctly when day is '25', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -111929,7 +109539,7 @@ exports[`renders correctly renders correctly when day is '25', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -111949,21 +109559,18 @@ exports[`renders correctly renders correctly when day is '25', month is '10', di exports[`renders correctly renders correctly when day is '25', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -111985,7 +109592,8 @@ exports[`renders correctly renders correctly when day is '25', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -112000,7 +109608,7 @@ exports[`renders correctly renders correctly when day is '25', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -112041,21 +109649,18 @@ exports[`renders correctly renders correctly when day is '25', month is '11', di exports[`renders correctly renders correctly when day is '25', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -112077,7 +109682,8 @@ exports[`renders correctly renders correctly when day is '25', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -112092,7 +109698,7 @@ exports[`renders correctly renders correctly when day is '25', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -112133,21 +109739,18 @@ exports[`renders correctly renders correctly when day is '25', month is '11', di exports[`renders correctly renders correctly when day is '25', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -112169,6 +109772,7 @@ exports[`renders correctly renders correctly when day is '25', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -112205,7 +109809,7 @@ exports[`renders correctly renders correctly when day is '25', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -112225,21 +109829,18 @@ exports[`renders correctly renders correctly when day is '25', month is '11', di exports[`renders correctly renders correctly when day is '25', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -112261,6 +109862,7 @@ exports[`renders correctly renders correctly when day is '25', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -112297,7 +109899,7 @@ exports[`renders correctly renders correctly when day is '25', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -112317,21 +109919,18 @@ exports[`renders correctly renders correctly when day is '25', month is '11', di exports[`renders correctly renders correctly when day is '25', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -112353,7 +109952,8 @@ exports[`renders correctly renders correctly when day is '25', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -112368,7 +109968,7 @@ exports[`renders correctly renders correctly when day is '25', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -112409,21 +110009,18 @@ exports[`renders correctly renders correctly when day is '25', month is '12', di exports[`renders correctly renders correctly when day is '25', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -112445,7 +110042,8 @@ exports[`renders correctly renders correctly when day is '25', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -112460,7 +110058,7 @@ exports[`renders correctly renders correctly when day is '25', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -112501,21 +110099,18 @@ exports[`renders correctly renders correctly when day is '25', month is '12', di exports[`renders correctly renders correctly when day is '25', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -112537,6 +110132,7 @@ exports[`renders correctly renders correctly when day is '25', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -112573,7 +110169,7 @@ exports[`renders correctly renders correctly when day is '25', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -112593,21 +110189,18 @@ exports[`renders correctly renders correctly when day is '25', month is '12', di exports[`renders correctly renders correctly when day is '25', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -112629,6 +110222,7 @@ exports[`renders correctly renders correctly when day is '25', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -112665,7 +110259,7 @@ exports[`renders correctly renders correctly when day is '25', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -112685,21 +110279,18 @@ exports[`renders correctly renders correctly when day is '25', month is '12', di exports[`renders correctly renders correctly when day is '26', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -112721,7 +110312,8 @@ exports[`renders correctly renders correctly when day is '26', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -112738,7 +110330,7 @@ exports[`renders correctly renders correctly when day is '26', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -112779,21 +110371,18 @@ exports[`renders correctly renders correctly when day is '26', month is '1', dis exports[`renders correctly renders correctly when day is '26', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -112815,7 +110404,8 @@ exports[`renders correctly renders correctly when day is '26', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -112832,7 +110422,7 @@ exports[`renders correctly renders correctly when day is '26', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -112873,21 +110463,18 @@ exports[`renders correctly renders correctly when day is '26', month is '1', dis exports[`renders correctly renders correctly when day is '26', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -112909,6 +110496,7 @@ exports[`renders correctly renders correctly when day is '26', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -112947,7 +110535,7 @@ exports[`renders correctly renders correctly when day is '26', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -112967,21 +110555,18 @@ exports[`renders correctly renders correctly when day is '26', month is '1', dis exports[`renders correctly renders correctly when day is '26', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -113003,6 +110588,7 @@ exports[`renders correctly renders correctly when day is '26', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -113041,7 +110627,7 @@ exports[`renders correctly renders correctly when day is '26', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -113061,21 +110647,18 @@ exports[`renders correctly renders correctly when day is '26', month is '1', dis exports[`renders correctly renders correctly when day is '26', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -113097,7 +110680,8 @@ exports[`renders correctly renders correctly when day is '26', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -113114,7 +110698,7 @@ exports[`renders correctly renders correctly when day is '26', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -113155,21 +110739,18 @@ exports[`renders correctly renders correctly when day is '26', month is '2', dis exports[`renders correctly renders correctly when day is '26', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -113191,7 +110772,8 @@ exports[`renders correctly renders correctly when day is '26', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -113208,7 +110790,7 @@ exports[`renders correctly renders correctly when day is '26', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -113249,21 +110831,18 @@ exports[`renders correctly renders correctly when day is '26', month is '2', dis exports[`renders correctly renders correctly when day is '26', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -113285,6 +110864,7 @@ exports[`renders correctly renders correctly when day is '26', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -113323,7 +110903,7 @@ exports[`renders correctly renders correctly when day is '26', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -113343,21 +110923,18 @@ exports[`renders correctly renders correctly when day is '26', month is '2', dis exports[`renders correctly renders correctly when day is '26', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -113379,6 +110956,7 @@ exports[`renders correctly renders correctly when day is '26', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -113417,7 +110995,7 @@ exports[`renders correctly renders correctly when day is '26', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -113437,21 +111015,18 @@ exports[`renders correctly renders correctly when day is '26', month is '2', dis exports[`renders correctly renders correctly when day is '26', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -113473,7 +111048,8 @@ exports[`renders correctly renders correctly when day is '26', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -113490,7 +111066,7 @@ exports[`renders correctly renders correctly when day is '26', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -113531,21 +111107,18 @@ exports[`renders correctly renders correctly when day is '26', month is '3', dis exports[`renders correctly renders correctly when day is '26', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -113567,7 +111140,8 @@ exports[`renders correctly renders correctly when day is '26', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -113584,7 +111158,7 @@ exports[`renders correctly renders correctly when day is '26', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -113625,21 +111199,18 @@ exports[`renders correctly renders correctly when day is '26', month is '3', dis exports[`renders correctly renders correctly when day is '26', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -113661,6 +111232,7 @@ exports[`renders correctly renders correctly when day is '26', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -113699,7 +111271,7 @@ exports[`renders correctly renders correctly when day is '26', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -113719,21 +111291,18 @@ exports[`renders correctly renders correctly when day is '26', month is '3', dis exports[`renders correctly renders correctly when day is '26', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -113755,6 +111324,7 @@ exports[`renders correctly renders correctly when day is '26', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -113793,7 +111363,7 @@ exports[`renders correctly renders correctly when day is '26', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -113813,21 +111383,18 @@ exports[`renders correctly renders correctly when day is '26', month is '3', dis exports[`renders correctly renders correctly when day is '26', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -113849,7 +111416,8 @@ exports[`renders correctly renders correctly when day is '26', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -113866,7 +111434,7 @@ exports[`renders correctly renders correctly when day is '26', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -113907,21 +111475,18 @@ exports[`renders correctly renders correctly when day is '26', month is '4', dis exports[`renders correctly renders correctly when day is '26', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -113943,7 +111508,8 @@ exports[`renders correctly renders correctly when day is '26', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -113960,7 +111526,7 @@ exports[`renders correctly renders correctly when day is '26', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -114001,21 +111567,18 @@ exports[`renders correctly renders correctly when day is '26', month is '4', dis exports[`renders correctly renders correctly when day is '26', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -114037,6 +111600,7 @@ exports[`renders correctly renders correctly when day is '26', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -114075,7 +111639,7 @@ exports[`renders correctly renders correctly when day is '26', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -114095,21 +111659,18 @@ exports[`renders correctly renders correctly when day is '26', month is '4', dis exports[`renders correctly renders correctly when day is '26', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -114131,6 +111692,7 @@ exports[`renders correctly renders correctly when day is '26', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -114169,7 +111731,7 @@ exports[`renders correctly renders correctly when day is '26', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -114189,21 +111751,18 @@ exports[`renders correctly renders correctly when day is '26', month is '4', dis exports[`renders correctly renders correctly when day is '26', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -114225,7 +111784,8 @@ exports[`renders correctly renders correctly when day is '26', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -114242,7 +111802,7 @@ exports[`renders correctly renders correctly when day is '26', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -114283,21 +111843,18 @@ exports[`renders correctly renders correctly when day is '26', month is '5', dis exports[`renders correctly renders correctly when day is '26', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -114319,7 +111876,8 @@ exports[`renders correctly renders correctly when day is '26', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -114336,7 +111894,7 @@ exports[`renders correctly renders correctly when day is '26', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -114377,21 +111935,18 @@ exports[`renders correctly renders correctly when day is '26', month is '5', dis exports[`renders correctly renders correctly when day is '26', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -114413,6 +111968,7 @@ exports[`renders correctly renders correctly when day is '26', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -114451,7 +112007,7 @@ exports[`renders correctly renders correctly when day is '26', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -114471,21 +112027,18 @@ exports[`renders correctly renders correctly when day is '26', month is '5', dis exports[`renders correctly renders correctly when day is '26', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -114507,6 +112060,7 @@ exports[`renders correctly renders correctly when day is '26', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -114545,7 +112099,7 @@ exports[`renders correctly renders correctly when day is '26', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -114565,21 +112119,18 @@ exports[`renders correctly renders correctly when day is '26', month is '5', dis exports[`renders correctly renders correctly when day is '26', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -114601,7 +112152,8 @@ exports[`renders correctly renders correctly when day is '26', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -114618,7 +112170,7 @@ exports[`renders correctly renders correctly when day is '26', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -114659,21 +112211,18 @@ exports[`renders correctly renders correctly when day is '26', month is '6', dis exports[`renders correctly renders correctly when day is '26', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -114695,7 +112244,8 @@ exports[`renders correctly renders correctly when day is '26', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -114712,7 +112262,7 @@ exports[`renders correctly renders correctly when day is '26', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -114753,21 +112303,18 @@ exports[`renders correctly renders correctly when day is '26', month is '6', dis exports[`renders correctly renders correctly when day is '26', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -114789,6 +112336,7 @@ exports[`renders correctly renders correctly when day is '26', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -114827,7 +112375,7 @@ exports[`renders correctly renders correctly when day is '26', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -114847,21 +112395,18 @@ exports[`renders correctly renders correctly when day is '26', month is '6', dis exports[`renders correctly renders correctly when day is '26', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -114883,6 +112428,7 @@ exports[`renders correctly renders correctly when day is '26', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -114921,7 +112467,7 @@ exports[`renders correctly renders correctly when day is '26', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -114941,21 +112487,18 @@ exports[`renders correctly renders correctly when day is '26', month is '6', dis exports[`renders correctly renders correctly when day is '26', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -114977,7 +112520,8 @@ exports[`renders correctly renders correctly when day is '26', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -114994,7 +112538,7 @@ exports[`renders correctly renders correctly when day is '26', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -115035,21 +112579,18 @@ exports[`renders correctly renders correctly when day is '26', month is '7', dis exports[`renders correctly renders correctly when day is '26', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -115071,7 +112612,8 @@ exports[`renders correctly renders correctly when day is '26', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -115088,7 +112630,7 @@ exports[`renders correctly renders correctly when day is '26', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -115129,21 +112671,18 @@ exports[`renders correctly renders correctly when day is '26', month is '7', dis exports[`renders correctly renders correctly when day is '26', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -115165,6 +112704,7 @@ exports[`renders correctly renders correctly when day is '26', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -115203,7 +112743,7 @@ exports[`renders correctly renders correctly when day is '26', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -115223,21 +112763,18 @@ exports[`renders correctly renders correctly when day is '26', month is '7', dis exports[`renders correctly renders correctly when day is '26', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -115259,6 +112796,7 @@ exports[`renders correctly renders correctly when day is '26', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -115297,7 +112835,7 @@ exports[`renders correctly renders correctly when day is '26', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -115317,21 +112855,18 @@ exports[`renders correctly renders correctly when day is '26', month is '7', dis exports[`renders correctly renders correctly when day is '26', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -115353,7 +112888,8 @@ exports[`renders correctly renders correctly when day is '26', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -115370,7 +112906,7 @@ exports[`renders correctly renders correctly when day is '26', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -115411,21 +112947,18 @@ exports[`renders correctly renders correctly when day is '26', month is '8', dis exports[`renders correctly renders correctly when day is '26', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -115447,7 +112980,8 @@ exports[`renders correctly renders correctly when day is '26', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -115464,7 +112998,7 @@ exports[`renders correctly renders correctly when day is '26', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -115505,21 +113039,18 @@ exports[`renders correctly renders correctly when day is '26', month is '8', dis exports[`renders correctly renders correctly when day is '26', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -115541,6 +113072,7 @@ exports[`renders correctly renders correctly when day is '26', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -115579,7 +113111,7 @@ exports[`renders correctly renders correctly when day is '26', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -115599,21 +113131,18 @@ exports[`renders correctly renders correctly when day is '26', month is '8', dis exports[`renders correctly renders correctly when day is '26', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -115635,6 +113164,7 @@ exports[`renders correctly renders correctly when day is '26', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -115673,7 +113203,7 @@ exports[`renders correctly renders correctly when day is '26', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -115693,21 +113223,18 @@ exports[`renders correctly renders correctly when day is '26', month is '8', dis exports[`renders correctly renders correctly when day is '26', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -115729,7 +113256,8 @@ exports[`renders correctly renders correctly when day is '26', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -115746,7 +113274,7 @@ exports[`renders correctly renders correctly when day is '26', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -115787,21 +113315,18 @@ exports[`renders correctly renders correctly when day is '26', month is '9', dis exports[`renders correctly renders correctly when day is '26', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -115823,7 +113348,8 @@ exports[`renders correctly renders correctly when day is '26', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -115840,7 +113366,7 @@ exports[`renders correctly renders correctly when day is '26', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -115881,21 +113407,18 @@ exports[`renders correctly renders correctly when day is '26', month is '9', dis exports[`renders correctly renders correctly when day is '26', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -115917,6 +113440,7 @@ exports[`renders correctly renders correctly when day is '26', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -115955,7 +113479,7 @@ exports[`renders correctly renders correctly when day is '26', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -115975,21 +113499,18 @@ exports[`renders correctly renders correctly when day is '26', month is '9', dis exports[`renders correctly renders correctly when day is '26', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -116011,6 +113532,7 @@ exports[`renders correctly renders correctly when day is '26', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -116049,7 +113571,7 @@ exports[`renders correctly renders correctly when day is '26', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -116069,21 +113591,18 @@ exports[`renders correctly renders correctly when day is '26', month is '9', dis exports[`renders correctly renders correctly when day is '26', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -116105,7 +113624,8 @@ exports[`renders correctly renders correctly when day is '26', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -116122,7 +113642,7 @@ exports[`renders correctly renders correctly when day is '26', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -116163,21 +113683,18 @@ exports[`renders correctly renders correctly when day is '26', month is '10', di exports[`renders correctly renders correctly when day is '26', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -116199,7 +113716,8 @@ exports[`renders correctly renders correctly when day is '26', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -116216,7 +113734,7 @@ exports[`renders correctly renders correctly when day is '26', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -116257,21 +113775,18 @@ exports[`renders correctly renders correctly when day is '26', month is '10', di exports[`renders correctly renders correctly when day is '26', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -116293,6 +113808,7 @@ exports[`renders correctly renders correctly when day is '26', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -116331,7 +113847,7 @@ exports[`renders correctly renders correctly when day is '26', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -116351,21 +113867,18 @@ exports[`renders correctly renders correctly when day is '26', month is '10', di exports[`renders correctly renders correctly when day is '26', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -116387,6 +113900,7 @@ exports[`renders correctly renders correctly when day is '26', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -116425,7 +113939,7 @@ exports[`renders correctly renders correctly when day is '26', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -116445,21 +113959,18 @@ exports[`renders correctly renders correctly when day is '26', month is '10', di exports[`renders correctly renders correctly when day is '26', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -116481,7 +113992,8 @@ exports[`renders correctly renders correctly when day is '26', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -116496,7 +114008,7 @@ exports[`renders correctly renders correctly when day is '26', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -116537,21 +114049,18 @@ exports[`renders correctly renders correctly when day is '26', month is '11', di exports[`renders correctly renders correctly when day is '26', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -116573,7 +114082,8 @@ exports[`renders correctly renders correctly when day is '26', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -116588,7 +114098,7 @@ exports[`renders correctly renders correctly when day is '26', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -116629,21 +114139,18 @@ exports[`renders correctly renders correctly when day is '26', month is '11', di exports[`renders correctly renders correctly when day is '26', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -116665,6 +114172,7 @@ exports[`renders correctly renders correctly when day is '26', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -116701,7 +114209,7 @@ exports[`renders correctly renders correctly when day is '26', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -116721,21 +114229,18 @@ exports[`renders correctly renders correctly when day is '26', month is '11', di exports[`renders correctly renders correctly when day is '26', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -116757,6 +114262,7 @@ exports[`renders correctly renders correctly when day is '26', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -116793,7 +114299,7 @@ exports[`renders correctly renders correctly when day is '26', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -116813,21 +114319,18 @@ exports[`renders correctly renders correctly when day is '26', month is '11', di exports[`renders correctly renders correctly when day is '26', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -116849,7 +114352,8 @@ exports[`renders correctly renders correctly when day is '26', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -116864,7 +114368,7 @@ exports[`renders correctly renders correctly when day is '26', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -116905,21 +114409,18 @@ exports[`renders correctly renders correctly when day is '26', month is '12', di exports[`renders correctly renders correctly when day is '26', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -116941,7 +114442,8 @@ exports[`renders correctly renders correctly when day is '26', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -116956,7 +114458,7 @@ exports[`renders correctly renders correctly when day is '26', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -116997,21 +114499,18 @@ exports[`renders correctly renders correctly when day is '26', month is '12', di exports[`renders correctly renders correctly when day is '26', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -117033,6 +114532,7 @@ exports[`renders correctly renders correctly when day is '26', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -117069,7 +114569,7 @@ exports[`renders correctly renders correctly when day is '26', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -117089,21 +114589,18 @@ exports[`renders correctly renders correctly when day is '26', month is '12', di exports[`renders correctly renders correctly when day is '26', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -117125,6 +114622,7 @@ exports[`renders correctly renders correctly when day is '26', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -117161,7 +114659,7 @@ exports[`renders correctly renders correctly when day is '26', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -117181,21 +114679,18 @@ exports[`renders correctly renders correctly when day is '26', month is '12', di exports[`renders correctly renders correctly when day is '27', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -117217,7 +114712,8 @@ exports[`renders correctly renders correctly when day is '27', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -117234,7 +114730,7 @@ exports[`renders correctly renders correctly when day is '27', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -117275,21 +114771,18 @@ exports[`renders correctly renders correctly when day is '27', month is '1', dis exports[`renders correctly renders correctly when day is '27', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -117311,7 +114804,8 @@ exports[`renders correctly renders correctly when day is '27', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -117328,7 +114822,7 @@ exports[`renders correctly renders correctly when day is '27', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -117369,21 +114863,18 @@ exports[`renders correctly renders correctly when day is '27', month is '1', dis exports[`renders correctly renders correctly when day is '27', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -117405,6 +114896,7 @@ exports[`renders correctly renders correctly when day is '27', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -117443,7 +114935,7 @@ exports[`renders correctly renders correctly when day is '27', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -117463,21 +114955,18 @@ exports[`renders correctly renders correctly when day is '27', month is '1', dis exports[`renders correctly renders correctly when day is '27', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -117499,6 +114988,7 @@ exports[`renders correctly renders correctly when day is '27', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -117537,7 +115027,7 @@ exports[`renders correctly renders correctly when day is '27', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -117557,21 +115047,18 @@ exports[`renders correctly renders correctly when day is '27', month is '1', dis exports[`renders correctly renders correctly when day is '27', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -117593,7 +115080,8 @@ exports[`renders correctly renders correctly when day is '27', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -117610,7 +115098,7 @@ exports[`renders correctly renders correctly when day is '27', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -117651,21 +115139,18 @@ exports[`renders correctly renders correctly when day is '27', month is '2', dis exports[`renders correctly renders correctly when day is '27', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -117687,7 +115172,8 @@ exports[`renders correctly renders correctly when day is '27', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -117704,7 +115190,7 @@ exports[`renders correctly renders correctly when day is '27', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -117745,21 +115231,18 @@ exports[`renders correctly renders correctly when day is '27', month is '2', dis exports[`renders correctly renders correctly when day is '27', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -117781,6 +115264,7 @@ exports[`renders correctly renders correctly when day is '27', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -117819,7 +115303,7 @@ exports[`renders correctly renders correctly when day is '27', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -117839,21 +115323,18 @@ exports[`renders correctly renders correctly when day is '27', month is '2', dis exports[`renders correctly renders correctly when day is '27', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -117875,6 +115356,7 @@ exports[`renders correctly renders correctly when day is '27', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -117913,7 +115395,7 @@ exports[`renders correctly renders correctly when day is '27', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -117933,21 +115415,18 @@ exports[`renders correctly renders correctly when day is '27', month is '2', dis exports[`renders correctly renders correctly when day is '27', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -117969,7 +115448,8 @@ exports[`renders correctly renders correctly when day is '27', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -117986,7 +115466,7 @@ exports[`renders correctly renders correctly when day is '27', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -118027,21 +115507,18 @@ exports[`renders correctly renders correctly when day is '27', month is '3', dis exports[`renders correctly renders correctly when day is '27', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -118063,7 +115540,8 @@ exports[`renders correctly renders correctly when day is '27', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -118080,7 +115558,7 @@ exports[`renders correctly renders correctly when day is '27', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -118121,21 +115599,18 @@ exports[`renders correctly renders correctly when day is '27', month is '3', dis exports[`renders correctly renders correctly when day is '27', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -118157,6 +115632,7 @@ exports[`renders correctly renders correctly when day is '27', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -118195,7 +115671,7 @@ exports[`renders correctly renders correctly when day is '27', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -118215,21 +115691,18 @@ exports[`renders correctly renders correctly when day is '27', month is '3', dis exports[`renders correctly renders correctly when day is '27', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -118251,6 +115724,7 @@ exports[`renders correctly renders correctly when day is '27', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -118289,7 +115763,7 @@ exports[`renders correctly renders correctly when day is '27', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -118309,21 +115783,18 @@ exports[`renders correctly renders correctly when day is '27', month is '3', dis exports[`renders correctly renders correctly when day is '27', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -118345,7 +115816,8 @@ exports[`renders correctly renders correctly when day is '27', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -118362,7 +115834,7 @@ exports[`renders correctly renders correctly when day is '27', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -118403,21 +115875,18 @@ exports[`renders correctly renders correctly when day is '27', month is '4', dis exports[`renders correctly renders correctly when day is '27', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -118439,7 +115908,8 @@ exports[`renders correctly renders correctly when day is '27', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -118456,7 +115926,7 @@ exports[`renders correctly renders correctly when day is '27', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -118497,21 +115967,18 @@ exports[`renders correctly renders correctly when day is '27', month is '4', dis exports[`renders correctly renders correctly when day is '27', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -118533,6 +116000,7 @@ exports[`renders correctly renders correctly when day is '27', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -118571,7 +116039,7 @@ exports[`renders correctly renders correctly when day is '27', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -118591,21 +116059,18 @@ exports[`renders correctly renders correctly when day is '27', month is '4', dis exports[`renders correctly renders correctly when day is '27', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -118627,6 +116092,7 @@ exports[`renders correctly renders correctly when day is '27', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -118665,7 +116131,7 @@ exports[`renders correctly renders correctly when day is '27', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -118685,21 +116151,18 @@ exports[`renders correctly renders correctly when day is '27', month is '4', dis exports[`renders correctly renders correctly when day is '27', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -118721,7 +116184,8 @@ exports[`renders correctly renders correctly when day is '27', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -118738,7 +116202,7 @@ exports[`renders correctly renders correctly when day is '27', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -118779,21 +116243,18 @@ exports[`renders correctly renders correctly when day is '27', month is '5', dis exports[`renders correctly renders correctly when day is '27', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -118815,7 +116276,8 @@ exports[`renders correctly renders correctly when day is '27', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -118832,7 +116294,7 @@ exports[`renders correctly renders correctly when day is '27', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -118873,21 +116335,18 @@ exports[`renders correctly renders correctly when day is '27', month is '5', dis exports[`renders correctly renders correctly when day is '27', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -118909,6 +116368,7 @@ exports[`renders correctly renders correctly when day is '27', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -118947,7 +116407,7 @@ exports[`renders correctly renders correctly when day is '27', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -118967,21 +116427,18 @@ exports[`renders correctly renders correctly when day is '27', month is '5', dis exports[`renders correctly renders correctly when day is '27', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -119003,6 +116460,7 @@ exports[`renders correctly renders correctly when day is '27', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -119041,7 +116499,7 @@ exports[`renders correctly renders correctly when day is '27', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -119061,21 +116519,18 @@ exports[`renders correctly renders correctly when day is '27', month is '5', dis exports[`renders correctly renders correctly when day is '27', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -119097,7 +116552,8 @@ exports[`renders correctly renders correctly when day is '27', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -119114,7 +116570,7 @@ exports[`renders correctly renders correctly when day is '27', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -119155,21 +116611,18 @@ exports[`renders correctly renders correctly when day is '27', month is '6', dis exports[`renders correctly renders correctly when day is '27', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -119191,7 +116644,8 @@ exports[`renders correctly renders correctly when day is '27', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -119208,7 +116662,7 @@ exports[`renders correctly renders correctly when day is '27', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -119249,21 +116703,18 @@ exports[`renders correctly renders correctly when day is '27', month is '6', dis exports[`renders correctly renders correctly when day is '27', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -119285,6 +116736,7 @@ exports[`renders correctly renders correctly when day is '27', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -119323,7 +116775,7 @@ exports[`renders correctly renders correctly when day is '27', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -119343,21 +116795,18 @@ exports[`renders correctly renders correctly when day is '27', month is '6', dis exports[`renders correctly renders correctly when day is '27', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -119379,6 +116828,7 @@ exports[`renders correctly renders correctly when day is '27', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -119417,7 +116867,7 @@ exports[`renders correctly renders correctly when day is '27', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -119437,21 +116887,18 @@ exports[`renders correctly renders correctly when day is '27', month is '6', dis exports[`renders correctly renders correctly when day is '27', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -119473,7 +116920,8 @@ exports[`renders correctly renders correctly when day is '27', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -119490,7 +116938,7 @@ exports[`renders correctly renders correctly when day is '27', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -119531,21 +116979,18 @@ exports[`renders correctly renders correctly when day is '27', month is '7', dis exports[`renders correctly renders correctly when day is '27', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -119567,7 +117012,8 @@ exports[`renders correctly renders correctly when day is '27', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -119584,7 +117030,7 @@ exports[`renders correctly renders correctly when day is '27', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -119625,21 +117071,18 @@ exports[`renders correctly renders correctly when day is '27', month is '7', dis exports[`renders correctly renders correctly when day is '27', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -119661,6 +117104,7 @@ exports[`renders correctly renders correctly when day is '27', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -119699,7 +117143,7 @@ exports[`renders correctly renders correctly when day is '27', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -119719,21 +117163,18 @@ exports[`renders correctly renders correctly when day is '27', month is '7', dis exports[`renders correctly renders correctly when day is '27', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -119755,6 +117196,7 @@ exports[`renders correctly renders correctly when day is '27', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -119793,7 +117235,7 @@ exports[`renders correctly renders correctly when day is '27', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -119813,21 +117255,18 @@ exports[`renders correctly renders correctly when day is '27', month is '7', dis exports[`renders correctly renders correctly when day is '27', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -119849,7 +117288,8 @@ exports[`renders correctly renders correctly when day is '27', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -119866,7 +117306,7 @@ exports[`renders correctly renders correctly when day is '27', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -119907,21 +117347,18 @@ exports[`renders correctly renders correctly when day is '27', month is '8', dis exports[`renders correctly renders correctly when day is '27', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -119943,7 +117380,8 @@ exports[`renders correctly renders correctly when day is '27', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -119960,7 +117398,7 @@ exports[`renders correctly renders correctly when day is '27', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -120001,21 +117439,18 @@ exports[`renders correctly renders correctly when day is '27', month is '8', dis exports[`renders correctly renders correctly when day is '27', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -120037,6 +117472,7 @@ exports[`renders correctly renders correctly when day is '27', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -120075,7 +117511,7 @@ exports[`renders correctly renders correctly when day is '27', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -120095,21 +117531,18 @@ exports[`renders correctly renders correctly when day is '27', month is '8', dis exports[`renders correctly renders correctly when day is '27', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -120131,6 +117564,7 @@ exports[`renders correctly renders correctly when day is '27', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -120169,7 +117603,7 @@ exports[`renders correctly renders correctly when day is '27', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -120189,21 +117623,18 @@ exports[`renders correctly renders correctly when day is '27', month is '8', dis exports[`renders correctly renders correctly when day is '27', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -120225,7 +117656,8 @@ exports[`renders correctly renders correctly when day is '27', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -120242,7 +117674,7 @@ exports[`renders correctly renders correctly when day is '27', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -120283,21 +117715,18 @@ exports[`renders correctly renders correctly when day is '27', month is '9', dis exports[`renders correctly renders correctly when day is '27', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -120319,7 +117748,8 @@ exports[`renders correctly renders correctly when day is '27', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -120336,7 +117766,7 @@ exports[`renders correctly renders correctly when day is '27', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -120377,21 +117807,18 @@ exports[`renders correctly renders correctly when day is '27', month is '9', dis exports[`renders correctly renders correctly when day is '27', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -120413,6 +117840,7 @@ exports[`renders correctly renders correctly when day is '27', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -120451,7 +117879,7 @@ exports[`renders correctly renders correctly when day is '27', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -120471,21 +117899,18 @@ exports[`renders correctly renders correctly when day is '27', month is '9', dis exports[`renders correctly renders correctly when day is '27', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -120507,6 +117932,7 @@ exports[`renders correctly renders correctly when day is '27', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -120545,7 +117971,7 @@ exports[`renders correctly renders correctly when day is '27', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -120565,21 +117991,18 @@ exports[`renders correctly renders correctly when day is '27', month is '9', dis exports[`renders correctly renders correctly when day is '27', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -120601,7 +118024,8 @@ exports[`renders correctly renders correctly when day is '27', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -120618,7 +118042,7 @@ exports[`renders correctly renders correctly when day is '27', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -120659,21 +118083,18 @@ exports[`renders correctly renders correctly when day is '27', month is '10', di exports[`renders correctly renders correctly when day is '27', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -120695,7 +118116,8 @@ exports[`renders correctly renders correctly when day is '27', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -120712,7 +118134,7 @@ exports[`renders correctly renders correctly when day is '27', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -120753,21 +118175,18 @@ exports[`renders correctly renders correctly when day is '27', month is '10', di exports[`renders correctly renders correctly when day is '27', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -120789,6 +118208,7 @@ exports[`renders correctly renders correctly when day is '27', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -120827,7 +118247,7 @@ exports[`renders correctly renders correctly when day is '27', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -120847,21 +118267,18 @@ exports[`renders correctly renders correctly when day is '27', month is '10', di exports[`renders correctly renders correctly when day is '27', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -120883,6 +118300,7 @@ exports[`renders correctly renders correctly when day is '27', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -120921,7 +118339,7 @@ exports[`renders correctly renders correctly when day is '27', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -120941,21 +118359,18 @@ exports[`renders correctly renders correctly when day is '27', month is '10', di exports[`renders correctly renders correctly when day is '27', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -120977,7 +118392,8 @@ exports[`renders correctly renders correctly when day is '27', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -120992,7 +118408,7 @@ exports[`renders correctly renders correctly when day is '27', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -121033,21 +118449,18 @@ exports[`renders correctly renders correctly when day is '27', month is '11', di exports[`renders correctly renders correctly when day is '27', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -121069,7 +118482,8 @@ exports[`renders correctly renders correctly when day is '27', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -121084,7 +118498,7 @@ exports[`renders correctly renders correctly when day is '27', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -121125,21 +118539,18 @@ exports[`renders correctly renders correctly when day is '27', month is '11', di exports[`renders correctly renders correctly when day is '27', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -121161,6 +118572,7 @@ exports[`renders correctly renders correctly when day is '27', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -121197,7 +118609,7 @@ exports[`renders correctly renders correctly when day is '27', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -121217,21 +118629,18 @@ exports[`renders correctly renders correctly when day is '27', month is '11', di exports[`renders correctly renders correctly when day is '27', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -121253,6 +118662,7 @@ exports[`renders correctly renders correctly when day is '27', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -121289,7 +118699,7 @@ exports[`renders correctly renders correctly when day is '27', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -121309,21 +118719,18 @@ exports[`renders correctly renders correctly when day is '27', month is '11', di exports[`renders correctly renders correctly when day is '27', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -121345,7 +118752,8 @@ exports[`renders correctly renders correctly when day is '27', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -121360,7 +118768,7 @@ exports[`renders correctly renders correctly when day is '27', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -121401,21 +118809,18 @@ exports[`renders correctly renders correctly when day is '27', month is '12', di exports[`renders correctly renders correctly when day is '27', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -121437,7 +118842,8 @@ exports[`renders correctly renders correctly when day is '27', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -121452,7 +118858,7 @@ exports[`renders correctly renders correctly when day is '27', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -121493,21 +118899,18 @@ exports[`renders correctly renders correctly when day is '27', month is '12', di exports[`renders correctly renders correctly when day is '27', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -121529,6 +118932,7 @@ exports[`renders correctly renders correctly when day is '27', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -121565,7 +118969,7 @@ exports[`renders correctly renders correctly when day is '27', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -121585,21 +118989,18 @@ exports[`renders correctly renders correctly when day is '27', month is '12', di exports[`renders correctly renders correctly when day is '27', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -121621,6 +119022,7 @@ exports[`renders correctly renders correctly when day is '27', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -121657,7 +119059,7 @@ exports[`renders correctly renders correctly when day is '27', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -121677,21 +119079,18 @@ exports[`renders correctly renders correctly when day is '27', month is '12', di exports[`renders correctly renders correctly when day is '28', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -121713,7 +119112,8 @@ exports[`renders correctly renders correctly when day is '28', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -121730,7 +119130,7 @@ exports[`renders correctly renders correctly when day is '28', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -121771,21 +119171,18 @@ exports[`renders correctly renders correctly when day is '28', month is '1', dis exports[`renders correctly renders correctly when day is '28', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -121807,7 +119204,8 @@ exports[`renders correctly renders correctly when day is '28', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -121824,7 +119222,7 @@ exports[`renders correctly renders correctly when day is '28', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -121865,21 +119263,18 @@ exports[`renders correctly renders correctly when day is '28', month is '1', dis exports[`renders correctly renders correctly when day is '28', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -121901,6 +119296,7 @@ exports[`renders correctly renders correctly when day is '28', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -121939,7 +119335,7 @@ exports[`renders correctly renders correctly when day is '28', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -121959,21 +119355,18 @@ exports[`renders correctly renders correctly when day is '28', month is '1', dis exports[`renders correctly renders correctly when day is '28', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -121995,6 +119388,7 @@ exports[`renders correctly renders correctly when day is '28', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -122033,7 +119427,7 @@ exports[`renders correctly renders correctly when day is '28', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -122053,21 +119447,18 @@ exports[`renders correctly renders correctly when day is '28', month is '1', dis exports[`renders correctly renders correctly when day is '28', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -122089,7 +119480,8 @@ exports[`renders correctly renders correctly when day is '28', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -122106,7 +119498,7 @@ exports[`renders correctly renders correctly when day is '28', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -122147,21 +119539,18 @@ exports[`renders correctly renders correctly when day is '28', month is '2', dis exports[`renders correctly renders correctly when day is '28', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -122183,7 +119572,8 @@ exports[`renders correctly renders correctly when day is '28', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -122200,7 +119590,7 @@ exports[`renders correctly renders correctly when day is '28', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -122241,21 +119631,18 @@ exports[`renders correctly renders correctly when day is '28', month is '2', dis exports[`renders correctly renders correctly when day is '28', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -122277,6 +119664,7 @@ exports[`renders correctly renders correctly when day is '28', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -122315,7 +119703,7 @@ exports[`renders correctly renders correctly when day is '28', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -122335,21 +119723,18 @@ exports[`renders correctly renders correctly when day is '28', month is '2', dis exports[`renders correctly renders correctly when day is '28', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -122371,6 +119756,7 @@ exports[`renders correctly renders correctly when day is '28', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -122409,7 +119795,7 @@ exports[`renders correctly renders correctly when day is '28', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -122429,21 +119815,18 @@ exports[`renders correctly renders correctly when day is '28', month is '2', dis exports[`renders correctly renders correctly when day is '28', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -122465,7 +119848,8 @@ exports[`renders correctly renders correctly when day is '28', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -122482,7 +119866,7 @@ exports[`renders correctly renders correctly when day is '28', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -122523,21 +119907,18 @@ exports[`renders correctly renders correctly when day is '28', month is '3', dis exports[`renders correctly renders correctly when day is '28', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -122559,7 +119940,8 @@ exports[`renders correctly renders correctly when day is '28', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -122576,7 +119958,7 @@ exports[`renders correctly renders correctly when day is '28', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -122617,21 +119999,18 @@ exports[`renders correctly renders correctly when day is '28', month is '3', dis exports[`renders correctly renders correctly when day is '28', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -122653,6 +120032,7 @@ exports[`renders correctly renders correctly when day is '28', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -122691,7 +120071,7 @@ exports[`renders correctly renders correctly when day is '28', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -122711,21 +120091,18 @@ exports[`renders correctly renders correctly when day is '28', month is '3', dis exports[`renders correctly renders correctly when day is '28', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -122747,6 +120124,7 @@ exports[`renders correctly renders correctly when day is '28', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -122785,7 +120163,7 @@ exports[`renders correctly renders correctly when day is '28', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -122805,21 +120183,18 @@ exports[`renders correctly renders correctly when day is '28', month is '3', dis exports[`renders correctly renders correctly when day is '28', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -122841,7 +120216,8 @@ exports[`renders correctly renders correctly when day is '28', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -122858,7 +120234,7 @@ exports[`renders correctly renders correctly when day is '28', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -122899,21 +120275,18 @@ exports[`renders correctly renders correctly when day is '28', month is '4', dis exports[`renders correctly renders correctly when day is '28', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -122935,7 +120308,8 @@ exports[`renders correctly renders correctly when day is '28', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -122952,7 +120326,7 @@ exports[`renders correctly renders correctly when day is '28', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -122993,21 +120367,18 @@ exports[`renders correctly renders correctly when day is '28', month is '4', dis exports[`renders correctly renders correctly when day is '28', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -123029,6 +120400,7 @@ exports[`renders correctly renders correctly when day is '28', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -123067,7 +120439,7 @@ exports[`renders correctly renders correctly when day is '28', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -123087,21 +120459,18 @@ exports[`renders correctly renders correctly when day is '28', month is '4', dis exports[`renders correctly renders correctly when day is '28', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -123123,6 +120492,7 @@ exports[`renders correctly renders correctly when day is '28', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -123161,7 +120531,7 @@ exports[`renders correctly renders correctly when day is '28', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -123181,21 +120551,18 @@ exports[`renders correctly renders correctly when day is '28', month is '4', dis exports[`renders correctly renders correctly when day is '28', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -123217,7 +120584,8 @@ exports[`renders correctly renders correctly when day is '28', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -123234,7 +120602,7 @@ exports[`renders correctly renders correctly when day is '28', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -123275,21 +120643,18 @@ exports[`renders correctly renders correctly when day is '28', month is '5', dis exports[`renders correctly renders correctly when day is '28', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -123311,7 +120676,8 @@ exports[`renders correctly renders correctly when day is '28', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -123328,7 +120694,7 @@ exports[`renders correctly renders correctly when day is '28', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -123369,21 +120735,18 @@ exports[`renders correctly renders correctly when day is '28', month is '5', dis exports[`renders correctly renders correctly when day is '28', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -123405,6 +120768,7 @@ exports[`renders correctly renders correctly when day is '28', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -123443,7 +120807,7 @@ exports[`renders correctly renders correctly when day is '28', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -123463,21 +120827,18 @@ exports[`renders correctly renders correctly when day is '28', month is '5', dis exports[`renders correctly renders correctly when day is '28', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -123499,6 +120860,7 @@ exports[`renders correctly renders correctly when day is '28', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -123537,7 +120899,7 @@ exports[`renders correctly renders correctly when day is '28', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -123557,21 +120919,18 @@ exports[`renders correctly renders correctly when day is '28', month is '5', dis exports[`renders correctly renders correctly when day is '28', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -123593,7 +120952,8 @@ exports[`renders correctly renders correctly when day is '28', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -123610,7 +120970,7 @@ exports[`renders correctly renders correctly when day is '28', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -123651,21 +121011,18 @@ exports[`renders correctly renders correctly when day is '28', month is '6', dis exports[`renders correctly renders correctly when day is '28', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -123687,7 +121044,8 @@ exports[`renders correctly renders correctly when day is '28', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -123704,7 +121062,7 @@ exports[`renders correctly renders correctly when day is '28', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -123745,21 +121103,18 @@ exports[`renders correctly renders correctly when day is '28', month is '6', dis exports[`renders correctly renders correctly when day is '28', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -123781,6 +121136,7 @@ exports[`renders correctly renders correctly when day is '28', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -123819,7 +121175,7 @@ exports[`renders correctly renders correctly when day is '28', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -123839,21 +121195,18 @@ exports[`renders correctly renders correctly when day is '28', month is '6', dis exports[`renders correctly renders correctly when day is '28', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -123875,6 +121228,7 @@ exports[`renders correctly renders correctly when day is '28', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -123913,7 +121267,7 @@ exports[`renders correctly renders correctly when day is '28', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -123933,21 +121287,18 @@ exports[`renders correctly renders correctly when day is '28', month is '6', dis exports[`renders correctly renders correctly when day is '28', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -123969,7 +121320,8 @@ exports[`renders correctly renders correctly when day is '28', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -123986,7 +121338,7 @@ exports[`renders correctly renders correctly when day is '28', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -124027,21 +121379,18 @@ exports[`renders correctly renders correctly when day is '28', month is '7', dis exports[`renders correctly renders correctly when day is '28', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -124063,7 +121412,8 @@ exports[`renders correctly renders correctly when day is '28', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -124080,7 +121430,7 @@ exports[`renders correctly renders correctly when day is '28', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -124121,21 +121471,18 @@ exports[`renders correctly renders correctly when day is '28', month is '7', dis exports[`renders correctly renders correctly when day is '28', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -124157,6 +121504,7 @@ exports[`renders correctly renders correctly when day is '28', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -124195,7 +121543,7 @@ exports[`renders correctly renders correctly when day is '28', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -124215,21 +121563,18 @@ exports[`renders correctly renders correctly when day is '28', month is '7', dis exports[`renders correctly renders correctly when day is '28', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -124251,6 +121596,7 @@ exports[`renders correctly renders correctly when day is '28', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -124289,7 +121635,7 @@ exports[`renders correctly renders correctly when day is '28', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -124309,21 +121655,18 @@ exports[`renders correctly renders correctly when day is '28', month is '7', dis exports[`renders correctly renders correctly when day is '28', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -124345,7 +121688,8 @@ exports[`renders correctly renders correctly when day is '28', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -124362,7 +121706,7 @@ exports[`renders correctly renders correctly when day is '28', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -124403,21 +121747,18 @@ exports[`renders correctly renders correctly when day is '28', month is '8', dis exports[`renders correctly renders correctly when day is '28', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -124439,7 +121780,8 @@ exports[`renders correctly renders correctly when day is '28', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -124456,7 +121798,7 @@ exports[`renders correctly renders correctly when day is '28', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -124497,21 +121839,18 @@ exports[`renders correctly renders correctly when day is '28', month is '8', dis exports[`renders correctly renders correctly when day is '28', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -124533,6 +121872,7 @@ exports[`renders correctly renders correctly when day is '28', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -124571,7 +121911,7 @@ exports[`renders correctly renders correctly when day is '28', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -124591,21 +121931,18 @@ exports[`renders correctly renders correctly when day is '28', month is '8', dis exports[`renders correctly renders correctly when day is '28', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -124627,6 +121964,7 @@ exports[`renders correctly renders correctly when day is '28', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -124665,7 +122003,7 @@ exports[`renders correctly renders correctly when day is '28', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -124685,21 +122023,18 @@ exports[`renders correctly renders correctly when day is '28', month is '8', dis exports[`renders correctly renders correctly when day is '28', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -124721,7 +122056,8 @@ exports[`renders correctly renders correctly when day is '28', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -124738,7 +122074,7 @@ exports[`renders correctly renders correctly when day is '28', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -124779,21 +122115,18 @@ exports[`renders correctly renders correctly when day is '28', month is '9', dis exports[`renders correctly renders correctly when day is '28', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -124815,7 +122148,8 @@ exports[`renders correctly renders correctly when day is '28', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -124832,7 +122166,7 @@ exports[`renders correctly renders correctly when day is '28', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -124873,21 +122207,18 @@ exports[`renders correctly renders correctly when day is '28', month is '9', dis exports[`renders correctly renders correctly when day is '28', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -124909,6 +122240,7 @@ exports[`renders correctly renders correctly when day is '28', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -124947,7 +122279,7 @@ exports[`renders correctly renders correctly when day is '28', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -124967,21 +122299,18 @@ exports[`renders correctly renders correctly when day is '28', month is '9', dis exports[`renders correctly renders correctly when day is '28', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -125003,6 +122332,7 @@ exports[`renders correctly renders correctly when day is '28', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -125041,7 +122371,7 @@ exports[`renders correctly renders correctly when day is '28', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -125061,21 +122391,18 @@ exports[`renders correctly renders correctly when day is '28', month is '9', dis exports[`renders correctly renders correctly when day is '28', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -125097,7 +122424,8 @@ exports[`renders correctly renders correctly when day is '28', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -125114,7 +122442,7 @@ exports[`renders correctly renders correctly when day is '28', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -125155,21 +122483,18 @@ exports[`renders correctly renders correctly when day is '28', month is '10', di exports[`renders correctly renders correctly when day is '28', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -125191,7 +122516,8 @@ exports[`renders correctly renders correctly when day is '28', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -125208,7 +122534,7 @@ exports[`renders correctly renders correctly when day is '28', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -125249,21 +122575,18 @@ exports[`renders correctly renders correctly when day is '28', month is '10', di exports[`renders correctly renders correctly when day is '28', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -125285,6 +122608,7 @@ exports[`renders correctly renders correctly when day is '28', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -125323,7 +122647,7 @@ exports[`renders correctly renders correctly when day is '28', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -125343,21 +122667,18 @@ exports[`renders correctly renders correctly when day is '28', month is '10', di exports[`renders correctly renders correctly when day is '28', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -125379,6 +122700,7 @@ exports[`renders correctly renders correctly when day is '28', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -125417,7 +122739,7 @@ exports[`renders correctly renders correctly when day is '28', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -125437,21 +122759,18 @@ exports[`renders correctly renders correctly when day is '28', month is '10', di exports[`renders correctly renders correctly when day is '28', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -125473,7 +122792,8 @@ exports[`renders correctly renders correctly when day is '28', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -125488,7 +122808,7 @@ exports[`renders correctly renders correctly when day is '28', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -125529,21 +122849,18 @@ exports[`renders correctly renders correctly when day is '28', month is '11', di exports[`renders correctly renders correctly when day is '28', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -125565,7 +122882,8 @@ exports[`renders correctly renders correctly when day is '28', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -125580,7 +122898,7 @@ exports[`renders correctly renders correctly when day is '28', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -125621,21 +122939,18 @@ exports[`renders correctly renders correctly when day is '28', month is '11', di exports[`renders correctly renders correctly when day is '28', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -125657,6 +122972,7 @@ exports[`renders correctly renders correctly when day is '28', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -125693,7 +123009,7 @@ exports[`renders correctly renders correctly when day is '28', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -125713,21 +123029,18 @@ exports[`renders correctly renders correctly when day is '28', month is '11', di exports[`renders correctly renders correctly when day is '28', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -125749,6 +123062,7 @@ exports[`renders correctly renders correctly when day is '28', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -125785,7 +123099,7 @@ exports[`renders correctly renders correctly when day is '28', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -125805,21 +123119,18 @@ exports[`renders correctly renders correctly when day is '28', month is '11', di exports[`renders correctly renders correctly when day is '28', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -125841,7 +123152,8 @@ exports[`renders correctly renders correctly when day is '28', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -125856,7 +123168,7 @@ exports[`renders correctly renders correctly when day is '28', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -125897,21 +123209,18 @@ exports[`renders correctly renders correctly when day is '28', month is '12', di exports[`renders correctly renders correctly when day is '28', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -125933,7 +123242,8 @@ exports[`renders correctly renders correctly when day is '28', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -125948,7 +123258,7 @@ exports[`renders correctly renders correctly when day is '28', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -125989,21 +123299,18 @@ exports[`renders correctly renders correctly when day is '28', month is '12', di exports[`renders correctly renders correctly when day is '28', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -126025,6 +123332,7 @@ exports[`renders correctly renders correctly when day is '28', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -126061,7 +123369,7 @@ exports[`renders correctly renders correctly when day is '28', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -126081,21 +123389,18 @@ exports[`renders correctly renders correctly when day is '28', month is '12', di exports[`renders correctly renders correctly when day is '28', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -126117,6 +123422,7 @@ exports[`renders correctly renders correctly when day is '28', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -126153,7 +123459,7 @@ exports[`renders correctly renders correctly when day is '28', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -126173,21 +123479,18 @@ exports[`renders correctly renders correctly when day is '28', month is '12', di exports[`renders correctly renders correctly when day is '29', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -126209,7 +123512,8 @@ exports[`renders correctly renders correctly when day is '29', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -126226,7 +123530,7 @@ exports[`renders correctly renders correctly when day is '29', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -126267,21 +123571,18 @@ exports[`renders correctly renders correctly when day is '29', month is '1', dis exports[`renders correctly renders correctly when day is '29', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -126303,7 +123604,8 @@ exports[`renders correctly renders correctly when day is '29', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -126320,7 +123622,7 @@ exports[`renders correctly renders correctly when day is '29', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -126361,21 +123663,18 @@ exports[`renders correctly renders correctly when day is '29', month is '1', dis exports[`renders correctly renders correctly when day is '29', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -126397,6 +123696,7 @@ exports[`renders correctly renders correctly when day is '29', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -126435,7 +123735,7 @@ exports[`renders correctly renders correctly when day is '29', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -126455,21 +123755,18 @@ exports[`renders correctly renders correctly when day is '29', month is '1', dis exports[`renders correctly renders correctly when day is '29', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -126491,6 +123788,7 @@ exports[`renders correctly renders correctly when day is '29', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -126529,7 +123827,7 @@ exports[`renders correctly renders correctly when day is '29', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -126549,21 +123847,18 @@ exports[`renders correctly renders correctly when day is '29', month is '1', dis exports[`renders correctly renders correctly when day is '29', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -126585,7 +123880,8 @@ exports[`renders correctly renders correctly when day is '29', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -126602,7 +123898,7 @@ exports[`renders correctly renders correctly when day is '29', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -126643,21 +123939,18 @@ exports[`renders correctly renders correctly when day is '29', month is '2', dis exports[`renders correctly renders correctly when day is '29', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -126679,7 +123972,8 @@ exports[`renders correctly renders correctly when day is '29', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -126696,7 +123990,7 @@ exports[`renders correctly renders correctly when day is '29', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -126737,21 +124031,18 @@ exports[`renders correctly renders correctly when day is '29', month is '2', dis exports[`renders correctly renders correctly when day is '29', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -126773,6 +124064,7 @@ exports[`renders correctly renders correctly when day is '29', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -126811,7 +124103,7 @@ exports[`renders correctly renders correctly when day is '29', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -126831,21 +124123,18 @@ exports[`renders correctly renders correctly when day is '29', month is '2', dis exports[`renders correctly renders correctly when day is '29', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -126867,6 +124156,7 @@ exports[`renders correctly renders correctly when day is '29', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -126905,7 +124195,7 @@ exports[`renders correctly renders correctly when day is '29', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -126925,21 +124215,18 @@ exports[`renders correctly renders correctly when day is '29', month is '2', dis exports[`renders correctly renders correctly when day is '29', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -126961,7 +124248,8 @@ exports[`renders correctly renders correctly when day is '29', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -126978,7 +124266,7 @@ exports[`renders correctly renders correctly when day is '29', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -127019,21 +124307,18 @@ exports[`renders correctly renders correctly when day is '29', month is '3', dis exports[`renders correctly renders correctly when day is '29', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -127055,7 +124340,8 @@ exports[`renders correctly renders correctly when day is '29', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -127072,7 +124358,7 @@ exports[`renders correctly renders correctly when day is '29', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -127113,21 +124399,18 @@ exports[`renders correctly renders correctly when day is '29', month is '3', dis exports[`renders correctly renders correctly when day is '29', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -127149,6 +124432,7 @@ exports[`renders correctly renders correctly when day is '29', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -127187,7 +124471,7 @@ exports[`renders correctly renders correctly when day is '29', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -127207,21 +124491,18 @@ exports[`renders correctly renders correctly when day is '29', month is '3', dis exports[`renders correctly renders correctly when day is '29', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -127243,6 +124524,7 @@ exports[`renders correctly renders correctly when day is '29', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -127281,7 +124563,7 @@ exports[`renders correctly renders correctly when day is '29', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -127301,21 +124583,18 @@ exports[`renders correctly renders correctly when day is '29', month is '3', dis exports[`renders correctly renders correctly when day is '29', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -127337,7 +124616,8 @@ exports[`renders correctly renders correctly when day is '29', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -127354,7 +124634,7 @@ exports[`renders correctly renders correctly when day is '29', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -127395,21 +124675,18 @@ exports[`renders correctly renders correctly when day is '29', month is '4', dis exports[`renders correctly renders correctly when day is '29', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -127431,7 +124708,8 @@ exports[`renders correctly renders correctly when day is '29', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -127448,7 +124726,7 @@ exports[`renders correctly renders correctly when day is '29', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -127489,21 +124767,18 @@ exports[`renders correctly renders correctly when day is '29', month is '4', dis exports[`renders correctly renders correctly when day is '29', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -127525,6 +124800,7 @@ exports[`renders correctly renders correctly when day is '29', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -127563,7 +124839,7 @@ exports[`renders correctly renders correctly when day is '29', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -127583,21 +124859,18 @@ exports[`renders correctly renders correctly when day is '29', month is '4', dis exports[`renders correctly renders correctly when day is '29', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -127619,6 +124892,7 @@ exports[`renders correctly renders correctly when day is '29', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -127657,7 +124931,7 @@ exports[`renders correctly renders correctly when day is '29', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -127677,21 +124951,18 @@ exports[`renders correctly renders correctly when day is '29', month is '4', dis exports[`renders correctly renders correctly when day is '29', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -127713,7 +124984,8 @@ exports[`renders correctly renders correctly when day is '29', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -127730,7 +125002,7 @@ exports[`renders correctly renders correctly when day is '29', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -127771,21 +125043,18 @@ exports[`renders correctly renders correctly when day is '29', month is '5', dis exports[`renders correctly renders correctly when day is '29', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -127807,7 +125076,8 @@ exports[`renders correctly renders correctly when day is '29', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -127824,7 +125094,7 @@ exports[`renders correctly renders correctly when day is '29', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -127865,21 +125135,18 @@ exports[`renders correctly renders correctly when day is '29', month is '5', dis exports[`renders correctly renders correctly when day is '29', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -127901,6 +125168,7 @@ exports[`renders correctly renders correctly when day is '29', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -127939,7 +125207,7 @@ exports[`renders correctly renders correctly when day is '29', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -127959,21 +125227,18 @@ exports[`renders correctly renders correctly when day is '29', month is '5', dis exports[`renders correctly renders correctly when day is '29', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -127995,6 +125260,7 @@ exports[`renders correctly renders correctly when day is '29', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -128033,7 +125299,7 @@ exports[`renders correctly renders correctly when day is '29', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -128053,21 +125319,18 @@ exports[`renders correctly renders correctly when day is '29', month is '5', dis exports[`renders correctly renders correctly when day is '29', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -128089,7 +125352,8 @@ exports[`renders correctly renders correctly when day is '29', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -128106,7 +125370,7 @@ exports[`renders correctly renders correctly when day is '29', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -128147,21 +125411,18 @@ exports[`renders correctly renders correctly when day is '29', month is '6', dis exports[`renders correctly renders correctly when day is '29', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -128183,7 +125444,8 @@ exports[`renders correctly renders correctly when day is '29', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -128200,7 +125462,7 @@ exports[`renders correctly renders correctly when day is '29', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -128241,21 +125503,18 @@ exports[`renders correctly renders correctly when day is '29', month is '6', dis exports[`renders correctly renders correctly when day is '29', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -128277,6 +125536,7 @@ exports[`renders correctly renders correctly when day is '29', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -128315,7 +125575,7 @@ exports[`renders correctly renders correctly when day is '29', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -128335,21 +125595,18 @@ exports[`renders correctly renders correctly when day is '29', month is '6', dis exports[`renders correctly renders correctly when day is '29', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -128371,6 +125628,7 @@ exports[`renders correctly renders correctly when day is '29', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -128409,7 +125667,7 @@ exports[`renders correctly renders correctly when day is '29', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -128429,21 +125687,18 @@ exports[`renders correctly renders correctly when day is '29', month is '6', dis exports[`renders correctly renders correctly when day is '29', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -128465,7 +125720,8 @@ exports[`renders correctly renders correctly when day is '29', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -128482,7 +125738,7 @@ exports[`renders correctly renders correctly when day is '29', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -128523,21 +125779,18 @@ exports[`renders correctly renders correctly when day is '29', month is '7', dis exports[`renders correctly renders correctly when day is '29', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -128559,7 +125812,8 @@ exports[`renders correctly renders correctly when day is '29', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -128576,7 +125830,7 @@ exports[`renders correctly renders correctly when day is '29', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -128617,21 +125871,18 @@ exports[`renders correctly renders correctly when day is '29', month is '7', dis exports[`renders correctly renders correctly when day is '29', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -128653,6 +125904,7 @@ exports[`renders correctly renders correctly when day is '29', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -128691,7 +125943,7 @@ exports[`renders correctly renders correctly when day is '29', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -128711,21 +125963,18 @@ exports[`renders correctly renders correctly when day is '29', month is '7', dis exports[`renders correctly renders correctly when day is '29', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -128747,6 +125996,7 @@ exports[`renders correctly renders correctly when day is '29', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -128785,7 +126035,7 @@ exports[`renders correctly renders correctly when day is '29', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -128805,21 +126055,18 @@ exports[`renders correctly renders correctly when day is '29', month is '7', dis exports[`renders correctly renders correctly when day is '29', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -128841,7 +126088,8 @@ exports[`renders correctly renders correctly when day is '29', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -128858,7 +126106,7 @@ exports[`renders correctly renders correctly when day is '29', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -128899,21 +126147,18 @@ exports[`renders correctly renders correctly when day is '29', month is '8', dis exports[`renders correctly renders correctly when day is '29', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -128935,7 +126180,8 @@ exports[`renders correctly renders correctly when day is '29', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -128952,7 +126198,7 @@ exports[`renders correctly renders correctly when day is '29', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -128993,21 +126239,18 @@ exports[`renders correctly renders correctly when day is '29', month is '8', dis exports[`renders correctly renders correctly when day is '29', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -129029,6 +126272,7 @@ exports[`renders correctly renders correctly when day is '29', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -129067,7 +126311,7 @@ exports[`renders correctly renders correctly when day is '29', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -129087,21 +126331,18 @@ exports[`renders correctly renders correctly when day is '29', month is '8', dis exports[`renders correctly renders correctly when day is '29', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -129123,6 +126364,7 @@ exports[`renders correctly renders correctly when day is '29', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -129161,7 +126403,7 @@ exports[`renders correctly renders correctly when day is '29', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -129181,21 +126423,18 @@ exports[`renders correctly renders correctly when day is '29', month is '8', dis exports[`renders correctly renders correctly when day is '29', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -129217,7 +126456,8 @@ exports[`renders correctly renders correctly when day is '29', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -129234,7 +126474,7 @@ exports[`renders correctly renders correctly when day is '29', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -129275,21 +126515,18 @@ exports[`renders correctly renders correctly when day is '29', month is '9', dis exports[`renders correctly renders correctly when day is '29', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -129311,7 +126548,8 @@ exports[`renders correctly renders correctly when day is '29', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -129328,7 +126566,7 @@ exports[`renders correctly renders correctly when day is '29', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -129369,21 +126607,18 @@ exports[`renders correctly renders correctly when day is '29', month is '9', dis exports[`renders correctly renders correctly when day is '29', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -129405,6 +126640,7 @@ exports[`renders correctly renders correctly when day is '29', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -129443,7 +126679,7 @@ exports[`renders correctly renders correctly when day is '29', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -129463,21 +126699,18 @@ exports[`renders correctly renders correctly when day is '29', month is '9', dis exports[`renders correctly renders correctly when day is '29', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -129499,6 +126732,7 @@ exports[`renders correctly renders correctly when day is '29', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -129537,7 +126771,7 @@ exports[`renders correctly renders correctly when day is '29', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -129557,21 +126791,18 @@ exports[`renders correctly renders correctly when day is '29', month is '9', dis exports[`renders correctly renders correctly when day is '29', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -129593,7 +126824,8 @@ exports[`renders correctly renders correctly when day is '29', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -129610,7 +126842,7 @@ exports[`renders correctly renders correctly when day is '29', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -129651,21 +126883,18 @@ exports[`renders correctly renders correctly when day is '29', month is '10', di exports[`renders correctly renders correctly when day is '29', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -129687,7 +126916,8 @@ exports[`renders correctly renders correctly when day is '29', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -129704,7 +126934,7 @@ exports[`renders correctly renders correctly when day is '29', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -129745,21 +126975,18 @@ exports[`renders correctly renders correctly when day is '29', month is '10', di exports[`renders correctly renders correctly when day is '29', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -129781,6 +127008,7 @@ exports[`renders correctly renders correctly when day is '29', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -129819,7 +127047,7 @@ exports[`renders correctly renders correctly when day is '29', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -129839,21 +127067,18 @@ exports[`renders correctly renders correctly when day is '29', month is '10', di exports[`renders correctly renders correctly when day is '29', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -129875,6 +127100,7 @@ exports[`renders correctly renders correctly when day is '29', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -129913,7 +127139,7 @@ exports[`renders correctly renders correctly when day is '29', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -129933,21 +127159,18 @@ exports[`renders correctly renders correctly when day is '29', month is '10', di exports[`renders correctly renders correctly when day is '29', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -129969,7 +127192,8 @@ exports[`renders correctly renders correctly when day is '29', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -129984,7 +127208,7 @@ exports[`renders correctly renders correctly when day is '29', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -130025,21 +127249,18 @@ exports[`renders correctly renders correctly when day is '29', month is '11', di exports[`renders correctly renders correctly when day is '29', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -130061,7 +127282,8 @@ exports[`renders correctly renders correctly when day is '29', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -130076,7 +127298,7 @@ exports[`renders correctly renders correctly when day is '29', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -130117,21 +127339,18 @@ exports[`renders correctly renders correctly when day is '29', month is '11', di exports[`renders correctly renders correctly when day is '29', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -130153,6 +127372,7 @@ exports[`renders correctly renders correctly when day is '29', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -130189,7 +127409,7 @@ exports[`renders correctly renders correctly when day is '29', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -130209,21 +127429,18 @@ exports[`renders correctly renders correctly when day is '29', month is '11', di exports[`renders correctly renders correctly when day is '29', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -130245,6 +127462,7 @@ exports[`renders correctly renders correctly when day is '29', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -130281,7 +127499,7 @@ exports[`renders correctly renders correctly when day is '29', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -130301,21 +127519,18 @@ exports[`renders correctly renders correctly when day is '29', month is '11', di exports[`renders correctly renders correctly when day is '29', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -130337,7 +127552,8 @@ exports[`renders correctly renders correctly when day is '29', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -130352,7 +127568,7 @@ exports[`renders correctly renders correctly when day is '29', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -130393,21 +127609,18 @@ exports[`renders correctly renders correctly when day is '29', month is '12', di exports[`renders correctly renders correctly when day is '29', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -130429,7 +127642,8 @@ exports[`renders correctly renders correctly when day is '29', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -130444,7 +127658,7 @@ exports[`renders correctly renders correctly when day is '29', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -130485,21 +127699,18 @@ exports[`renders correctly renders correctly when day is '29', month is '12', di exports[`renders correctly renders correctly when day is '29', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -130521,6 +127732,7 @@ exports[`renders correctly renders correctly when day is '29', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -130557,7 +127769,7 @@ exports[`renders correctly renders correctly when day is '29', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -130577,21 +127789,18 @@ exports[`renders correctly renders correctly when day is '29', month is '12', di exports[`renders correctly renders correctly when day is '29', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -130613,6 +127822,7 @@ exports[`renders correctly renders correctly when day is '29', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -130649,7 +127859,7 @@ exports[`renders correctly renders correctly when day is '29', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -130669,21 +127879,18 @@ exports[`renders correctly renders correctly when day is '29', month is '12', di exports[`renders correctly renders correctly when day is '30', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -130705,7 +127912,8 @@ exports[`renders correctly renders correctly when day is '30', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -130722,7 +127930,7 @@ exports[`renders correctly renders correctly when day is '30', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -130763,21 +127971,18 @@ exports[`renders correctly renders correctly when day is '30', month is '1', dis exports[`renders correctly renders correctly when day is '30', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -130799,7 +128004,8 @@ exports[`renders correctly renders correctly when day is '30', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -130816,7 +128022,7 @@ exports[`renders correctly renders correctly when day is '30', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -130857,21 +128063,18 @@ exports[`renders correctly renders correctly when day is '30', month is '1', dis exports[`renders correctly renders correctly when day is '30', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -130893,6 +128096,7 @@ exports[`renders correctly renders correctly when day is '30', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -130931,7 +128135,7 @@ exports[`renders correctly renders correctly when day is '30', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -130951,21 +128155,18 @@ exports[`renders correctly renders correctly when day is '30', month is '1', dis exports[`renders correctly renders correctly when day is '30', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -130987,6 +128188,7 @@ exports[`renders correctly renders correctly when day is '30', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -131025,7 +128227,7 @@ exports[`renders correctly renders correctly when day is '30', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -131045,21 +128247,18 @@ exports[`renders correctly renders correctly when day is '30', month is '1', dis exports[`renders correctly renders correctly when day is '30', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -131081,7 +128280,8 @@ exports[`renders correctly renders correctly when day is '30', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -131098,7 +128298,7 @@ exports[`renders correctly renders correctly when day is '30', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -131139,21 +128339,18 @@ exports[`renders correctly renders correctly when day is '30', month is '2', dis exports[`renders correctly renders correctly when day is '30', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -131175,7 +128372,8 @@ exports[`renders correctly renders correctly when day is '30', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -131192,7 +128390,7 @@ exports[`renders correctly renders correctly when day is '30', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -131233,21 +128431,18 @@ exports[`renders correctly renders correctly when day is '30', month is '2', dis exports[`renders correctly renders correctly when day is '30', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -131269,6 +128464,7 @@ exports[`renders correctly renders correctly when day is '30', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -131307,7 +128503,7 @@ exports[`renders correctly renders correctly when day is '30', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -131327,21 +128523,18 @@ exports[`renders correctly renders correctly when day is '30', month is '2', dis exports[`renders correctly renders correctly when day is '30', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -131363,6 +128556,7 @@ exports[`renders correctly renders correctly when day is '30', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -131401,7 +128595,7 @@ exports[`renders correctly renders correctly when day is '30', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -131421,21 +128615,18 @@ exports[`renders correctly renders correctly when day is '30', month is '2', dis exports[`renders correctly renders correctly when day is '30', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -131457,7 +128648,8 @@ exports[`renders correctly renders correctly when day is '30', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -131474,7 +128666,7 @@ exports[`renders correctly renders correctly when day is '30', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -131515,21 +128707,18 @@ exports[`renders correctly renders correctly when day is '30', month is '3', dis exports[`renders correctly renders correctly when day is '30', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -131551,7 +128740,8 @@ exports[`renders correctly renders correctly when day is '30', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -131568,7 +128758,7 @@ exports[`renders correctly renders correctly when day is '30', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -131609,21 +128799,18 @@ exports[`renders correctly renders correctly when day is '30', month is '3', dis exports[`renders correctly renders correctly when day is '30', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -131645,6 +128832,7 @@ exports[`renders correctly renders correctly when day is '30', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -131683,7 +128871,7 @@ exports[`renders correctly renders correctly when day is '30', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -131703,21 +128891,18 @@ exports[`renders correctly renders correctly when day is '30', month is '3', dis exports[`renders correctly renders correctly when day is '30', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -131739,6 +128924,7 @@ exports[`renders correctly renders correctly when day is '30', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -131777,7 +128963,7 @@ exports[`renders correctly renders correctly when day is '30', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -131797,21 +128983,18 @@ exports[`renders correctly renders correctly when day is '30', month is '3', dis exports[`renders correctly renders correctly when day is '30', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -131833,7 +129016,8 @@ exports[`renders correctly renders correctly when day is '30', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -131850,7 +129034,7 @@ exports[`renders correctly renders correctly when day is '30', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -131891,21 +129075,18 @@ exports[`renders correctly renders correctly when day is '30', month is '4', dis exports[`renders correctly renders correctly when day is '30', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -131927,7 +129108,8 @@ exports[`renders correctly renders correctly when day is '30', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -131944,7 +129126,7 @@ exports[`renders correctly renders correctly when day is '30', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -131985,21 +129167,18 @@ exports[`renders correctly renders correctly when day is '30', month is '4', dis exports[`renders correctly renders correctly when day is '30', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -132021,6 +129200,7 @@ exports[`renders correctly renders correctly when day is '30', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -132059,7 +129239,7 @@ exports[`renders correctly renders correctly when day is '30', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -132079,21 +129259,18 @@ exports[`renders correctly renders correctly when day is '30', month is '4', dis exports[`renders correctly renders correctly when day is '30', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -132115,6 +129292,7 @@ exports[`renders correctly renders correctly when day is '30', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -132153,7 +129331,7 @@ exports[`renders correctly renders correctly when day is '30', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -132173,21 +129351,18 @@ exports[`renders correctly renders correctly when day is '30', month is '4', dis exports[`renders correctly renders correctly when day is '30', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -132209,7 +129384,8 @@ exports[`renders correctly renders correctly when day is '30', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -132226,7 +129402,7 @@ exports[`renders correctly renders correctly when day is '30', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -132267,21 +129443,18 @@ exports[`renders correctly renders correctly when day is '30', month is '5', dis exports[`renders correctly renders correctly when day is '30', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -132303,7 +129476,8 @@ exports[`renders correctly renders correctly when day is '30', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -132320,7 +129494,7 @@ exports[`renders correctly renders correctly when day is '30', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -132361,21 +129535,18 @@ exports[`renders correctly renders correctly when day is '30', month is '5', dis exports[`renders correctly renders correctly when day is '30', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -132397,6 +129568,7 @@ exports[`renders correctly renders correctly when day is '30', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -132435,7 +129607,7 @@ exports[`renders correctly renders correctly when day is '30', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -132455,21 +129627,18 @@ exports[`renders correctly renders correctly when day is '30', month is '5', dis exports[`renders correctly renders correctly when day is '30', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -132491,6 +129660,7 @@ exports[`renders correctly renders correctly when day is '30', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -132529,7 +129699,7 @@ exports[`renders correctly renders correctly when day is '30', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -132549,21 +129719,18 @@ exports[`renders correctly renders correctly when day is '30', month is '5', dis exports[`renders correctly renders correctly when day is '30', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -132585,7 +129752,8 @@ exports[`renders correctly renders correctly when day is '30', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -132602,7 +129770,7 @@ exports[`renders correctly renders correctly when day is '30', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -132643,21 +129811,18 @@ exports[`renders correctly renders correctly when day is '30', month is '6', dis exports[`renders correctly renders correctly when day is '30', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -132679,7 +129844,8 @@ exports[`renders correctly renders correctly when day is '30', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -132696,7 +129862,7 @@ exports[`renders correctly renders correctly when day is '30', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -132737,21 +129903,18 @@ exports[`renders correctly renders correctly when day is '30', month is '6', dis exports[`renders correctly renders correctly when day is '30', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -132773,6 +129936,7 @@ exports[`renders correctly renders correctly when day is '30', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -132811,7 +129975,7 @@ exports[`renders correctly renders correctly when day is '30', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -132831,21 +129995,18 @@ exports[`renders correctly renders correctly when day is '30', month is '6', dis exports[`renders correctly renders correctly when day is '30', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -132867,6 +130028,7 @@ exports[`renders correctly renders correctly when day is '30', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -132905,7 +130067,7 @@ exports[`renders correctly renders correctly when day is '30', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -132925,21 +130087,18 @@ exports[`renders correctly renders correctly when day is '30', month is '6', dis exports[`renders correctly renders correctly when day is '30', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -132961,7 +130120,8 @@ exports[`renders correctly renders correctly when day is '30', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -132978,7 +130138,7 @@ exports[`renders correctly renders correctly when day is '30', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -133019,21 +130179,18 @@ exports[`renders correctly renders correctly when day is '30', month is '7', dis exports[`renders correctly renders correctly when day is '30', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -133055,7 +130212,8 @@ exports[`renders correctly renders correctly when day is '30', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -133072,7 +130230,7 @@ exports[`renders correctly renders correctly when day is '30', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -133113,21 +130271,18 @@ exports[`renders correctly renders correctly when day is '30', month is '7', dis exports[`renders correctly renders correctly when day is '30', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -133149,6 +130304,7 @@ exports[`renders correctly renders correctly when day is '30', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -133187,7 +130343,7 @@ exports[`renders correctly renders correctly when day is '30', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -133207,21 +130363,18 @@ exports[`renders correctly renders correctly when day is '30', month is '7', dis exports[`renders correctly renders correctly when day is '30', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -133243,6 +130396,7 @@ exports[`renders correctly renders correctly when day is '30', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -133281,7 +130435,7 @@ exports[`renders correctly renders correctly when day is '30', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -133301,21 +130455,18 @@ exports[`renders correctly renders correctly when day is '30', month is '7', dis exports[`renders correctly renders correctly when day is '30', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -133337,7 +130488,8 @@ exports[`renders correctly renders correctly when day is '30', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -133354,7 +130506,7 @@ exports[`renders correctly renders correctly when day is '30', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -133395,21 +130547,18 @@ exports[`renders correctly renders correctly when day is '30', month is '8', dis exports[`renders correctly renders correctly when day is '30', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -133431,7 +130580,8 @@ exports[`renders correctly renders correctly when day is '30', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -133448,7 +130598,7 @@ exports[`renders correctly renders correctly when day is '30', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -133489,21 +130639,18 @@ exports[`renders correctly renders correctly when day is '30', month is '8', dis exports[`renders correctly renders correctly when day is '30', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -133525,6 +130672,7 @@ exports[`renders correctly renders correctly when day is '30', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -133563,7 +130711,7 @@ exports[`renders correctly renders correctly when day is '30', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -133583,21 +130731,18 @@ exports[`renders correctly renders correctly when day is '30', month is '8', dis exports[`renders correctly renders correctly when day is '30', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -133619,6 +130764,7 @@ exports[`renders correctly renders correctly when day is '30', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -133657,7 +130803,7 @@ exports[`renders correctly renders correctly when day is '30', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -133677,21 +130823,18 @@ exports[`renders correctly renders correctly when day is '30', month is '8', dis exports[`renders correctly renders correctly when day is '30', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -133713,7 +130856,8 @@ exports[`renders correctly renders correctly when day is '30', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -133730,7 +130874,7 @@ exports[`renders correctly renders correctly when day is '30', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -133771,21 +130915,18 @@ exports[`renders correctly renders correctly when day is '30', month is '9', dis exports[`renders correctly renders correctly when day is '30', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -133807,7 +130948,8 @@ exports[`renders correctly renders correctly when day is '30', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -133824,7 +130966,7 @@ exports[`renders correctly renders correctly when day is '30', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -133865,21 +131007,18 @@ exports[`renders correctly renders correctly when day is '30', month is '9', dis exports[`renders correctly renders correctly when day is '30', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -133901,6 +131040,7 @@ exports[`renders correctly renders correctly when day is '30', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -133939,7 +131079,7 @@ exports[`renders correctly renders correctly when day is '30', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -133959,21 +131099,18 @@ exports[`renders correctly renders correctly when day is '30', month is '9', dis exports[`renders correctly renders correctly when day is '30', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -133995,6 +131132,7 @@ exports[`renders correctly renders correctly when day is '30', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -134033,7 +131171,7 @@ exports[`renders correctly renders correctly when day is '30', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -134053,21 +131191,18 @@ exports[`renders correctly renders correctly when day is '30', month is '9', dis exports[`renders correctly renders correctly when day is '30', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -134089,7 +131224,8 @@ exports[`renders correctly renders correctly when day is '30', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -134106,7 +131242,7 @@ exports[`renders correctly renders correctly when day is '30', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -134147,21 +131283,18 @@ exports[`renders correctly renders correctly when day is '30', month is '10', di exports[`renders correctly renders correctly when day is '30', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -134183,7 +131316,8 @@ exports[`renders correctly renders correctly when day is '30', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -134200,7 +131334,7 @@ exports[`renders correctly renders correctly when day is '30', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -134241,21 +131375,18 @@ exports[`renders correctly renders correctly when day is '30', month is '10', di exports[`renders correctly renders correctly when day is '30', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -134277,6 +131408,7 @@ exports[`renders correctly renders correctly when day is '30', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -134315,7 +131447,7 @@ exports[`renders correctly renders correctly when day is '30', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -134335,21 +131467,18 @@ exports[`renders correctly renders correctly when day is '30', month is '10', di exports[`renders correctly renders correctly when day is '30', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -134371,6 +131500,7 @@ exports[`renders correctly renders correctly when day is '30', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -134409,7 +131539,7 @@ exports[`renders correctly renders correctly when day is '30', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -134429,21 +131559,18 @@ exports[`renders correctly renders correctly when day is '30', month is '10', di exports[`renders correctly renders correctly when day is '30', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -134465,7 +131592,8 @@ exports[`renders correctly renders correctly when day is '30', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -134480,7 +131608,7 @@ exports[`renders correctly renders correctly when day is '30', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -134521,21 +131649,18 @@ exports[`renders correctly renders correctly when day is '30', month is '11', di exports[`renders correctly renders correctly when day is '30', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -134557,7 +131682,8 @@ exports[`renders correctly renders correctly when day is '30', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -134572,7 +131698,7 @@ exports[`renders correctly renders correctly when day is '30', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -134613,21 +131739,18 @@ exports[`renders correctly renders correctly when day is '30', month is '11', di exports[`renders correctly renders correctly when day is '30', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -134649,6 +131772,7 @@ exports[`renders correctly renders correctly when day is '30', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -134685,7 +131809,7 @@ exports[`renders correctly renders correctly when day is '30', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -134705,21 +131829,18 @@ exports[`renders correctly renders correctly when day is '30', month is '11', di exports[`renders correctly renders correctly when day is '30', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -134741,6 +131862,7 @@ exports[`renders correctly renders correctly when day is '30', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -134777,7 +131899,7 @@ exports[`renders correctly renders correctly when day is '30', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -134797,21 +131919,18 @@ exports[`renders correctly renders correctly when day is '30', month is '11', di exports[`renders correctly renders correctly when day is '30', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -134833,7 +131952,8 @@ exports[`renders correctly renders correctly when day is '30', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -134848,7 +131968,7 @@ exports[`renders correctly renders correctly when day is '30', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -134889,21 +132009,18 @@ exports[`renders correctly renders correctly when day is '30', month is '12', di exports[`renders correctly renders correctly when day is '30', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -134925,7 +132042,8 @@ exports[`renders correctly renders correctly when day is '30', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -134940,7 +132058,7 @@ exports[`renders correctly renders correctly when day is '30', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -134981,21 +132099,18 @@ exports[`renders correctly renders correctly when day is '30', month is '12', di exports[`renders correctly renders correctly when day is '30', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -135017,6 +132132,7 @@ exports[`renders correctly renders correctly when day is '30', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -135053,7 +132169,7 @@ exports[`renders correctly renders correctly when day is '30', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -135073,21 +132189,18 @@ exports[`renders correctly renders correctly when day is '30', month is '12', di exports[`renders correctly renders correctly when day is '30', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -135109,6 +132222,7 @@ exports[`renders correctly renders correctly when day is '30', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -135145,7 +132259,7 @@ exports[`renders correctly renders correctly when day is '30', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -135165,21 +132279,18 @@ exports[`renders correctly renders correctly when day is '30', month is '12', di exports[`renders correctly renders correctly when day is '31', month is '1', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -135201,7 +132312,8 @@ exports[`renders correctly renders correctly when day is '31', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -135218,7 +132330,7 @@ exports[`renders correctly renders correctly when day is '31', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -135259,21 +132371,18 @@ exports[`renders correctly renders correctly when day is '31', month is '1', dis exports[`renders correctly renders correctly when day is '31', month is '1', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -135295,7 +132404,8 @@ exports[`renders correctly renders correctly when day is '31', month is '1', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -135312,7 +132422,7 @@ exports[`renders correctly renders correctly when day is '31', month is '1', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -135353,21 +132463,18 @@ exports[`renders correctly renders correctly when day is '31', month is '1', dis exports[`renders correctly renders correctly when day is '31', month is '1', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -135389,6 +132496,7 @@ exports[`renders correctly renders correctly when day is '31', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -135427,7 +132535,7 @@ exports[`renders correctly renders correctly when day is '31', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -135447,21 +132555,18 @@ exports[`renders correctly renders correctly when day is '31', month is '1', dis exports[`renders correctly renders correctly when day is '31', month is '1', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -135483,6 +132588,7 @@ exports[`renders correctly renders correctly when day is '31', month is '1', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -135521,7 +132627,7 @@ exports[`renders correctly renders correctly when day is '31', month is '1', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -135541,21 +132647,18 @@ exports[`renders correctly renders correctly when day is '31', month is '1', dis exports[`renders correctly renders correctly when day is '31', month is '2', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -135577,7 +132680,8 @@ exports[`renders correctly renders correctly when day is '31', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -135594,7 +132698,7 @@ exports[`renders correctly renders correctly when day is '31', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -135635,21 +132739,18 @@ exports[`renders correctly renders correctly when day is '31', month is '2', dis exports[`renders correctly renders correctly when day is '31', month is '2', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -135671,7 +132772,8 @@ exports[`renders correctly renders correctly when day is '31', month is '2', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -135688,7 +132790,7 @@ exports[`renders correctly renders correctly when day is '31', month is '2', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -135729,21 +132831,18 @@ exports[`renders correctly renders correctly when day is '31', month is '2', dis exports[`renders correctly renders correctly when day is '31', month is '2', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -135765,6 +132864,7 @@ exports[`renders correctly renders correctly when day is '31', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -135803,7 +132903,7 @@ exports[`renders correctly renders correctly when day is '31', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -135823,21 +132923,18 @@ exports[`renders correctly renders correctly when day is '31', month is '2', dis exports[`renders correctly renders correctly when day is '31', month is '2', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -135859,6 +132956,7 @@ exports[`renders correctly renders correctly when day is '31', month is '2', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -135897,7 +132995,7 @@ exports[`renders correctly renders correctly when day is '31', month is '2', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -135917,21 +133015,18 @@ exports[`renders correctly renders correctly when day is '31', month is '2', dis exports[`renders correctly renders correctly when day is '31', month is '3', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -135953,7 +133048,8 @@ exports[`renders correctly renders correctly when day is '31', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -135970,7 +133066,7 @@ exports[`renders correctly renders correctly when day is '31', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -136011,21 +133107,18 @@ exports[`renders correctly renders correctly when day is '31', month is '3', dis exports[`renders correctly renders correctly when day is '31', month is '3', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -136047,7 +133140,8 @@ exports[`renders correctly renders correctly when day is '31', month is '3', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -136064,7 +133158,7 @@ exports[`renders correctly renders correctly when day is '31', month is '3', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -136105,21 +133199,18 @@ exports[`renders correctly renders correctly when day is '31', month is '3', dis exports[`renders correctly renders correctly when day is '31', month is '3', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -136141,6 +133232,7 @@ exports[`renders correctly renders correctly when day is '31', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -136179,7 +133271,7 @@ exports[`renders correctly renders correctly when day is '31', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -136199,21 +133291,18 @@ exports[`renders correctly renders correctly when day is '31', month is '3', dis exports[`renders correctly renders correctly when day is '31', month is '3', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -136235,6 +133324,7 @@ exports[`renders correctly renders correctly when day is '31', month is '3', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -136273,7 +133363,7 @@ exports[`renders correctly renders correctly when day is '31', month is '3', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -136293,21 +133383,18 @@ exports[`renders correctly renders correctly when day is '31', month is '3', dis exports[`renders correctly renders correctly when day is '31', month is '4', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -136329,7 +133416,8 @@ exports[`renders correctly renders correctly when day is '31', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -136346,7 +133434,7 @@ exports[`renders correctly renders correctly when day is '31', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -136387,21 +133475,18 @@ exports[`renders correctly renders correctly when day is '31', month is '4', dis exports[`renders correctly renders correctly when day is '31', month is '4', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -136423,7 +133508,8 @@ exports[`renders correctly renders correctly when day is '31', month is '4', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -136440,7 +133526,7 @@ exports[`renders correctly renders correctly when day is '31', month is '4', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -136481,21 +133567,18 @@ exports[`renders correctly renders correctly when day is '31', month is '4', dis exports[`renders correctly renders correctly when day is '31', month is '4', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -136517,6 +133600,7 @@ exports[`renders correctly renders correctly when day is '31', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -136555,7 +133639,7 @@ exports[`renders correctly renders correctly when day is '31', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -136575,21 +133659,18 @@ exports[`renders correctly renders correctly when day is '31', month is '4', dis exports[`renders correctly renders correctly when day is '31', month is '4', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -136611,6 +133692,7 @@ exports[`renders correctly renders correctly when day is '31', month is '4', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -136649,7 +133731,7 @@ exports[`renders correctly renders correctly when day is '31', month is '4', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -136669,21 +133751,18 @@ exports[`renders correctly renders correctly when day is '31', month is '4', dis exports[`renders correctly renders correctly when day is '31', month is '5', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -136705,7 +133784,8 @@ exports[`renders correctly renders correctly when day is '31', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -136722,7 +133802,7 @@ exports[`renders correctly renders correctly when day is '31', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -136763,21 +133843,18 @@ exports[`renders correctly renders correctly when day is '31', month is '5', dis exports[`renders correctly renders correctly when day is '31', month is '5', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -136799,7 +133876,8 @@ exports[`renders correctly renders correctly when day is '31', month is '5', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -136816,7 +133894,7 @@ exports[`renders correctly renders correctly when day is '31', month is '5', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -136857,21 +133935,18 @@ exports[`renders correctly renders correctly when day is '31', month is '5', dis exports[`renders correctly renders correctly when day is '31', month is '5', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -136893,6 +133968,7 @@ exports[`renders correctly renders correctly when day is '31', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -136931,7 +134007,7 @@ exports[`renders correctly renders correctly when day is '31', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -136951,21 +134027,18 @@ exports[`renders correctly renders correctly when day is '31', month is '5', dis exports[`renders correctly renders correctly when day is '31', month is '5', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -136987,6 +134060,7 @@ exports[`renders correctly renders correctly when day is '31', month is '5', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -137025,7 +134099,7 @@ exports[`renders correctly renders correctly when day is '31', month is '5', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -137045,21 +134119,18 @@ exports[`renders correctly renders correctly when day is '31', month is '5', dis exports[`renders correctly renders correctly when day is '31', month is '6', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -137081,7 +134152,8 @@ exports[`renders correctly renders correctly when day is '31', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -137098,7 +134170,7 @@ exports[`renders correctly renders correctly when day is '31', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -137139,21 +134211,18 @@ exports[`renders correctly renders correctly when day is '31', month is '6', dis exports[`renders correctly renders correctly when day is '31', month is '6', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -137175,7 +134244,8 @@ exports[`renders correctly renders correctly when day is '31', month is '6', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -137192,7 +134262,7 @@ exports[`renders correctly renders correctly when day is '31', month is '6', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -137233,21 +134303,18 @@ exports[`renders correctly renders correctly when day is '31', month is '6', dis exports[`renders correctly renders correctly when day is '31', month is '6', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -137269,6 +134336,7 @@ exports[`renders correctly renders correctly when day is '31', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -137307,7 +134375,7 @@ exports[`renders correctly renders correctly when day is '31', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -137327,21 +134395,18 @@ exports[`renders correctly renders correctly when day is '31', month is '6', dis exports[`renders correctly renders correctly when day is '31', month is '6', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -137363,6 +134428,7 @@ exports[`renders correctly renders correctly when day is '31', month is '6', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -137401,7 +134467,7 @@ exports[`renders correctly renders correctly when day is '31', month is '6', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -137421,21 +134487,18 @@ exports[`renders correctly renders correctly when day is '31', month is '6', dis exports[`renders correctly renders correctly when day is '31', month is '7', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -137457,7 +134520,8 @@ exports[`renders correctly renders correctly when day is '31', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -137474,7 +134538,7 @@ exports[`renders correctly renders correctly when day is '31', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -137515,21 +134579,18 @@ exports[`renders correctly renders correctly when day is '31', month is '7', dis exports[`renders correctly renders correctly when day is '31', month is '7', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -137551,7 +134612,8 @@ exports[`renders correctly renders correctly when day is '31', month is '7', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -137568,7 +134630,7 @@ exports[`renders correctly renders correctly when day is '31', month is '7', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -137609,21 +134671,18 @@ exports[`renders correctly renders correctly when day is '31', month is '7', dis exports[`renders correctly renders correctly when day is '31', month is '7', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -137645,6 +134704,7 @@ exports[`renders correctly renders correctly when day is '31', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -137683,7 +134743,7 @@ exports[`renders correctly renders correctly when day is '31', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -137703,21 +134763,18 @@ exports[`renders correctly renders correctly when day is '31', month is '7', dis exports[`renders correctly renders correctly when day is '31', month is '7', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -137739,6 +134796,7 @@ exports[`renders correctly renders correctly when day is '31', month is '7', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -137777,7 +134835,7 @@ exports[`renders correctly renders correctly when day is '31', month is '7', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -137797,21 +134855,18 @@ exports[`renders correctly renders correctly when day is '31', month is '7', dis exports[`renders correctly renders correctly when day is '31', month is '8', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -137833,7 +134888,8 @@ exports[`renders correctly renders correctly when day is '31', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -137850,7 +134906,7 @@ exports[`renders correctly renders correctly when day is '31', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -137891,21 +134947,18 @@ exports[`renders correctly renders correctly when day is '31', month is '8', dis exports[`renders correctly renders correctly when day is '31', month is '8', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -137927,7 +134980,8 @@ exports[`renders correctly renders correctly when day is '31', month is '8', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -137944,7 +134998,7 @@ exports[`renders correctly renders correctly when day is '31', month is '8', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -137985,21 +135039,18 @@ exports[`renders correctly renders correctly when day is '31', month is '8', dis exports[`renders correctly renders correctly when day is '31', month is '8', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -138021,6 +135072,7 @@ exports[`renders correctly renders correctly when day is '31', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -138059,7 +135111,7 @@ exports[`renders correctly renders correctly when day is '31', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -138079,21 +135131,18 @@ exports[`renders correctly renders correctly when day is '31', month is '8', dis exports[`renders correctly renders correctly when day is '31', month is '8', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -138115,6 +135164,7 @@ exports[`renders correctly renders correctly when day is '31', month is '8', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -138153,7 +135203,7 @@ exports[`renders correctly renders correctly when day is '31', month is '8', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -138173,21 +135223,18 @@ exports[`renders correctly renders correctly when day is '31', month is '8', dis exports[`renders correctly renders correctly when day is '31', month is '9', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -138209,7 +135256,8 @@ exports[`renders correctly renders correctly when day is '31', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -138226,7 +135274,7 @@ exports[`renders correctly renders correctly when day is '31', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -138267,21 +135315,18 @@ exports[`renders correctly renders correctly when day is '31', month is '9', dis exports[`renders correctly renders correctly when day is '31', month is '9', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -138303,7 +135348,8 @@ exports[`renders correctly renders correctly when day is '31', month is '9', dis selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -138320,7 +135366,7 @@ exports[`renders correctly renders correctly when day is '31', month is '9', dis style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -138361,21 +135407,18 @@ exports[`renders correctly renders correctly when day is '31', month is '9', dis exports[`renders correctly renders correctly when day is '31', month is '9', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -138397,6 +135440,7 @@ exports[`renders correctly renders correctly when day is '31', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -138435,7 +135479,7 @@ exports[`renders correctly renders correctly when day is '31', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -138455,21 +135499,18 @@ exports[`renders correctly renders correctly when day is '31', month is '9', dis exports[`renders correctly renders correctly when day is '31', month is '9', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -138491,6 +135532,7 @@ exports[`renders correctly renders correctly when day is '31', month is '9', dis selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -138529,7 +135571,7 @@ exports[`renders correctly renders correctly when day is '31', month is '9', dis selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -138549,21 +135591,18 @@ exports[`renders correctly renders correctly when day is '31', month is '9', dis exports[`renders correctly renders correctly when day is '31', month is '10', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -138585,7 +135624,8 @@ exports[`renders correctly renders correctly when day is '31', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -138602,7 +135642,7 @@ exports[`renders correctly renders correctly when day is '31', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -138643,21 +135683,18 @@ exports[`renders correctly renders correctly when day is '31', month is '10', di exports[`renders correctly renders correctly when day is '31', month is '10', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -138679,7 +135716,8 @@ exports[`renders correctly renders correctly when day is '31', month is '10', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -138696,7 +135734,7 @@ exports[`renders correctly renders correctly when day is '31', month is '10', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -138737,21 +135775,18 @@ exports[`renders correctly renders correctly when day is '31', month is '10', di exports[`renders correctly renders correctly when day is '31', month is '10', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -138773,6 +135808,7 @@ exports[`renders correctly renders correctly when day is '31', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -138811,7 +135847,7 @@ exports[`renders correctly renders correctly when day is '31', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -138831,21 +135867,18 @@ exports[`renders correctly renders correctly when day is '31', month is '10', di exports[`renders correctly renders correctly when day is '31', month is '10', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -138867,6 +135900,7 @@ exports[`renders correctly renders correctly when day is '31', month is '10', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -138905,7 +135939,7 @@ exports[`renders correctly renders correctly when day is '31', month is '10', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -138925,21 +135959,18 @@ exports[`renders correctly renders correctly when day is '31', month is '10', di exports[`renders correctly renders correctly when day is '31', month is '11', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -138961,7 +135992,8 @@ exports[`renders correctly renders correctly when day is '31', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -138976,7 +136008,7 @@ exports[`renders correctly renders correctly when day is '31', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -139017,21 +136049,18 @@ exports[`renders correctly renders correctly when day is '31', month is '11', di exports[`renders correctly renders correctly when day is '31', month is '11', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -139053,7 +136082,8 @@ exports[`renders correctly renders correctly when day is '31', month is '11', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -139068,7 +136098,7 @@ exports[`renders correctly renders correctly when day is '31', month is '11', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -139109,21 +136139,18 @@ exports[`renders correctly renders correctly when day is '31', month is '11', di exports[`renders correctly renders correctly when day is '31', month is '11', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -139145,6 +136172,7 @@ exports[`renders correctly renders correctly when day is '31', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -139181,7 +136209,7 @@ exports[`renders correctly renders correctly when day is '31', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -139201,21 +136229,18 @@ exports[`renders correctly renders correctly when day is '31', month is '11', di exports[`renders correctly renders correctly when day is '31', month is '11', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -139237,6 +136262,7 @@ exports[`renders correctly renders correctly when day is '31', month is '11', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -139273,7 +136299,7 @@ exports[`renders correctly renders correctly when day is '31', month is '11', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", @@ -139293,21 +136319,18 @@ exports[`renders correctly renders correctly when day is '31', month is '11', di exports[`renders correctly renders correctly when day is '31', month is '12', disabled is 'false', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -139329,7 +136352,8 @@ exports[`renders correctly renders correctly when day is '31', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, "fontWeight": "500", @@ -139344,7 +136368,7 @@ exports[`renders correctly renders correctly when day is '31', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -139385,21 +136409,18 @@ exports[`renders correctly renders correctly when day is '31', month is '12', di exports[`renders correctly renders correctly when day is '31', month is '12', disabled is 'false', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#262424", - "borderColor": "#262424", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#262424", + "borderColor": "#262424", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -139421,7 +136442,8 @@ exports[`renders correctly renders correctly when day is '31', month is '12', di selectable={true} style={ { - "color": "#fefec7", + "backgroundColor": "#262424", + "color": "#ffffd1", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, "fontWeight": "500", @@ -139436,7 +136458,7 @@ exports[`renders correctly renders correctly when day is '31', month is '12', di style={ { "alignItems": "center", - "backgroundColor": "#fefec7", + "backgroundColor": "#ffffd1", "borderTopLeftRadius": 6, "borderTopRightRadius": 6, "display": "flex", @@ -139477,21 +136499,18 @@ exports[`renders correctly renders correctly when day is '31', month is '12', di exports[`renders correctly renders correctly when day is '31', month is '12', disabled is 'true', size is 'medium' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 60, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 60, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 60, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 60, + } } > <View @@ -139513,6 +136532,7 @@ exports[`renders correctly renders correctly when day is '31', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 12, @@ -139549,7 +136569,7 @@ exports[`renders correctly renders correctly when day is '31', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 28, "fontWeight": "400", @@ -139569,21 +136589,18 @@ exports[`renders correctly renders correctly when day is '31', month is '12', di exports[`renders correctly renders correctly when day is '31', month is '12', disabled is 'true', size is 'small' 1`] = ` <View style={ - [ - undefined, - { - "alignItems": "center", - "backgroundColor": "#787777", - "borderColor": "#787777", - "borderRadius": 8, - "borderWidth": 1, - "height": 40, - "justifyContent": "flex-start", - "overflow": "hidden", - "paddingTop": 2, - "width": 40, - }, - ] + { + "alignItems": "center", + "backgroundColor": "#676565", + "borderColor": "#676565", + "borderRadius": 8, + "borderWidth": 1, + "height": 40, + "justifyContent": "flex-start", + "overflow": "hidden", + "paddingTop": 2, + "width": 40, + } } > <View @@ -139605,6 +136622,7 @@ exports[`renders correctly renders correctly when day is '31', month is '12', di selectable={true} style={ { + "backgroundColor": "#676565", "color": "#ebebeb", "fontFamily": "InstrumentSans-Medium", "fontSize": 9, @@ -139641,7 +136659,7 @@ exports[`renders correctly renders correctly when day is '31', month is '12', di selectable={true} style={ { - "color": "#787777", + "color": "#676565", "fontFamily": "InstrumentSans-Regular", "fontSize": 20, "fontWeight": "400", diff --git a/packages/ui/components/molecules/__tests__/__snapshots__/HoliSwitch.test.tsx.snap b/packages/ui/components/molecules/__tests__/__snapshots__/HoliSwitch.test.tsx.snap index e55021ac9853b7f4004e482042c7a805330d984d..39e55c982d27d327ea41955c797fcefdc99af9ab 100644 --- a/packages/ui/components/molecules/__tests__/__snapshots__/HoliSwitch.test.tsx.snap +++ b/packages/ui/components/molecules/__tests__/__snapshots__/HoliSwitch.test.tsx.snap @@ -40,20 +40,10 @@ exports[`HoliSwitch renders correctly with styling props 1`] = ` style={ { "alignItems": "center", - "backgroundColor": "rgba(98, 103, 231, 1)", - "borderColor": "transparent", - "borderRadius": 100, - "borderWidth": 0, + "backgroundColor": "#6267e7", + "borderRadius": 24, "flexDirection": "row", "height": 40, - "transform": [ - { - "scaleX": 1, - }, - { - "scaleY": 1, - }, - ], "width": 80, } } @@ -64,7 +54,7 @@ exports[`HoliSwitch renders correctly with styling props 1`] = ` { "alignItems": "center", "backgroundColor": "#fff", - "borderRadius": 100, + "borderRadius": 16, "height": 32, "justifyContent": "center", "transform": [ @@ -79,12 +69,12 @@ exports[`HoliSwitch renders correctly with styling props 1`] = ` <View> <RNSVGSvgView align="xMidYMid" - bbHeight={26} - bbWidth={26} + bbHeight={32} + bbWidth={32} color="#6267e7" fill="none" focusable={false} - height={26} + height={32} meetOrSlice={0} minX={0} minY={0} @@ -96,15 +86,15 @@ exports[`HoliSwitch renders correctly with styling props 1`] = ` }, { "flex": 0, - "height": 26, - "width": 26, + "height": 32, + "width": 32, }, ] } tintColor="#6267e7" vbHeight={24} vbWidth={24} - width={26} + width={32} xmlns="http://www.w3.org/2000/svg" > <RNSVGGroup @@ -176,21 +166,11 @@ exports[`HoliSwitch renders default styling correctly without any props 1`] = ` style={ { "alignItems": "center", - "backgroundColor": "rgba(98, 103, 231, 1)", - "borderColor": "transparent", - "borderRadius": 100, - "borderWidth": 0, + "backgroundColor": "#6267e7", + "borderRadius": 24, "flexDirection": "row", - "height": 40, - "transform": [ - { - "scaleX": 0.75, - }, - { - "scaleY": 0.75, - }, - ], - "width": 80, + "height": 30, + "width": 60, } } > @@ -200,27 +180,27 @@ exports[`HoliSwitch renders default styling correctly without any props 1`] = ` { "alignItems": "center", "backgroundColor": "#fff", - "borderRadius": 100, - "height": 32, + "borderRadius": 12, + "height": 24, "justifyContent": "center", "transform": [ { - "translateX": 44, + "translateX": 33, }, ], - "width": 32, + "width": 24, } } > <View> <RNSVGSvgView align="xMidYMid" - bbHeight={26} - bbWidth={26} + bbHeight={24} + bbWidth={24} color="#6267e7" fill="none" focusable={false} - height={26} + height={24} meetOrSlice={0} minX={0} minY={0} @@ -232,15 +212,15 @@ exports[`HoliSwitch renders default styling correctly without any props 1`] = ` }, { "flex": 0, - "height": 26, - "width": 26, + "height": 24, + "width": 24, }, ] } tintColor="#6267e7" vbHeight={24} vbWidth={24} - width={26} + width={24} xmlns="http://www.w3.org/2000/svg" > <RNSVGGroup diff --git a/packages/ui/components/organisms/HoliTabs/BotomLineSeperator.tsx b/packages/ui/components/organisms/HoliTabs/BotomLineSeperator.tsx index 015bce4dacbc3784666aeaf3ed87cf305bb4e7cb..4236fdd367e8d30cf092000010b867cca43d0446 100644 --- a/packages/ui/components/organisms/HoliTabs/BotomLineSeperator.tsx +++ b/packages/ui/components/organisms/HoliTabs/BotomLineSeperator.tsx @@ -1,16 +1,16 @@ import React, { useMemo } from 'react' import { StyleSheet, View } from 'react-native' -import { HoliTheme, useTheme } from '@holi/ui/styles/theme' +import { type HoliTheme, useTheme } from '@holi/ui/styles/theme' -const BotomLineSeperator = () => { +const BottomLineSeperator = () => { const { theme } = useTheme() const styles = useMemo(() => getStyles(theme), [theme]) return <View style={styles.botomLineSeperator} /> } -export default BotomLineSeperator +export default BottomLineSeperator const getStyles = (theme: HoliTheme) => StyleSheet.create({ diff --git a/packages/ui/components/organisms/HoliTabs/index.tsx b/packages/ui/components/organisms/HoliTabs/index.tsx index fcf3f4625ab315b975afa86a512839f4395e37f6..74fdcb9a8ef7ec34a556542e7cdd2606f15a2cf1 100644 --- a/packages/ui/components/organisms/HoliTabs/index.tsx +++ b/packages/ui/components/organisms/HoliTabs/index.tsx @@ -5,7 +5,7 @@ import { useAnimatedScrollHandler, useSharedValue } from 'react-native-reanimate import TabContentVirtualized from '@holi/ui/components/organisms/HoliTabs/TabContentVirtualized' import { useTheme } from '@holi/ui/styles/theme' -import BotomLineSeperator from './BotomLineSeperator' +import BottomLineSeperator from './BotomLineSeperator' import TabButtonList from './TabButtonList' import TabContentList from './TabContentScrollableList' import { renderTabButtonHelper, useHoliTabsMarginHorizontal } from './helpers' @@ -50,7 +50,7 @@ const HoliTabs = <D extends HoliTabItem>({ testID={testID} > <View style={{ backgroundColor: tabBarBackgroundColor ?? theme.colors.background10 }}> - <BotomLineSeperator /> + <BottomLineSeperator /> <TabButtonList {...{ activeTab, diff --git a/packages/ui/components/organisms/HoliTabs/index.web.tsx b/packages/ui/components/organisms/HoliTabs/index.web.tsx index 6128fb53556b5083af1fa3b71d370839c84cad56..e3e8bc9581f8bdca19ad1119e4da8a7e46a95c2b 100644 --- a/packages/ui/components/organisms/HoliTabs/index.web.tsx +++ b/packages/ui/components/organisms/HoliTabs/index.web.tsx @@ -6,7 +6,7 @@ import HoliContainer from '@holi/ui/components/atoms/HoliContainer' import TabContentVirtualized from '@holi/ui/components/organisms/HoliTabs/TabContentVirtualized' import { useTheme } from '@holi/ui/styles/theme' -import BotomLineSeperator from './BotomLineSeperator' +import BottomLineSeperator from './BotomLineSeperator' import TabButtonList from './TabButtonList' import TabContentList from './TabContentScrollableList' import { renderTabButtonHelper, useHoliTabsMarginHorizontal } from './helpers' @@ -49,7 +49,7 @@ const HoliTabs = <D extends HoliTabItem>({ return ( <View testID={testID} style={{ flex: 1 }}> <View style={{ backgroundColor: tabBarBackgroundColor ?? theme.colors.background10 }}> - <BotomLineSeperator /> + <BottomLineSeperator /> <HoliContainer noPadding> <View onLayout={(event) => setComponentWidth(event.nativeEvent.layout.width)} /> @@ -59,7 +59,7 @@ const HoliTabs = <D extends HoliTabItem>({ data, keyExtractor, centeredTabButtons, - marginHorizontal: finalMarginHorizontal, + marginHorizontal: useHoliTabsMarginHorizontal(), width: componentWidth, }} renderItem={(options) => @@ -90,7 +90,6 @@ const HoliTabs = <D extends HoliTabItem>({ scrollEventThrottle={100} tabsId={testID} testID={`${testID}-content-list`} - marginHorizontal={marginHorizontal} /> ) : ( <TabContentVirtualized diff --git a/packages/ui/components/organisms/__tests__/__snapshots__/HoliUserCardsModalContent.test.tsx.snap b/packages/ui/components/organisms/__tests__/__snapshots__/HoliUserCardsModalContent.test.tsx.snap index b6a1aa01e7d6dfd3877b6b04dd0c6243b060d3f9..5f6249e2a26fa33a274bc423a91e7aae3c843223 100644 --- a/packages/ui/components/organisms/__tests__/__snapshots__/HoliUserCardsModalContent.test.tsx.snap +++ b/packages/ui/components/organisms/__tests__/__snapshots__/HoliUserCardsModalContent.test.tsx.snap @@ -46,10 +46,15 @@ exports[`HoliUserCardsModalContent renders correct snapshot 1`] = ` style={ { "color": "#262424", - "fontFamily": "InstrumentSans-Medium", + "fontFamily": "InstrumentSans-Regular", "fontSize": 28, - "fontWeight": "500", - "lineHeight": 39.199999999999996, + "fontVariant": [ + "lining-nums", + "tabular-nums", + ], + "fontWeight": "400", + "letterSpacing": -0.896, + "lineHeight": 33.6, "textAlign": "left", "userSelect": "auto", } @@ -1953,6 +1958,7 @@ exports[`HoliUserCardsModalContent renders correct snapshot 1`] = ` style={ [ { + "alignSelf": "auto", "backgroundColor": "#fdfd80", "borderColor": "#262424", "borderRadius": 1000, @@ -1961,7 +1967,7 @@ exports[`HoliUserCardsModalContent renders correct snapshot 1`] = ` "boxShadow": "0 0 0 0px #262424", "display": "flex", "paddingHorizontal": 16, - "width": "auto", + "width": "100%", }, ] } diff --git a/tsconfig.json b/tsconfig.json index ceb581a998aa3d3480859c7eddb50bfdbfd1c8b0..ddac065f0193bf1ba1ec415940c20c39f2b822af 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,6 +14,7 @@ "@holi-apps/goodnews/*": ["holi-apps/goodnews/*"], "@holi-apps/volunteering/*": ["holi-apps/volunteering/*"], "@holi-apps/challenges/*": ["holi-apps/challenges/*"], + "@holi-apps/events/*": ["holi-apps/events/*"], "@holi/e2e-mobile/*": ["e2e/mobile/*"], "@holi/e2e-web/*": ["e2e/web/*"], "holi-bricks/*": ["holi-bricks/*"] diff --git a/yarn.lock b/yarn.lock index cb354907ae418a38d2bddb888fd7ede0f2be5951..051f527d54db245ab0a340fd3ce4451cec5d82d9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5443,6 +5443,17 @@ __metadata: languageName: unknown linkType: soft +"@holi-apps/events@npm:*, @holi-apps/events@workspace:holi-apps/events": + version: 0.0.0-use.local + resolution: "@holi-apps/events@workspace:holi-apps/events" + dependencies: + eslint: "npm:^8.33.0" + eslint-plugin-react: "npm:^7.32.2" + eslint-plugin-react-hooks: "npm:4.6.2" + eslint-plugin-react-native: "npm:^4.1.0" + languageName: unknown + linkType: soft + "@holi-apps/goodnews@npm:*, @holi-apps/goodnews@workspace:holi-apps/goodnews": version: 0.0.0-use.local resolution: "@holi-apps/goodnews@workspace:holi-apps/goodnews" @@ -5618,6 +5629,7 @@ __metadata: "@formatjs/intl-relativetimeformat": "npm:^11.2.14" "@holi-apps/challenges": "npm:*" "@holi-apps/donations": "npm:*" + "@holi-apps/events": "npm:*" "@holi-apps/goodnews": "npm:*" "@holi-apps/volunteering": "npm:*" "@holi/api": "npm:*" @@ -21481,6 +21493,7 @@ __metadata: react-native: "npm:0.74.7" react-native-gesture-handler: "npm:~2.16.1" react-native-reanimated: "npm:~3.10.1" + react-native-render-html: "npm:^6.3.4" react-native-safe-area-context: "npm:4.10.9" react-native-svg: "npm:15.2.0" react-native-unistyles: "npm:^2.11.0" @@ -21495,6 +21508,7 @@ __metadata: react: 18.2.0 react-dom: 18.2.0 react-native: 0.74.7 + react-native-render-html: ^6.3.4 react-native-svg: 15.2.0 react-native-unistyles: ^2.10.0 react-native-web: ^0.19.12