From a66bbc114c930c6531c96dfc7a550ad905ff453b Mon Sep 17 00:00:00 2001 From: przeq piciel Date: Tue, 27 Aug 2024 21:34:10 +0000 Subject: [PATCH] new icons --- app/components/Icons/Lock/index.tsx | 24 ++++++++++++++++++++++++ app/components/Icons/Move/index.tsx | 24 ++++++++++++++++++++++++ app/components/Icons/Pencil/index.tsx | 24 ++++++++++++++++++++++++ 3 files changed, 72 insertions(+) create mode 100644 app/components/Icons/Lock/index.tsx create mode 100644 app/components/Icons/Move/index.tsx create mode 100644 app/components/Icons/Pencil/index.tsx diff --git a/app/components/Icons/Lock/index.tsx b/app/components/Icons/Lock/index.tsx new file mode 100644 index 0000000..0a7d10d --- /dev/null +++ b/app/components/Icons/Lock/index.tsx @@ -0,0 +1,24 @@ +import React from "react"; + +const index = () => { + return ( + <> + + + + + ); +}; + +export default index; diff --git a/app/components/Icons/Move/index.tsx b/app/components/Icons/Move/index.tsx new file mode 100644 index 0000000..3b44028 --- /dev/null +++ b/app/components/Icons/Move/index.tsx @@ -0,0 +1,24 @@ +import React from "react"; + +const index = () => { + return ( + <> + + + + + ); +}; + +export default index; diff --git a/app/components/Icons/Pencil/index.tsx b/app/components/Icons/Pencil/index.tsx new file mode 100644 index 0000000..09ece78 --- /dev/null +++ b/app/components/Icons/Pencil/index.tsx @@ -0,0 +1,24 @@ +import React from "react"; + +const index = () => { + return ( + <> + + + + + ); +}; + +export default index;