A vertically stacked set of interactive headings that each reveal a section of content.
package examples import "github.com/axadrn/shadcn-templ/v2/components/accordion"package examples import "github.com/axadrn/shadcn-templ/v2/components/accordion" templ AccordionDemo() { @accordion.Accordion(accordion.Props{Class: "max-w-lg"}) { @accordion.Item(accordion.ItemProps{Open: true}) { @accordion.Trigger() { What are your shipping options? } @accordion.Content() { We offer standard (5-7 days), express (2-3 days), and overnight shipping. Free shipping on international orders. } } @accordion.Item() { @accordion.Trigger() { What is your return policy? } @accordion.Content() { Returns accepted within 30 days. Items must be unused and in original packaging. Refunds processed within 5-7 business days. } } @accordion.Item() { @accordion.Trigger() { How can I contact customer support? } @accordion.Content() { Reach us via email, live chat, or phone. We respond within 24 hours during business days. } } }}Installation
Usage
Composition
Use the following composition to build an Accordion:
Basic
A basic accordion that shows one item at a time. The first item is open by default.
package examples import "github.com/axadrn/shadcn-templ/v2/components/accordion"package examples import "github.com/axadrn/shadcn-templ/v2/components/accordion" templ AccordionBasic() { @accordion.Accordion(accordion.Props{Class: "max-w-lg"}) { @accordion.Item(accordion.ItemProps{Open: true}) { @accordion.Trigger() { How do I reset my password? } @accordion.Content() { Click on 'Forgot Password' on the login page, enter your email address, and we'll send you a link to reset your password. The link will expire in 24 hours. } } @accordion.Item() { @accordion.Trigger() { Can I change my subscription plan? } @accordion.Content() { Yes, you can upgrade or downgrade your plan at any time from your account settings. Changes will be reflected in your next billing cycle. } } @accordion.Item() { @accordion.Trigger() { What payment methods do you accept? } @accordion.Content() { We accept all major credit cards, PayPal, and bank transfers. All payments are processed securely through our payment partners. } } }}DisableOpenMultiple
Use the DisableOpenMultiple prop to allow multiple items to be open at the same time.
package examples import "github.com/axadrn/shadcn-templ/v2/components/accordion"package examples import "github.com/axadrn/shadcn-templ/v2/components/accordion" templ AccordionMultiple() { @accordion.Accordion(accordion.Props{DisableOpenMultiple: true, Class: "max-w-lg"}) { @accordion.Item(accordion.ItemProps{Open: true}) { @accordion.Trigger() { Notification Settings } @accordion.Content() { Manage how you receive notifications. You can enable email alerts for updates or push notifications for mobile devices. } } @accordion.Item() { @accordion.Trigger() { Privacy & Security } @accordion.Content() { Control your privacy settings and security preferences. Enable two-factor authentication, manage connected devices, review active sessions, and configure data sharing preferences. You can also download your data or delete your account. } } @accordion.Item() { @accordion.Trigger() { Billing & Subscription } @accordion.Content() { View your current plan, payment history, and upcoming invoices. Update your payment method, change your subscription tier, or cancel your subscription. } } }}Disabled
Use the Disabled prop on accordion.Item to disable individual items.
package examples import "github.com/axadrn/shadcn-templ/v2/components/accordion"package examples import "github.com/axadrn/shadcn-templ/v2/components/accordion" templ AccordionDisabled() { @accordion.Accordion(accordion.Props{Class: "w-full"}) { @accordion.Item() { @accordion.Trigger() { Can I access my account history? } @accordion.Content() { Yes, you can view your complete account history including all transactions, plan changes, and support tickets in the Account History section of your dashboard. } } @accordion.Item(accordion.ItemProps{Disabled: true}) { @accordion.Trigger() { Premium feature information } @accordion.Content() { This section contains information about premium features. Upgrade your plan to access this content. } } @accordion.Item() { @accordion.Trigger() { How do I update my email address? } @accordion.Content() { You can update your email address in your account settings. You'll receive a verification email at your new address to confirm the change. } } }}Borders
Add border to the Accordion and border-b last:border-b-0 to the accordion.Item to add borders to the items.
package examples import "github.com/axadrn/shadcn-templ/v2/components/accordion"package examples import "github.com/axadrn/shadcn-templ/v2/components/accordion" templ AccordionBorders() { @accordion.Accordion(accordion.Props{Class: "max-w-lg rounded-lg border"}) { @accordion.Item(accordion.ItemProps{Open: true, Class: "border-b px-4 last:border-b-0"}) { @accordion.Trigger() { How does billing work? } @accordion.Content() { We offer monthly and annual subscription plans. Billing is charged at the beginning of each cycle, and you can cancel anytime. All plans include automatic backups, 24/7 support, and unlimited team members. } } @accordion.Item(accordion.ItemProps{Class: "border-b px-4 last:border-b-0"}) { @accordion.Trigger() { Is my data secure? } @accordion.Content() { Yes. We use end-to-end encryption, SOC 2 Type II compliance, and regular third-party security audits. All data is encrypted at rest and in transit using industry-standard protocols. } } @accordion.Item(accordion.ItemProps{Class: "border-b px-4 last:border-b-0"}) { @accordion.Trigger() { What integrations do you support? } @accordion.Content() { We integrate with 500+ popular tools including Slack, Zapier, Salesforce, HubSpot, and more. You can also build custom integrations using our REST API and webhooks. } } }}Card
Wrap the Accordion in a Card component.
package examples import (package examples import ( "github.com/axadrn/shadcn-templ/v2/components/accordion" "github.com/axadrn/shadcn-templ/v2/components/card") templ AccordionCard() { @card.Card(card.Props{Class: "w-full max-w-sm"}) { @card.Header() { @card.Title() { Subscription & Billing } @card.Description() { Common questions about your account, plans, payments and cancellations. } } @card.Content() { @accordion.Accordion() { @accordion.Item(accordion.ItemProps{Open: true}) { @accordion.Trigger() { What subscription plans do you offer? } @accordion.Content() { We offer three subscription tiers: Starter ($9/month), Professional ($29/month), and Enterprise ($99/month). Each plan includes increasing storage limits, API access, priority support, and team collaboration features. } } @accordion.Item() { @accordion.Trigger() { How does billing work? } @accordion.Content() { Billing occurs automatically at the start of each billing cycle. We accept all major credit cards, PayPal, and ACH transfers for enterprise customers. You'll receive an invoice via email after each payment. } } @accordion.Item() { @accordion.Trigger() { How do I cancel my subscription? } @accordion.Content() { You can cancel your subscription anytime from your account settings. There are no cancellation fees or penalties. Your access will continue until the end of your current billing period. } } } } }}API Reference
Accordion
The Accordion component is the root container that manages which items are open.
Item
The accordion.Item component wraps a single trigger and content pair.
Trigger
The accordion.Trigger component toggles its item open and closed.
Content
The accordion.Content component holds the content revealed by the trigger.