import React from "react"; import type { ComponentProps } from "react"; import { ActionLabel } from "@jobber/components-native"; export function ActionLabelColorExample( props: Partial>, ) { const { children, ...actionLabelProps } = props; return ( {children ?? "Learning"} ); }