fix github pages

This commit is contained in:
2023-10-11 10:54:20 +03:00
parent fdef57cc73
commit e75d0cca81
69 changed files with 1295 additions and 52 deletions

23
docs/components/Icon.vue.d.ts vendored Normal file
View File

@@ -0,0 +1,23 @@
import type { TUiIcon } from '../icons';
export type TUiIconProps = {
name: TUiIcon;
fill?: boolean;
};
declare const _default: import('./vue/dist/vue.esm-bundler.js').DefineComponent<{
name: {
type: import('./vue/dist/vue.esm-bundler.js').PropType<TUiIcon>;
required: true;
};
fill: {
type: import('./vue/dist/vue.esm-bundler.js').PropType<boolean>;
};
}, {}, unknown, {}, {}, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, import('./vue/dist/vue.esm-bundler.js').ComponentOptionsMixin, {}, string, import('./vue/dist/vue.esm-bundler.js').VNodeProps & import('./vue/dist/vue.esm-bundler.js').AllowedComponentProps & import('./vue/dist/vue.esm-bundler.js').ComponentCustomProps, Readonly<import('./vue/dist/vue.esm-bundler.js').ExtractPropTypes<{
name: {
type: import('./vue/dist/vue.esm-bundler.js').PropType<TUiIcon>;
required: true;
};
fill: {
type: import('./vue/dist/vue.esm-bundler.js').PropType<boolean>;
};
}>>, {}, {}>;
export default _default;