summaryrefslogtreecommitdiffstats
path: root/src/components/Icons
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <tom@vanderlee.io>2022-02-12 10:59:19 +0100
committerGravatar Tom van der Lee <tom@vanderlee.io>2022-02-12 11:07:50 +0100
commit7c48533571e9f9d3731a59433a56cc8d6e008123 (patch)
treef86868dfea251fa3b198ffcf3e158a3ed354ff9d /src/components/Icons
parent5dbf880ce3cdb227a85dbb0015609c210557c60b (diff)
downloadclient-7c48533571e9f9d3731a59433a56cc8d6e008123.tar.gz
client-7c48533571e9f9d3731a59433a56cc8d6e008123.tar.bz2
client-7c48533571e9f9d3731a59433a56cc8d6e008123.zip
Added search and filter options
Diffstat (limited to 'src/components/Icons')
-rw-r--r--src/components/Icons/Filter.tsx10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/components/Icons/Filter.tsx b/src/components/Icons/Filter.tsx
new file mode 100644
index 0000000..a14183d
--- /dev/null
+++ b/src/components/Icons/Filter.tsx
@@ -0,0 +1,10 @@
1import * as React from "react";
2
3export function Filter() {
4 return <svg xmlns="http://www.w3.org/2000/svg" width="16"
5 height="16" fill="currentColor" className="bi bi-filter"
6 viewBox="0 0 16 16">
7 <path
8 d="M6 10.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z"/>
9 </svg>;
10}