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