diff --git a/assets/medicine-autoinjector-icon.svg b/assets/medicine-autoinjector-icon.svg new file mode 100644 index 0000000..f537e04 --- /dev/null +++ b/assets/medicine-autoinjector-icon.svg @@ -0,0 +1,4 @@ + + + + diff --git a/assets/medicine-enema-icon.svg b/assets/medicine-enema-icon.svg new file mode 100644 index 0000000..e9e86ad --- /dev/null +++ b/assets/medicine-enema-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/medicine-injectionform-icon.svg b/assets/medicine-injectionform-icon.svg new file mode 100644 index 0000000..5133dab --- /dev/null +++ b/assets/medicine-injectionform-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/medicine-intravenousdrip-icon.svg b/assets/medicine-intravenousdrip-icon.svg new file mode 100644 index 0000000..e4220bb --- /dev/null +++ b/assets/medicine-intravenousdrip-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/medicine-powder-icon.svg b/assets/medicine-powder-icon.svg new file mode 100644 index 0000000..c33aa3f --- /dev/null +++ b/assets/medicine-powder-icon.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/medicine-suppository-icon.svg b/assets/medicine-suppository-icon.svg new file mode 100644 index 0000000..d539aba --- /dev/null +++ b/assets/medicine-suppository-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/medicine-syrup-icon.svg b/assets/medicine-syrup-icon.svg new file mode 100644 index 0000000..acddfa9 --- /dev/null +++ b/assets/medicine-syrup-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/medicine-tablet-icon.svg b/assets/medicine-tablet-icon.svg new file mode 100644 index 0000000..3bbbb6b --- /dev/null +++ b/assets/medicine-tablet-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/assets/ticket-icon.svg b/assets/ticket-icon.svg new file mode 100644 index 0000000..c58a8d3 --- /dev/null +++ b/assets/ticket-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/assets/workflow-icon.svg b/assets/workflow-icon.svg index d6f1921..ba1da8a 100644 --- a/assets/workflow-icon.svg +++ b/assets/workflow-icon.svg @@ -1,3 +1,3 @@ - + diff --git a/src/MedicineAutoinjectorIcon.tsx b/src/MedicineAutoinjectorIcon.tsx new file mode 100644 index 0000000..bc05530 --- /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/MedicineEnemaIcon.tsx b/src/MedicineEnemaIcon.tsx new file mode 100644 index 0000000..082a185 --- /dev/null +++ b/src/MedicineEnemaIcon.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 SvgMedicineEnemaIcon = (props: ISvgProps) => ( + + + +); +export default SvgMedicineEnemaIcon; diff --git a/src/MedicineInjectionformIcon.tsx b/src/MedicineInjectionformIcon.tsx new file mode 100644 index 0000000..208a7aa --- /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..5a10dcb --- /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/MedicinePowderIcon.tsx b/src/MedicinePowderIcon.tsx new file mode 100644 index 0000000..2c1b227 --- /dev/null +++ b/src/MedicinePowderIcon.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 SvgMedicinePowderIcon = (props: ISvgProps) => ( + + + + +); +export default SvgMedicinePowderIcon; diff --git a/src/MedicineSuppositoryIcon.tsx b/src/MedicineSuppositoryIcon.tsx new file mode 100644 index 0000000..a879a5d --- /dev/null +++ b/src/MedicineSuppositoryIcon.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 SvgMedicineSuppositoryIcon = (props: ISvgProps) => ( + + + +); +export default SvgMedicineSuppositoryIcon; diff --git a/src/MedicineSyrupIcon.tsx b/src/MedicineSyrupIcon.tsx new file mode 100644 index 0000000..b3eea4a --- /dev/null +++ b/src/MedicineSyrupIcon.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 SvgMedicineSyrupIcon = (props: ISvgProps) => ( + + + +); +export default SvgMedicineSyrupIcon; diff --git a/src/MedicineTabletIcon.tsx b/src/MedicineTabletIcon.tsx new file mode 100644 index 0000000..299cf66 --- /dev/null +++ b/src/MedicineTabletIcon.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 SvgMedicineTabletIcon = (props: ISvgProps) => ( + + + +); +export default SvgMedicineTabletIcon; diff --git a/src/TicketIcon.tsx b/src/TicketIcon.tsx new file mode 100644 index 0000000..18d5890 --- /dev/null +++ b/src/TicketIcon.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 SvgTicketIcon = (props: ISvgProps) => ( + + + + +); +export default SvgTicketIcon; diff --git a/src/WorkflowIcon.tsx b/src/WorkflowIcon.tsx index 9b2061b..b569a65 100644 --- a/src/WorkflowIcon.tsx +++ b/src/WorkflowIcon.tsx @@ -10,7 +10,7 @@ const SvgWorkflowIcon = (props: ISvgProps) => ( diff --git a/src/index.ts b/src/index.ts index dec22da..a7882d6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -125,6 +125,14 @@ 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 MedicineEnemaIcon } from './MedicineEnemaIcon'; +export { default as MedicineInjectionformIcon } from './MedicineInjectionformIcon'; +export { default as MedicineIntravenousdripIcon } from './MedicineIntravenousdripIcon'; +export { default as MedicinePowderIcon } from './MedicinePowderIcon'; +export { default as MedicineSuppositoryIcon } from './MedicineSuppositoryIcon'; +export { default as MedicineSyrupIcon } from './MedicineSyrupIcon'; +export { default as MedicineTabletIcon } from './MedicineTabletIcon'; export { default as MemoIcon } from './MemoIcon'; export { default as MenuIcon } from './MenuIcon'; export { default as MicIcon } from './MicIcon'; @@ -179,6 +187,7 @@ export { default as ThumbDownFillIcon } from './ThumbDownFillIcon'; export { default as ThumbDownOutlineIcon } from './ThumbDownOutlineIcon'; export { default as ThumbUpFillIcon } from './ThumbUpFillIcon'; export { default as ThumbUpOutlineIcon } from './ThumbUpOutlineIcon'; +export { default as TicketIcon } from './TicketIcon'; export { default as TrainIcon } from './TrainIcon'; export { default as TrashEmptyIcon } from './TrashEmptyIcon'; export { default as TrashIcon } from './TrashIcon';