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 InputPressablePrefixOrSuffix( props: Partial, ) { return ( action("alert")("📅")} {...props} /> ); }