@assistant-ui/react
Version:
Typescript/React library for AI Chat
18 lines • 800 B
JavaScript
// src/primitives/composer/index.ts
import { ComposerPrimitiveRoot } from "./ComposerRoot.mjs";
import { ComposerPrimitiveInput } from "./ComposerInput.mjs";
import { ComposerPrimitiveSend } from "./ComposerSend.mjs";
import { ComposerPrimitiveCancel } from "./ComposerCancel.mjs";
import { ComposerPrimitiveAddAttachment } from "./ComposerAddAttachment.mjs";
import { ComposerPrimitiveAttachments } from "./ComposerAttachments.mjs";
import { ComposerPrimitiveIf } from "./ComposerIf.mjs";
export {
ComposerPrimitiveAddAttachment as AddAttachment,
ComposerPrimitiveAttachments as Attachments,
ComposerPrimitiveCancel as Cancel,
ComposerPrimitiveIf as If,
ComposerPrimitiveInput as Input,
ComposerPrimitiveRoot as Root,
ComposerPrimitiveSend as Send
};
//# sourceMappingURL=index.mjs.map