import React from "react"; import type { ComponentProps } from "react"; import { action } from "storybook/actions"; import { InputPressable } from "@jobber/components-native"; type InputPressableProps = ComponentProps; export function InputPressableBasic(props: Partial) { return ( action("alert")("👍")} {...props} /> ); }