import React, { useState } from "react"; import type { ComponentProps } from "react"; import { InputPressable } from "@jobber/components-native"; type InputPressableProps = ComponentProps; export function InputPressableClearable(props: Partial) { const [value, setValue] = useState("Cucumber"); function handleClear() { setValue(""); } return ( ); }