-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2f38ba1
commit d17e96a
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { twMerge } from "tailwind-merge"; | ||
|
||
export default function Ghost({ className, ...props }) { | ||
return ( | ||
<svg | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{...props} | ||
className={twMerge("h-6 w-6 ", className)} | ||
> | ||
<path | ||
fillRule="evenodd" | ||
clipRule="evenodd" | ||
d="M22 19.206V12C22 6.477 17.523 2 12 2C6.477 2 2 6.477 2 12V19.206C2.00006 19.5004 2.07538 19.7899 2.21882 20.047C2.36225 20.3041 2.56903 20.5203 2.81952 20.675C3.07001 20.8297 3.3559 20.9178 3.65002 20.9309C3.94413 20.9441 4.23673 20.8818 4.5 20.75C4.95576 20.5221 5.46365 20.4188 5.97222 20.4504C6.48079 20.482 6.97197 20.6474 7.396 20.93C7.87102 21.2466 8.42913 21.4156 9 21.4156C9.57087 21.4156 10.129 21.2466 10.604 20.93L10.957 20.696C11.2659 20.4902 11.6288 20.3803 12 20.3803C12.3712 20.3803 12.7341 20.4902 13.043 20.696L13.396 20.931C13.871 21.2476 14.4291 21.4166 15 21.4166C15.5709 21.4166 16.129 21.2476 16.604 20.931C17.0281 20.6483 17.5195 20.4827 18.0283 20.4511C18.537 20.4195 19.0451 20.5229 19.501 20.751C19.7643 20.8826 20.0569 20.9447 20.3509 20.9314C20.645 20.9181 20.9308 20.8299 21.1812 20.6751C21.4315 20.5203 21.6382 20.3041 21.7815 20.047C21.9248 19.7898 22 19.5004 22 19.206ZM16 10.5C16 11.328 15.552 12 15 12C14.448 12 14 11.328 14 10.5C14 9.672 14.448 9 15 9C15.552 9 16 9.672 16 10.5ZM9 12C9.552 12 10 11.328 10 10.5C10 9.672 9.552 9 9 9C8.448 9 8 9.672 8 10.5C8 11.328 8.448 12 9 12Z" | ||
fill="currentColor" | ||
/> | ||
</svg> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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"; |