We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f8e8ed commit bdd8c3dCopy full SHA for bdd8c3d
1 file changed
src/pages/playground.tsx
@@ -1,4 +1,5 @@
1
import { Button } from '@shared/ui/Button/Button';
2
+import { Card } from '@shared/ui/Card/Card';
3
import { Checkbox } from '@shared/ui/Checkbox/Checkbox';
4
import { RadioButton } from '@shared/ui/RadioButton/RadioButton';
5
@@ -49,6 +50,16 @@ export default function Playground() {
49
50
<RadioButton checked disabled label="Selected + Disabled" />
51
</div>
52
</section>
53
+ <section className="flex flex-col gap-4">
54
+ <h2 className="typo-body-1">Card</h2>
55
+
56
+ <Card
57
+ imageSrc="/iphone11.png"
58
+ titleText="Title 인데 제목이 정말 길 경우에는 두줄 까지만 보이고, 뒤엔 점 처리"
59
+ priceText="0,000원"
60
+ dateText="1일 전"
61
+ />
62
+ </section>
63
64
);
65
}
0 commit comments