Skip to content

Commit

Permalink
refactor(docs): remove unnecessary classes
Browse files Browse the repository at this point in the history
  • Loading branch information
wingkwong committed Sep 29, 2024
1 parent 7c9b504 commit f1e4901
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions apps/docs/components/marketing/features-grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,7 @@ export const FeaturesGrid: React.FC<FeaturesGridProps> = ({features, classNames,
<CardHeader className={slots.header({class: classNames?.header})}>
<div className={slots.iconWrapper({class: classNames?.iconWrapper})}>{feat.icon}</div>
<p className={slots.title({class: classNames?.title})}>{feat.title}</p>
{feat.isExternal && (
<LinkIcon className="text-black dark:text-white" height={18} width={18} />
)}
{feat.isExternal && <LinkIcon height={18} width={18} />}
</CardHeader>
{feat.description ? (
<CardBody className={slots.body({class: classNames?.body})}>
Expand Down

0 comments on commit f1e4901

Please sign in to comment.