Skip to content

Commit 9e89cc7

Browse files
committed
refactor: remove-duplicate-style
1 parent 117885e commit 9e89cc7

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/lib/accordion/index.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,7 @@ interface AccordionProps {
1717
const DefaultTitle: React.FC<{ item: AccordionItem }> = ({ item }) => (
1818
<>
1919
{item.icon ?? (item.Icon && <item.Icon />)}
20-
<p
21-
className={clsx(
22-
"w-fit",
23-
"text-klerosUIComponentsPrimaryText text-center font-semibold",
24-
)}
25-
>
26-
{item.title}
27-
</p>
20+
<p className={clsx("w-fit", "text-center font-semibold")}>{item.title}</p>
2821
</>
2922
);
3023

0 commit comments

Comments
 (0)