mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-03-02 18:22:42 -08:00
initial commit
This commit is contained in:
21
vendor/texthooker-ui/src/components/Icon.svelte
vendored
Normal file
21
vendor/texthooker-ui/src/components/Icon.svelte
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<script lang="ts">
|
||||
export let path: string;
|
||||
export let width = '1.5rem';
|
||||
export let height = '1.5rem';
|
||||
export let element: SVGElement | undefined = undefined;
|
||||
export { _class as class };
|
||||
|
||||
let _class = '';
|
||||
</script>
|
||||
|
||||
<svg
|
||||
style="width: {width}; height: {height};"
|
||||
viewBox="0 0 24 24"
|
||||
fill="currentColor"
|
||||
class={_class}
|
||||
bind:this={element}
|
||||
on:click
|
||||
on:keyup
|
||||
>
|
||||
<path d={path} />
|
||||
</svg>
|
||||
Reference in New Issue
Block a user