import React from "react"; import type { ComponentProps } from "react"; import { View } from "react-native"; import { action } from "storybook/actions"; import { Chip } from "@jobber/components-native"; export function ChipBasicExample(props: Partial>) { return ( action("alert")("hi!")} accessibilityLabel="Active chip" isActive={true} {...props} /> ); }