forked from tiny-craft/tiny-rdm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support exact match filter (tiny-craft#164)
- Loading branch information
1 parent
fdf2c47
commit 2d2954d
Showing
13 changed files
with
245 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<script setup> | ||
const props = defineProps({ | ||
strokeWidth: { | ||
type: [Number, String], | ||
default: 3, | ||
}, | ||
}) | ||
</script> | ||
|
||
<template> | ||
<svg | ||
:stroke-width="props.strokeWidth" | ||
class="lucide lucide-spell-check" | ||
fill="none" | ||
stroke="currentColor" | ||
stroke-linecap="round" | ||
stroke-linejoin="round" | ||
viewBox="0 0 24 24" | ||
xmlns="http://www.w3.org/2000/svg"> | ||
<path d="m6 16 6-12 6 12" /> | ||
<path d="M8 12h8" /> | ||
<path d="m16 20 2 2 4-4" /> | ||
</svg> | ||
</template> | ||
|
||
<style lang="scss" scoped></style> |
Oops, something went wrong.