import React from "react"; import { View } from "react-native"; import { action } from "storybook/actions"; import type { ComponentProps } from "react"; import { Chip } from "@jobber/components-native"; export function ChipInactiveBackgroundColorExample( props: Partial>, ) { return ( action("alert")("Clients")} accessibilityLabel="Select clients" inactiveBackgroundColor="surface" {...props} /> ); }