Skip to content

Commit

Permalink
remove aria-hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
Jzow committed Aug 14, 2024
1 parent b4d1f2d commit d8c9746
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web/src/components/Icon/src/SvgIcon.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<template>
<svg
:class="[prefixCls, $attrs.class, spin && 'svg-icon-spin']"
:style="getStyle"
aria-hidden="true"
:class="[prefixCls, $attrs.class, spin && 'svg-icon-spin']"
:style="getStyle"
focusable="false"
>
<use :xlink:href="symbolId" />
</svg>
</template>
<script lang="ts">
import type { CSSProperties } from 'vue';
import { defineComponent, computed } from 'vue';
import { useDesign } from '/@/hooks/web/useDesign';
import { useDesign } from '@/hooks/web/useDesign';
export default defineComponent({
name: 'SvgIcon',
Expand Down

0 comments on commit d8c9746

Please sign in to comment.