diff options
Diffstat (limited to 'src')
-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 0000000..524b0ed --- /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 0000000..eb4445a --- /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 0000000..0028fe7 --- /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 0000000..dc9088f --- /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 0000000..0d74ce3 --- /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 0000000..e065de1 --- /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 0000000..4307da4 --- /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 0000000..396a2c8 --- /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> |