diff --git a/skyvern-frontend/src/components/icons/DocumentIcon.tsx b/skyvern-frontend/src/components/icons/DocumentIcon.tsx
new file mode 100644
index 00000000..8970fce9
--- /dev/null
+++ b/skyvern-frontend/src/components/icons/DocumentIcon.tsx
@@ -0,0 +1,53 @@
+type Props = {
+ className?: string;
+};
+
+function DocumentIcon({ className }: Props) {
+ return (
+
+ );
+}
+
+export { DocumentIcon };
diff --git a/skyvern-frontend/src/components/icons/HospitalIcon.tsx b/skyvern-frontend/src/components/icons/HospitalIcon.tsx
new file mode 100644
index 00000000..9c80a4a2
--- /dev/null
+++ b/skyvern-frontend/src/components/icons/HospitalIcon.tsx
@@ -0,0 +1,51 @@
+type Props = {
+ className?: string;
+};
+
+function HospitalIcon({ className }: Props) {
+ return (
+
+ );
+}
+
+export { HospitalIcon };
diff --git a/skyvern-frontend/src/components/icons/LogisticsIcon.tsx b/skyvern-frontend/src/components/icons/LogisticsIcon.tsx
new file mode 100644
index 00000000..c8248431
--- /dev/null
+++ b/skyvern-frontend/src/components/icons/LogisticsIcon.tsx
@@ -0,0 +1,55 @@
+type Props = {
+ className?: string;
+};
+
+function LogisticsIcon({ className }: Props) {
+ return (
+
+ );
+}
+
+export { LogisticsIcon };
diff --git a/skyvern-frontend/src/components/icons/PackageIcon.tsx b/skyvern-frontend/src/components/icons/PackageIcon.tsx
new file mode 100644
index 00000000..42de73b9
--- /dev/null
+++ b/skyvern-frontend/src/components/icons/PackageIcon.tsx
@@ -0,0 +1,43 @@
+type Props = {
+ className?: string;
+};
+
+function PackageIcon({ className }: Props) {
+ return (
+
+ );
+}
+
+export { PackageIcon };