import React from "react"; import type { ComponentProps } from "react"; import { View } from "react-native"; import { ActionLabel, useAtlantisTheme } from "@jobber/components-native"; export function ActionLabelDarkBackgroundExample( props: Partial>, ) { const { children, ...actionLabelProps } = props; const { tokens } = useAtlantisTheme(); console.log({ tokens }); return ( {children ?? "Light Me Up"} ); }