Skip to content

Commit

Permalink
fix(icon): data url quote
Browse files Browse the repository at this point in the history
  • Loading branch information
chizukicn committed Nov 28, 2023
1 parent 0dac368 commit 9de51a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/icon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const useIcon = defineHookComponent({

const staticStyle = computed<CSSProperties>(() => {
return {
"--icon-url": `url('${props.src}')`
"--icon-url": `url("${(props.src)}")`
};
});

Expand Down

0 comments on commit 9de51a0

Please sign in to comment.