src/components/accordion.tsx'use client'import React from 'react'import { clsx } from 'clsx'import { Heading } from '@/components/heading'import {Disclosure,DisclosureButton,DisclosurePanel,} from '@headlessui/react'import chevronDownIcon from '@iconify/icons-heroicons/chevron-down'import { Icon } from '@/components/icon'import { motion } from 'framer-motion'interface AccordionProps {headingText?: stringchildren?: React.ReactNodeclassName?: string}
Showing the first 20 lines.
Get full code