Skip to content

Commit 38a9669

Browse files
committedMar 11, 2022
feat(Tooltip): add class prop to Wrapper
1 parent 10b8f9c commit 38a9669

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎components/mdc/Tooltip/Wrapper.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
export let ariaDescribedBy
33
</script>
44

5-
<div aria-describedby={ariaDescribedBy}>
5+
<div class={$$props.class} aria-describedby={ariaDescribedBy}>
66
<slot />
77
</div>

0 commit comments

Comments
 (0)
Please sign in to comment.