From 265871e556bb51758215ede567e21e21e07b8dd5 Mon Sep 17 00:00:00 2001 From: kousum Date: Tue, 10 Dec 2024 09:42:34 +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 insertions(+) create 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 new file mode 100644 index 00000000..2cc27762 --- /dev/null +++ b/packages/semi-icons-lab-vue/src/icons/icons/IconCodeHighlight.tsx @@ -0,0 +1,41 @@ +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 };