From d17e96a231e8235aac9a12cf3f10e55333197d3a Mon Sep 17 00:00:00 2001 From: Akalanka Date: Sun, 15 Oct 2023 19:58:58 +0530 Subject: [PATCH] Feat: added ghost icon --- src/icons/ghost.jsx | 20 ++++++++++++++++++++ src/icons/index.jsx | 1 + 2 files changed, 21 insertions(+) create mode 100644 src/icons/ghost.jsx diff --git a/src/icons/ghost.jsx b/src/icons/ghost.jsx new file mode 100644 index 0000000..a689adf --- /dev/null +++ b/src/icons/ghost.jsx @@ -0,0 +1,20 @@ +import { twMerge } from "tailwind-merge"; + +export default function Ghost({ className, ...props }) { + return ( + + + + ); +} diff --git a/src/icons/index.jsx b/src/icons/index.jsx index 10a076c..0331652 100644 --- a/src/icons/index.jsx +++ b/src/icons/index.jsx @@ -1,5 +1,6 @@ export { default as ArrowPair } from "./arrow-pair"; export { default as Bashaway } from "./bashaway"; export { default as FOSS } from "./foss"; +export { default as Ghost } from "./ghost"; export { default as Times } from "./times"; export { default as Link } from "./link";