generated from Odaimoko/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
119 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import React from "react"; | ||
|
||
export function Down01() { | ||
return <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" | ||
stroke="currentColor" strokeWidth="1" strokeLinecap="round" strokeLinejoin="round" | ||
className="lucide lucide-arrow-down-0-1"> | ||
<path d="m3 16 4 4 4-4"/> | ||
<path d="M7 20V4"/> | ||
<rect x="15" y="4" width="4" height="6" ry="2"/> | ||
<path d="M17 20v-6h-2"/> | ||
<path d="M15 20h4"/> | ||
</svg> | ||
} | ||
|
||
export function Up01() { | ||
return <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" | ||
stroke="currentColor" strokeWidth="1" strokeLinecap="round" strokeLinejoin="round" | ||
className="lucide lucide-arrow-up-0-1"> | ||
<path d="m3 8 4-4 4 4"/> | ||
<path d="M7 4v16"/> | ||
<rect x="15" y="4" width="4" height="6" ry="2"/> | ||
<path d="M17 20v-6h-2"/> | ||
<path d="M15 20h4"/> | ||
</svg> | ||
} |
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,13 @@ | ||
import React from "react"; | ||
|
||
export function Down10() { | ||
return <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" | ||
stroke="currentColor" strokeWidth="1" strokeLinecap="round" strokeLinejoin="round" | ||
className="lucide lucide-arrow-down-1-0"> | ||
<path d="m3 16 4 4 4-4"/> | ||
<path d="M7 20V4"/> | ||
<path d="M17 10V4h-2"/> | ||
<path d="M15 10h4"/> | ||
<rect x="15" y="14" width="4" height="6" ry="2"/> | ||
</svg> | ||
} |
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,25 @@ | ||
import React from "react"; | ||
|
||
export function DownAZ() { | ||
return <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" | ||
stroke="currentColor" strokeWidth="1" strokeLinecap="round" strokeLinejoin="round" | ||
className="lucide lucide-arrow-down-a-z"> | ||
<path d="m3 16 4 4 4-4"/> | ||
<path d="M7 20V4"/> | ||
<path d="M20 8h-5"/> | ||
<path d="M15 10V6.5a2.5 2.5 0 0 1 5 0V10"/> | ||
<path d="M15 14h5l-5 6h5"/> | ||
</svg> | ||
} | ||
|
||
export function UpAZ() { | ||
return <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" | ||
stroke="currentColor" strokeWidth="1" strokeLinecap="round" strokeLinejoin="round" | ||
className="lucide lucide-arrow-up-a-z"> | ||
<path d="m3 8 4-4 4 4"/> | ||
<path d="M7 4v16"/> | ||
<path d="M20 8h-5"/> | ||
<path d="M15 10V6.5a2.5 2.5 0 0 1 5 0V10"/> | ||
<path d="M15 14h5l-5 6h5"/> | ||
</svg> | ||
} |
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,13 @@ | ||
import React from "react"; | ||
|
||
export function DownZA() { | ||
return <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" | ||
stroke="currentColor" strokeWidth="1" strokeLinecap="round" strokeLinejoin="round" | ||
className="lucide lucide-arrow-down-z-a"> | ||
<path d="m3 16 4 4 4-4"/> | ||
<path d="M7 4v16"/> | ||
<path d="M15 4h5l-5 6h5"/> | ||
<path d="M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"/> | ||
<path d="M20 18h-5"/> | ||
</svg> | ||
} |
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,9 @@ | ||
import React from "react"; | ||
|
||
export function Minus() { | ||
return <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" | ||
stroke="currentColor" strokeWidth="1" strokeLinecap="round" strokeLinejoin="round" | ||
className="lucide lucide-minus"> | ||
<path d="M5 12h14"/> | ||
</svg> | ||
} |
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