import React from "react"; import { SafeAreaProvider } from "react-native-safe-area-context"; import { action } from "storybook/actions"; import { AtlantisOverlayProvider, ButtonGroup, } from "@jobber/components-native"; import type { ButtonGroupSecondaryActionProps } from "../index"; export function ButtonGroupSecondaryExample( props: Partial, ) { return ( >>"} buttonType={"secondary"} onPress={() => action("alert")("No, not me. The ellipsis!")} /> action("console.log")("create")} {...props} /> ); }