Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Youakeem committed Sep 16, 2024
1 parent c9489af commit a8ee15e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/src/components/Card/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function CardTitle({ className, children }: PropsWithChildren<TitleProps>) {

type SubtitleProps = ComponentProps<typeof Text>

function CartSubtitle({ className, children }: PropsWithChildren<SubtitleProps>) {
function CardSubtitle({ className, children }: PropsWithChildren<SubtitleProps>) {
return (
<Text color="textSecondary" className={className}>
{children}
Expand All @@ -56,5 +56,5 @@ export const Card = {
Media: CardMedia,
Heading: CardHeading,
Title: CardTitle,
Subtitle: CartSubtitle,
Subtitle: CardSubtitle,
}

0 comments on commit a8ee15e

Please sign in to comment.