chat-ui / src /lib /components /icons /IconChevron.svelte
Adrien Denat
Syntax highlighting + copy to clipboard button (#30)
8811ee0 unverified
raw
history blame
No virus
336 Bytes
<script lang="ts">
export let classNames: string = '';
</script>
<svg
width="15"
height="8"
viewBox="0 0 15 8"
class={classNames}
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M1.67236 1L7.67236 7L13.6724 1"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>