summaryrefslogtreecommitdiffstats
path: root/src/components/Icons
diff options
context:
space:
mode:
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}