diff --git a/assets/link-icon.svg b/assets/link-icon.svg new file mode 100644 index 0000000..973e0a9 --- /dev/null +++ b/assets/link-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/medicine-auto-injector-icon.svg b/assets/medicine-auto-injector-icon.svg new file mode 100644 index 0000000..f537e04 --- /dev/null +++ b/assets/medicine-auto-injector-icon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/assets/medicine-injection-form-icon.svg b/assets/medicine-injection-form-icon.svg new file mode 100644 index 0000000..5133dab --- /dev/null +++ b/assets/medicine-injection-form-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/medicine-intravenous-drip-icon.svg b/assets/medicine-intravenous-drip-icon.svg new file mode 100644 index 0000000..e4220bb --- /dev/null +++ b/assets/medicine-intravenous-drip-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/LinkIcon.tsx b/src/LinkIcon.tsx new file mode 100644 index 0000000..0364ab1 --- /dev/null +++ b/src/LinkIcon.tsx @@ -0,0 +1,18 @@ +import Svg, { Path } from 'react-native-svg'; +import type { SvgProps } from 'react-native-svg'; +interface ISvgProps extends SvgProps { + xmlns?: string; + xmlnsXlink?: string; + xmlSpace?: string; +} +const SvgLinkIcon = (props: ISvgProps) => ( + + + +); +export default SvgLinkIcon; diff --git a/src/MedicineAutoInjectorIcon.tsx b/src/MedicineAutoInjectorIcon.tsx new file mode 100644 index 0000000..37f4fb5 --- /dev/null +++ b/src/MedicineAutoInjectorIcon.tsx @@ -0,0 +1,22 @@ +import Svg, { Path } from 'react-native-svg'; +import type { SvgProps } from 'react-native-svg'; +interface ISvgProps extends SvgProps { + xmlns?: string; + xmlnsXlink?: string; + xmlSpace?: string; +} +const SvgMedicineAutoInjectorIcon = (props: ISvgProps) => ( + + + + +); +export default SvgMedicineAutoInjectorIcon; diff --git a/src/MedicineInjectionFormIcon.tsx b/src/MedicineInjectionFormIcon.tsx new file mode 100644 index 0000000..c2ec02e --- /dev/null +++ b/src/MedicineInjectionFormIcon.tsx @@ -0,0 +1,18 @@ +import Svg, { Path } from 'react-native-svg'; +import type { SvgProps } from 'react-native-svg'; +interface ISvgProps extends SvgProps { + xmlns?: string; + xmlnsXlink?: string; + xmlSpace?: string; +} +const SvgMedicineInjectionFormIcon = (props: ISvgProps) => ( + + + +); +export default SvgMedicineInjectionFormIcon; diff --git a/src/MedicineIntravenousDripIcon.tsx b/src/MedicineIntravenousDripIcon.tsx new file mode 100644 index 0000000..ea83f26 --- /dev/null +++ b/src/MedicineIntravenousDripIcon.tsx @@ -0,0 +1,18 @@ +import Svg, { Path } from 'react-native-svg'; +import type { SvgProps } from 'react-native-svg'; +interface ISvgProps extends SvgProps { + xmlns?: string; + xmlnsXlink?: string; + xmlSpace?: string; +} +const SvgMedicineIntravenousDripIcon = (props: ISvgProps) => ( + + + +); +export default SvgMedicineIntravenousDripIcon; diff --git a/src/index.ts b/src/index.ts index a7882d6..220a6c2 100644 --- a/src/index.ts +++ b/src/index.ts @@ -110,6 +110,7 @@ export { default as LeaderHorizontalIcon } from './LeaderHorizontalIcon'; export { default as LeaderVerticalIcon } from './LeaderVerticalIcon'; export { default as LightIcon } from './LightIcon'; export { default as LightOnIcon } from './LightOnIcon'; +export { default as LinkIcon } from './LinkIcon'; export { default as LockIcon } from './LockIcon'; export { default as LoginIcon } from './LoginIcon'; export { default as LogoutIcon } from './LogoutIcon'; @@ -125,9 +126,12 @@ export { default as MedicalFormIcon } from './MedicalFormIcon'; export { default as MedicalHeartIcon } from './MedicalHeartIcon'; export { default as MedicalSymbolFillIcon } from './MedicalSymbolFillIcon'; export { default as MedicalSymbolOutlineIcon } from './MedicalSymbolOutlineIcon'; +export { default as MedicineAutoInjectorIcon } from './MedicineAutoInjectorIcon'; export { default as MedicineAutoinjectorIcon } from './MedicineAutoinjectorIcon'; export { default as MedicineEnemaIcon } from './MedicineEnemaIcon'; +export { default as MedicineInjectionFormIcon } from './MedicineInjectionFormIcon'; export { default as MedicineInjectionformIcon } from './MedicineInjectionformIcon'; +export { default as MedicineIntravenousDripIcon } from './MedicineIntravenousDripIcon'; export { default as MedicineIntravenousdripIcon } from './MedicineIntravenousdripIcon'; export { default as MedicinePowderIcon } from './MedicinePowderIcon'; export { default as MedicineSuppositoryIcon } from './MedicineSuppositoryIcon';