chat-ui / src /lib /components /icons /IconChevron.svelte
victor's picture
victor HF staff
Prettier update (#54)
5da61b4 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>