From 8091bf7f32b8432dd30bba65482f61f572ed29bb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 17:32:04 +0900 Subject: [PATCH] =?UTF-8?q?feat:=F0=9F=8E=B8=20update=20icons=20from=20fig?= =?UTF-8?q?ma=20(#15)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: GitHub Co-authored-by: maasa-ubie --- assets/link-icon.svg | 3 +++ assets/medicine-auto-injector-icon.svg | 4 ++++ assets/medicine-injection-form-icon.svg | 3 +++ assets/medicine-intravenous-drip-icon.svg | 3 +++ src/LinkIcon.tsx | 18 ++++++++++++++++++ src/MedicineAutoInjectorIcon.tsx | 22 ++++++++++++++++++++++ src/MedicineInjectionFormIcon.tsx | 18 ++++++++++++++++++ src/MedicineIntravenousDripIcon.tsx | 18 ++++++++++++++++++ src/index.ts | 4 ++++ 9 files changed, 93 insertions(+) create mode 100644 assets/link-icon.svg create mode 100644 assets/medicine-auto-injector-icon.svg create mode 100644 assets/medicine-injection-form-icon.svg create mode 100644 assets/medicine-intravenous-drip-icon.svg create mode 100644 src/LinkIcon.tsx create mode 100644 src/MedicineAutoInjectorIcon.tsx create mode 100644 src/MedicineInjectionFormIcon.tsx create mode 100644 src/MedicineIntravenousDripIcon.tsx 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';