File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ function LightButtonLink({ className, ...props }: React.ComponentProps<"a">) {
45
45
) ;
46
46
}
47
47
48
- export function Eyebrow ( {
48
+ function Eyebrow ( {
49
49
as = "p" ,
50
50
className,
51
51
color = "gray" ,
@@ -606,7 +606,7 @@ function PartnerPlans() {
606
606
) ;
607
607
}
608
608
609
- export function FaqGroup ( { title, children } : { title : string ; children : React . ReactNode } ) {
609
+ function FaqGroup ( { title, children } : { title : string ; children : React . ReactNode } ) {
610
610
return (
611
611
< div className = "group" >
612
612
< Eyebrow as = "h3" className = "px-4 py-2 sm:px-2" >
@@ -617,7 +617,7 @@ export function FaqGroup({ title, children }: { title: string; children: React.R
617
617
) ;
618
618
}
619
619
620
- export function Faq ( { question, children } : { question : string ; children : React . ReactNode } ) {
620
+ function Faq ( { question, children } : { question : string ; children : React . ReactNode } ) {
621
621
let id =
622
622
"faq-" +
623
623
question
You can’t perform that action at this time.
0 commit comments