11import Button from "components/Button/Button" ;
2- import StartIcon from "assets/icons/star.svg?react" ;
2+ import StarIcon from "assets/icons/star.svg?react" ;
33import ArrowLeftIcon from "assets/icons/arrow-left.svg?react" ;
44import ArrowRightIcon from "assets/icons/arrow-right.svg?react" ;
55
@@ -24,25 +24,87 @@ const Components = () => {
2424 </ h2 >
2525
2626 < div className = "space-y-8" >
27- < div className = "flex flex-wrap items-center gap-4" >
28- < Button variant = "primary" >
29- Create your profile
30- </ Button >
31- < Button variant = "outline" >
32- List all neighborhoods
33- </ Button >
34- < Button variant = "outline" >
35- < ArrowLeftIcon className = "font-normal h-[18px] w-[18px] text-black" />
36- </ Button >
37- < Button isDisabled > Continue</ Button >
38- < Button variant = "outline" >
39- Next
40- < ArrowRightIcon className = "font-normal h-[18px] w-[18px] text-black" />
41- </ Button >
42- < Button variant = "orange" >
43- < StartIcon />
44- Add to favorites
45- </ Button >
27+ < div >
28+ < h3 className = "text-xl text-gray-800 mb-2" >
29+ Small
30+ </ h3 >
31+ < div className = "flex flex-column flex-wrap items-center gap-4" >
32+ < Button variant = "primary" size = "small" >
33+ Primary
34+ </ Button >
35+ < Button variant = "secondary" size = "small" >
36+ Secondary
37+ </ Button >
38+ < Button variant = "outline" size = "small" >
39+ Outline
40+ </ Button >
41+ < Button variant = "outline" size = "small" >
42+ < ArrowLeftIcon className = "font-normal h-[14px] w-[14px] text-black" />
43+ </ Button >
44+ < Button isDisabled size = "small" >
45+ Disabled
46+ </ Button >
47+ < Button variant = "outline" size = "small" >
48+ Next
49+ < ArrowRightIcon className = "font-normal h-[14px] w-[14px] text-black" />
50+ </ Button >
51+ < Button variant = "orange" size = "small" >
52+ < StarIcon className = "font-normal h-[14px] w-[14px]" />
53+ Add to favorites
54+ </ Button >
55+ </ div >
56+ </ div >
57+ < div >
58+ < h3 className = "text-xl text-gray-800 mb-2" >
59+ Medium
60+ </ h3 >
61+ < div className = "flex flex-column flex-wrap items-center gap-4" >
62+ < Button variant = "primary" > Primary</ Button >
63+ < Button variant = "secondary" > Secondary</ Button >
64+ < Button variant = "outline" > Outline</ Button >
65+ < Button variant = "outline" >
66+ < ArrowLeftIcon className = "font-normal h-[14px] w-[14px] text-black" />
67+ </ Button >
68+ < Button isDisabled > Disabled</ Button >
69+ < Button variant = "outline" >
70+ Next
71+ < ArrowRightIcon className = "font-normal h-[14px] w-[14px] text-black" />
72+ </ Button >
73+ < Button variant = "orange" >
74+ < StarIcon className = "font-normal h-[14px] w-[14px]" />
75+ Add to favorites
76+ </ Button >
77+ </ div >
78+ </ div >
79+ < div >
80+ < h3 className = "text-xl text-gray-800 mb-2" >
81+ Large
82+ </ h3 >
83+ < div className = "flex flex-column flex-wrap items-center gap-4" >
84+ < Button variant = "primary" size = "large" >
85+ Primary
86+ </ Button >
87+ < Button variant = "secondary" size = "large" >
88+ Secondary
89+ </ Button >
90+ < Button variant = "outline" size = "large" >
91+ Outline
92+ </ Button >
93+ < Button variant = "outline" size = "large" >
94+ < ArrowLeftIcon className = "font-normal h-[17px] w-[17px] text-black" />
95+ </ Button >
96+ < Button size = "large" isDisabled >
97+ Disabled
98+ </ Button >
99+ < Button variant = "outline" size = "large" >
100+ Next
101+ < ArrowRightIcon className = "font-normal h-[17px] w-[17px] text-black" />
102+ </ Button >
103+ < Button variant = "orange" size = "large" >
104+ < StarIcon className = "font-normal h-[17px] w-[17px]" />
105+ Add to favorites
106+ </ Button >
107+ </ div >
46108 </ div >
47109 </ div >
48110 </ section >
0 commit comments