1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-06 18:18:53 +08:00

add DelimiterSelector component

This commit is contained in:
lana-k
2021-03-21 21:47:59 +01:00
parent 4b67fb268b
commit e60a28ca23
5 changed files with 363 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<template>
<svg
class="chevron-icon"
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M6.175 7.15002L10 10.975L13.825 7.15002L15 8.33336L10 13.3334L5 8.33336L6.175 7.15002Z" fill="#C8D4E3"/>
</svg>
</template>
<script>
export default {
name: 'DropDownChevron'
}
</script>
<style scoped>
.chevron-icon {
cursor: pointer;
}
.chevron-icon:hover path {
fill: var(--color-accent);
}
</style>