diff options
-rw-r--r-- | src/_icons/chevron-down-left.svg | 6 | ||||
-rw-r--r-- | src/_icons/chevron-down-right.svg | 6 | ||||
-rw-r--r-- | src/_icons/chevron-up-left.svg | 6 | ||||
-rw-r--r-- | src/_icons/chevron-up-right.svg | 6 | ||||
-rw-r--r-- | src/_icons/chevrons-down-left.svg | 7 | ||||
-rw-r--r-- | src/_icons/chevrons-down-right.svg | 7 | ||||
-rw-r--r-- | src/_icons/chevrons-up-left.svg | 7 | ||||
-rw-r--r-- | src/_icons/chevrons-up-right.svg | 7 |
8 files changed, 52 insertions, 0 deletions
diff --git a/src/_icons/chevron-down-left.svg b/src/_icons/chevron-down-left.svg new file mode 100644 index 00000000..524b0ed9 --- /dev/null +++ b/src/_icons/chevron-down-left.svg @@ -0,0 +1,6 @@ +--- +category: Arrows +--- +<svg> + <path d="M8 8v8h8"/> +</svg> diff --git a/src/_icons/chevron-down-right.svg b/src/_icons/chevron-down-right.svg new file mode 100644 index 00000000..eb4445a9 --- /dev/null +++ b/src/_icons/chevron-down-right.svg @@ -0,0 +1,6 @@ +--- +category: Arrows +--- +<svg> + <path d="M16 8v8h-8"/> +</svg> diff --git a/src/_icons/chevron-up-left.svg b/src/_icons/chevron-up-left.svg new file mode 100644 index 00000000..0028fe73 --- /dev/null +++ b/src/_icons/chevron-up-left.svg @@ -0,0 +1,6 @@ +--- +category: Arrows +--- +<svg> + <path d="M8 16v-8h8"/> +</svg> diff --git a/src/_icons/chevron-up-right.svg b/src/_icons/chevron-up-right.svg new file mode 100644 index 00000000..dc9088fe --- /dev/null +++ b/src/_icons/chevron-up-right.svg @@ -0,0 +1,6 @@ +--- +category: Arrows +--- +<svg> + <path d="M8 8h8v8"/> +</svg> diff --git a/src/_icons/chevrons-down-left.svg b/src/_icons/chevrons-down-left.svg new file mode 100644 index 00000000..0d74ce34 --- /dev/null +++ b/src/_icons/chevrons-down-left.svg @@ -0,0 +1,7 @@ +--- +category: Arrows +--- +<svg> + <path d="M11 5v8h8"/> + <path d="M7 9v8h8"/> +</svg> diff --git a/src/_icons/chevrons-down-right.svg b/src/_icons/chevrons-down-right.svg new file mode 100644 index 00000000..e065de1d --- /dev/null +++ b/src/_icons/chevrons-down-right.svg @@ -0,0 +1,7 @@ +--- +category: Arrows +--- +<svg> + <path d="M13 5v8h-8"/> + <path d="M17 9v8h-8"/> +</svg> diff --git a/src/_icons/chevrons-up-left.svg b/src/_icons/chevrons-up-left.svg new file mode 100644 index 00000000..4307da4c --- /dev/null +++ b/src/_icons/chevrons-up-left.svg @@ -0,0 +1,7 @@ +--- +category: Arrows +--- +<svg> + <path d="M7 15v-8h8"/> + <path d="M11 19v-8h8"/> +</svg> diff --git a/src/_icons/chevrons-up-right.svg b/src/_icons/chevrons-up-right.svg new file mode 100644 index 00000000..396a2c8c --- /dev/null +++ b/src/_icons/chevrons-up-right.svg @@ -0,0 +1,7 @@ +--- +category: Arrows +--- +<svg> + <path d="M9 7h8v8"/> + <path d="M5 11h8v8"/> +</svg> |