import { shortcut, Widget } from "@/core";

@shortcut()
export class IconTextValueCombo extends Widget {
    static xtype = "demo.icon_text_value_combo";

    props = { baseCls: "" };

    render() {
        return {
            type: "bi.horizontal_auto",
            items: [
                {
                    type: "bi.icon_text_value_combo",
                    text: "默认值",
                    // defaultIconCls: "next-page-h-font",
                    width: 300,
                    items: [
                        {
                            text: "MVC-1",
                            iconCls: "close-font",
                            value: 1,
                        },
                        {
                            text: "MVC-2",
                            iconCls: "date-font",
                            value: 2,
                        },
                        {
                            text: "MVC-3",
                            iconCls: "search-close-h-font",
                            value: 3,
                        }
                    ],
                }
            ],
            vgap: 20,
        };
    }
}