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.
pref: support text alignment config for HASH/LIST/SET/ZSET (tiny-craf…
- Loading branch information
1 parent
ee398d4
commit 5deb6ce
Showing
19 changed files
with
201 additions
and
31 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
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,39 @@ | ||
<script setup> | ||
const props = defineProps({ | ||
strokeWidth: { | ||
type: [Number, String], | ||
default: 3, | ||
}, | ||
}) | ||
</script> | ||
|
||
<template> | ||
<svg fill="none" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg"> | ||
<path | ||
:stroke-width="props.strokeWidth" | ||
d="M36 19H12" | ||
stroke="currentColor" | ||
stroke-linecap="round" | ||
stroke-linejoin="round" /> | ||
<path | ||
:stroke-width="props.strokeWidth" | ||
d="M42 9H6" | ||
stroke="currentColor" | ||
stroke-linecap="round" | ||
stroke-linejoin="round" /> | ||
<path | ||
:stroke-width="props.strokeWidth" | ||
d="M42 29H6" | ||
stroke="currentColor" | ||
stroke-linecap="round" | ||
stroke-linejoin="round" /> | ||
<path | ||
:stroke-width="props.strokeWidth" | ||
d="M36 39H12" | ||
stroke="currentColor" | ||
stroke-linecap="round" | ||
stroke-linejoin="round" /> | ||
</svg> | ||
</template> | ||
|
||
<style lang="scss" scoped></style> |
Oops, something went wrong.