import React from "react"; import { ProgressIndicator } from "@jobber/components-native"; import type { ProgressIndicatorProps } from "@jobber/components-native"; type ProgressIndicatorStoryArgs = Partial< Pick< ProgressIndicatorProps, "value" | "max" | "pendingValue" | "variation" | "size" > >; export function ProgressIndicatorBasic(props: ProgressIndicatorStoryArgs) { return ( ); }