diff --git a/components/TempDesignSystem/Accordion/accordion.module.css b/components/TempDesignSystem/Accordion/accordion.module.css
index 42d1be85f..3b9025ace 100644
--- a/components/TempDesignSystem/Accordion/accordion.module.css
+++ b/components/TempDesignSystem/Accordion/accordion.module.css
@@ -5,6 +5,7 @@
.card {
border-radius: var(--Corner-radius-Medium);
background-color: var(--Base-Surface-Primary-light-Normal);
+ background-color: white;
}
.faq {
background-color: var(--Base-Background-Primary-Normal);
diff --git a/components/TempDesignSystem/Accordion/index.tsx b/components/TempDesignSystem/Accordion/index.tsx
index 79d4c83bf..98ba687e2 100644
--- a/components/TempDesignSystem/Accordion/index.tsx
+++ b/components/TempDesignSystem/Accordion/index.tsx
@@ -14,9 +14,10 @@ export default function Accordion({
{Children.map(children, (child) => {
if (isValidElement
(child)) {
return cloneElement(child, { variant })
+ } else {
+ return child
}
})}
- {/* {children} */}
)
}
diff --git a/components/TempDesignSystem/Accordion/variants.ts b/components/TempDesignSystem/Accordion/variants.ts
index 354c03fba..7b12f74d7 100644
--- a/components/TempDesignSystem/Accordion/variants.ts
+++ b/components/TempDesignSystem/Accordion/variants.ts
@@ -10,6 +10,6 @@ export const accordionVariants = cva(styles.accordion, {
},
},
defaultVariants: {
- variant: "card",
+ variant: "faq",
},
})
diff --git a/types/components/icon.ts b/types/components/icon.ts
index bb2030a17..1885c221c 100644
--- a/types/components/icon.ts
+++ b/types/components/icon.ts
@@ -5,3 +5,37 @@ import { iconVariants } from "@/components/Icons/variants"
export interface IconProps
extends Omit, "color">,
VariantProps {}
+
+export enum IconName {
+ Accessibility = "Accessibility",
+ AccountCircle = "AccountCircle",
+ ArrowRight = "ArrowRight",
+ Bar = "Bar",
+ Biking = "Biking",
+ Calendar = "Calendar",
+ Cellphone = "Cellphone",
+ Check = "Check",
+ CheckCircle = "CheckCircle",
+ ChevronDown = "ChevronDown",
+ ChevronRight = "ChevronRight",
+ Close = "Close",
+ Coffee = "Coffee",
+ Concierge = "Concierge",
+ DoorOpen = "DoorOpen",
+ ElectricBike = "ElectricBike",
+ Email = "Email",
+ Fitness = "Fitness",
+ Globe = "Globe",
+ House = "House",
+ InfoCircle = "InfoCircle",
+ Location = "Location",
+ Lock = "Lock",
+ Parking = "Parking",
+ Person = "Person",
+ Pets = "Pets",
+ Phone = "Phone",
+ PlusCircle = "PlusCircle",
+ Restaurant = "Restaurant",
+ TshirtWash = "TshirtWash",
+ Wifi = "Wifi",
+}