upd create session modal

This commit is contained in:
2025-06-03 18:44:03 +05:00
parent 3cabd710a5
commit 9870866f1e
10 changed files with 237 additions and 147 deletions
+14
View File
@@ -0,0 +1,14 @@
function CheckIcon() {
return (
<svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
fillRule="evenodd"
clipRule="evenodd"
d="M9.874 3.668a.5.5 0 0 1-.042.706l-4.5 4a.5.5 0 0 1-.686-.02l-2.5-2.5a.5.5 0 1 1 .708-.708L5.02 7.313l4.148-3.687a.5.5 0 0 1 .706.042"
fill="currentColor"
/>
</svg>
);
}
export default CheckIcon;
+1 -7
View File
@@ -1,12 +1,6 @@
function ChevronDownIcon() {
return (
<svg
width={20}
height={20}
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<svg viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M5.833 8.333 10 12.5l4.167-4.167"
stroke="currentColor"
+5 -11
View File
@@ -1,18 +1,12 @@
function ChevronLeftIcon() {
return (
<svg
width={7}
height={12}
viewBox='0 0 7 12'
fill='none'
xmlns='http://www.w3.org/2000/svg'
>
<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d='M0.75 1L5.75 6L0.75 11'
stroke='currentColor'
d="M7.875 3.5 4.375 7l3.5 3.5"
stroke="currentColor"
strokeWidth={1.2}
strokeLinecap='round'
strokeLinejoin='round'
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
+12
View File
@@ -0,0 +1,12 @@
function StartSessionIcon() {
return (
<svg viewBox="0 0 7 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M5.938 3.595a.5.5 0 0 1 0 .81L1.293 7.758A.5.5 0 0 1 .5 7.353V.647a.5.5 0 0 1 .793-.405z"
fill="currentColor"
/>
</svg>
);
}
export default StartSessionIcon;