import { defineComponent } from 'vue';
import { Button, Space } from 'ant-design-vue';
import type { ComponentDemo } from '../../interface';
const Demo = defineComponent({
setup() {
return () => (
);
},
});
const componentDemo: ComponentDemo = {
demo: ,
tokens: ['colorTextDisabled', 'colorBgContainerDisabled'],
key: 'disabled',
};
export default componentDemo;