diff --git a/src/components/content/accordion.tsx b/src/components/content/accordion.tsx new file mode 100644 index 0000000..1cfecfd --- /dev/null +++ b/src/components/content/accordion.tsx @@ -0,0 +1,31 @@ +import { ReactNode } from "react"; +import { + Accordion, + AccordionContent, + AccordionItem, + AccordionTrigger, +} from "@/components/ui/accordion"; +import { LightbulbIcon } from "lucide-react"; + +interface AccordionProps { + title: string; + children: ReactNode; +} + +export const AccordionComponent = ({ title, children }: AccordionProps) => { + return ( + + + +
+
+ +
+ {title} +
+
+ {children} +
+
+ ); +};