Skip to content

Commit a0b38c4

Browse files
committed
fix: duplicated Card declaration
1 parent 9bb7379 commit a0b38c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/quote/Quote.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import React from "react";
2-
import Card, {Card} from "../card/Card";
2+
import Card, {Card as CardProps} from "../card/Card";
33
import "./Quote.style.scss"
44
import Text from "../text/Text";
55
import CardSection from "../card/CardSection";
66

7-
export interface QuoteType extends Omit<Card, "children"> {
7+
export interface QuoteType extends Omit<CardProps, "children"> {
88
children: string
99
logo?: string
1010
name: string

0 commit comments

Comments
 (0)