diff --git a/src/components/Svgs/Vaccine.tsx b/src/components/Svgs/Vaccine.tsx
index 2f5b754..bb460e0 100644
--- a/src/components/Svgs/Vaccine.tsx
+++ b/src/components/Svgs/Vaccine.tsx
@@ -1,5 +1,5 @@
import * as React from 'react'
-import Svg, { SvgProps, G, Path, Defs, ClipPath } from 'react-native-svg'
+import Svg, { SvgProps, Path } from 'react-native-svg'
const SvgVaccine = (props: SvgProps) => {
return (
@@ -8,19 +8,20 @@ const SvgVaccine = (props: SvgProps) => {
height={24}
fill="none"
stroke="black"
- strokeLinecap="round"
- strokeLinejoin="round"
{...props}
>
-
-
-
-
-
-
-
-
-
+
+
+
)
}