diff options
author | codecalm <codecalm@gmail.com> | 2020-09-22 00:27:47 +0200 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-09-22 00:27:47 +0200 |
commit | 2411fc3cc9c1fb57227d3671d79b02cd045667f6 (patch) | |
tree | b6f9a40be00c321a2dd9d5e04f99c5e094950277 | |
parent | `bookmarks` icon (diff) | |
download | tabler-icons-2411fc3cc9c1fb57227d3671d79b02cd045667f6.tar.xz |
8 new icons: `chevron-down-left`, `chevron-down-right`, `chevron-up-left`, `chevron-up-right`, `chevrons-down-left`, `chevrons-down-right`, `chevrons-up-left`, `chevrons-up-right`
-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> |