import { useCallback } from "react"; import { Pressable, type PressableProps } from "react-native"; import { useAui } from "@assistant-ui/store"; export type ComposerQuoteDismissProps = Omit< PressableProps, "onPress" | "children" > & { children: PressableProps["children"]; }; export const ComposerQuoteDismiss = ({ children, ...pressableProps }: ComposerQuoteDismissProps) => { const aui = useAui(); const handleDismiss = useCallback(() => { aui.composer.setQuote(undefined); }, [aui]); return ( {children} ); };