From cb8baa6259200bf88a858f7f284d936b745320ad Mon Sep 17 00:00:00 2001 From: kousum Date: Tue, 10 Dec 2024 09:48:36 +0800 Subject: [PATCH] fix: The default is false, except git-clone or git-init will probe and set core.ignoreCase true if appropriate when the repository is created. --- .../src/icons/icons/IconCodehighlight.tsx | 41 ------------------- 1 file changed, 41 deletions(-) delete mode 100644 packages/semi-icons-lab-vue/src/icons/icons/IconCodehighlight.tsx diff --git a/packages/semi-icons-lab-vue/src/icons/icons/IconCodehighlight.tsx b/packages/semi-icons-lab-vue/src/icons/icons/IconCodehighlight.tsx deleted file mode 100644 index 2cc27762..00000000 --- a/packages/semi-icons-lab-vue/src/icons/icons/IconCodehighlight.tsx +++ /dev/null @@ -1,41 +0,0 @@ -import { defineComponent, ref, h, onActivated } from 'vue'; -import { ConvertIcon, vuePropsType as iconVuePropsType } from '../components/Icon'; -const SvgComponent = defineComponent((props, { slots }) => { - return () => ( - - - - - - - - - ); -}); -const IconComponent = defineComponent({ - name: 'IconCodeHighlight', - props: { - ...iconVuePropsType, - }, - setup(props, { slots }) { - return () => ( - - {{ - default: () => , - }} - - ); - }, -}); -export default IconComponent; -export { SvgComponent };