UNPKG

@assistant-ui/react

Version:

TypeScript/React library for AI Chat

18 lines (17 loc) 471 B
"use client"; // src/primitives/contentPart/useContentPartImage.tsx import { useContentPart } from "../../context/react/ContentPartContext.js"; var useContentPartImage = () => { const image = useContentPart((c) => { if (c.type !== "image") throw new Error( "ContentPartImage can only be used inside image content parts." ); return c; }); return image; }; export { useContentPartImage }; //# sourceMappingURL=useContentPartImage.js.map