diff options
Diffstat (limited to 'src/components/svg/Visitor.tsx')
| -rw-r--r-- | src/components/svg/Visitor.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/svg/Visitor.tsx b/src/components/svg/Visitor.tsx new file mode 100644 index 0000000..16db585 --- /dev/null +++ b/src/components/svg/Visitor.tsx @@ -0,0 +1,8 @@ +import type { SVGProps } from 'react'; + +const SvgVisitor = (props: SVGProps<SVGSVGElement>) => ( + <svg xmlns="http://www.w3.org/2000/svg" xmlSpace="preserve" viewBox="0 0 512 512" {...props}> + <path d="M256 0c-74.439 0-135 60.561-135 135s60.561 135 135 135 135-60.561 135-135S330.439 0 256 0m167.966 358.195C387.006 320.667 338.009 300 286 300h-60c-52.008 0-101.006 20.667-137.966 58.195C51.255 395.539 31 444.833 31 497c0 8.284 6.716 15 15 15h420c8.284 0 15-6.716 15-15 0-52.167-20.255-101.461-57.034-138.805" /> + </svg> +); +export default SvgVisitor; |