feat: add NewSelect component for enhanced selection functionality and update Button styles

This commit is contained in:
2025-06-11 18:37:35 +05:00
parent 49f335e83a
commit e11bcb13f3
5 changed files with 143 additions and 4 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ function ChevronDownIcon() {
<path
d="M5.833 8.333 10 12.5l4.167-4.167"
stroke="currentColor"
strokeWidth={1.5}
strokeWidth={1.2}
strokeLinecap="round"
strokeLinejoin="round"
/>
+15
View File
@@ -0,0 +1,15 @@
function ChevronUpIcon() {
return (
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="m5 12.084 5-5 5 5"
stroke="currentColor"
strokeWidth={1.2}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
export default ChevronUpIcon;