import { defineComponent, h } from "vue"; import { IconX } from "../icons"; export default defineComponent({ name: "CopilotChatToggleButtonCloseIcon", inheritAttrs: false, setup(_, { attrs }) { return () => { const { class: className, ...rest } = attrs as Record; return h(IconX, { ...rest, class: ["cpk:h-6 cpk:w-6", className], strokeWidth: 1.75, }); }; }, });