urkit-ui 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/README.md +322 -0
  2. package/dist/module.cjs +75 -0
  3. package/dist/module.d.cts +46 -0
  4. package/dist/module.d.mts +46 -0
  5. package/dist/module.d.ts +46 -0
  6. package/dist/module.json +12 -0
  7. package/dist/module.mjs +72 -0
  8. package/dist/runtime/assets/css/buttons.css +1 -0
  9. package/dist/runtime/assets/css/colors.css +1 -0
  10. package/dist/runtime/assets/css/form-fields.css +1 -0
  11. package/dist/runtime/assets/css/global.css +1 -0
  12. package/dist/runtime/components/Button.d.vue.ts +87 -0
  13. package/dist/runtime/components/Button.vue +147 -0
  14. package/dist/runtime/components/Button.vue.d.ts +87 -0
  15. package/dist/runtime/components/Icon.d.vue.ts +9 -0
  16. package/dist/runtime/components/Icon.vue +71 -0
  17. package/dist/runtime/components/Icon.vue.d.ts +9 -0
  18. package/dist/runtime/components/Input.d.vue.ts +129 -0
  19. package/dist/runtime/components/Input.vue +342 -0
  20. package/dist/runtime/components/Input.vue.d.ts +129 -0
  21. package/dist/runtime/composables/useIcon.d.ts +5 -0
  22. package/dist/runtime/composables/useIcon.js +71 -0
  23. package/dist/runtime/plugin.d.ts +2 -0
  24. package/dist/runtime/plugin.js +4 -0
  25. package/dist/runtime/public/assets/icons/arrow-down.svg +10 -0
  26. package/dist/runtime/public/assets/icons/collapse.svg +6 -0
  27. package/dist/runtime/public/assets/icons/color.svg +1 -0
  28. package/dist/runtime/public/assets/icons/copied.svg +3 -0
  29. package/dist/runtime/public/assets/icons/copy.svg +10 -0
  30. package/dist/runtime/public/assets/icons/figma.svg +1 -0
  31. package/dist/runtime/public/assets/icons/heart.svg +3 -0
  32. package/dist/runtime/public/assets/icons/hide.svg +8 -0
  33. package/dist/runtime/public/assets/icons/icons-icon.svg +10 -0
  34. package/dist/runtime/public/assets/icons/installation.svg +1 -0
  35. package/dist/runtime/public/assets/icons/introduction.svg +1 -0
  36. package/dist/runtime/public/assets/icons/loader-icon.svg +6 -0
  37. package/dist/runtime/public/assets/icons/profile.svg +1 -0
  38. package/dist/runtime/public/assets/icons/radiuss.svg +4 -0
  39. package/dist/runtime/public/assets/icons/search.svg +1 -0
  40. package/dist/runtime/public/assets/icons/show.svg +4 -0
  41. package/dist/runtime/public/assets/icons/star.svg +3 -0
  42. package/dist/runtime/public/assets/icons/toast-close.svg +3 -0
  43. package/dist/runtime/public/assets/icons/toast-error.svg +4 -0
  44. package/dist/runtime/public/assets/icons/toast-info.svg +5 -0
  45. package/dist/runtime/public/assets/icons/toast-success.svg +4 -0
  46. package/dist/runtime/public/assets/icons/toast-warning.svg +5 -0
  47. package/dist/runtime/public/assets/icons/typo.svg +1 -0
  48. package/dist/runtime/public/assets/logos/urkit-logo-blue.svg +53 -0
  49. package/dist/runtime/public/assets/logos/urkit-logo-cyan.svg +53 -0
  50. package/dist/runtime/public/assets/logos/urkit-logo-green.svg +53 -0
  51. package/dist/runtime/public/assets/logos/urkit-logo-purple.svg +53 -0
  52. package/dist/runtime/public/assets/logos/urkit-logo.svg +19 -0
  53. package/dist/runtime/server/tsconfig.json +3 -0
  54. package/dist/types.d.mts +3 -0
  55. package/package.json +70 -0
  56. package/src/runtime/public/assets/icons/arrow-down.svg +10 -0
  57. package/src/runtime/public/assets/icons/collapse.svg +6 -0
  58. package/src/runtime/public/assets/icons/color.svg +1 -0
  59. package/src/runtime/public/assets/icons/copied.svg +3 -0
  60. package/src/runtime/public/assets/icons/copy.svg +10 -0
  61. package/src/runtime/public/assets/icons/figma.svg +1 -0
  62. package/src/runtime/public/assets/icons/heart.svg +3 -0
  63. package/src/runtime/public/assets/icons/hide.svg +8 -0
  64. package/src/runtime/public/assets/icons/icons-icon.svg +10 -0
  65. package/src/runtime/public/assets/icons/installation.svg +1 -0
  66. package/src/runtime/public/assets/icons/introduction.svg +1 -0
  67. package/src/runtime/public/assets/icons/loader-icon.svg +6 -0
  68. package/src/runtime/public/assets/icons/profile.svg +1 -0
  69. package/src/runtime/public/assets/icons/radiuss.svg +4 -0
  70. package/src/runtime/public/assets/icons/search.svg +1 -0
  71. package/src/runtime/public/assets/icons/show.svg +4 -0
  72. package/src/runtime/public/assets/icons/star.svg +3 -0
  73. package/src/runtime/public/assets/icons/toast-close.svg +3 -0
  74. package/src/runtime/public/assets/icons/toast-error.svg +4 -0
  75. package/src/runtime/public/assets/icons/toast-info.svg +5 -0
  76. package/src/runtime/public/assets/icons/toast-success.svg +4 -0
  77. package/src/runtime/public/assets/icons/toast-warning.svg +5 -0
  78. package/src/runtime/public/assets/icons/typo.svg +1 -0
  79. package/src/runtime/public/assets/logos/urkit-logo-blue.svg +53 -0
  80. package/src/runtime/public/assets/logos/urkit-logo-cyan.svg +53 -0
  81. package/src/runtime/public/assets/logos/urkit-logo-green.svg +53 -0
  82. package/src/runtime/public/assets/logos/urkit-logo-purple.svg +53 -0
  83. package/src/runtime/public/assets/logos/urkit-logo.svg +19 -0
@@ -0,0 +1,53 @@
1
+ <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_i_588_430)">
3
+ <g clip-path="url(#clip0_588_430)">
4
+ <rect width="36" height="36" rx="8" fill="black"/>
5
+ <g filter="url(#filter1_i_588_430)">
6
+ <path d="M26.4167 10L22.25 12.0833V19.1667C22.25 21.1917 20.6084 22.8333 18.5833 22.8333H13V27H20.0833C23.5811 27 26.4167 24.1645 26.4167 20.6667V10Z" fill="white"/>
7
+ <path d="M16.5079 10.2666L13.1746 12.0721C13.067 12.1304 13 12.2429 13 12.3652V16.1369C13 16.6186 12.7402 17.0628 12.3203 17.299L9.16991 19.0711C9.06495 19.1301 9 19.2412 9 19.3616V22.8333H13.0834V17.8113C13.0834 17.3658 13.3371 16.9592 13.7372 16.7634L16.8132 15.2581C16.9275 15.2021 17 15.086 17 14.9587V10.5596C17 10.3071 16.73 10.1462 16.5079 10.2666Z" fill="white"/>
8
+ </g>
9
+ <g filter="url(#filter2_f_588_430)">
10
+ <path d="M14 4.8999L10.3175 -3.30018L0.744837 -5L-5 -0.8L-3.97048 8L1.62584 11L7.96018 9.6L14 8.6V4.8999Z" fill="#11B4FF"/>
11
+ </g>
12
+ <g filter="url(#filter3_f_588_430)">
13
+ <path d="M13 6.58819L14.0651 -3.32833L19.0875 -5L28.3392 -3.32833L29 4.35988L27.6783 5.6968L26.2327 10L20.5961 8.65704L13 6.58819Z" fill="#0004FF"/>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ <defs>
18
+ <filter id="filter0_i_588_430" x="0" y="0" width="36" height="36" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
19
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
20
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
21
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
22
+ <feMorphology radius="2" operator="erode" in="SourceAlpha" result="effect1_innerShadow_588_430"/>
23
+ <feOffset/>
24
+ <feGaussianBlur stdDeviation="1.5"/>
25
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
26
+ <feColorMatrix type="matrix" values="0 0 0 0 0.054387 0 0 0 0 0.054387 0 0 0 0 0.054387 0 0 0 0.7 0"/>
27
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_588_430"/>
28
+ </filter>
29
+ <filter id="filter1_i_588_430" x="9" y="9" width="17.4167" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
30
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
31
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
32
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
33
+ <feOffset dy="-1"/>
34
+ <feGaussianBlur stdDeviation="1"/>
35
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
36
+ <feColorMatrix type="matrix" values="0 0 0 0 0.604079 0 0 0 0 0.604079 0 0 0 0 0.604079 0 0 0 1 0"/>
37
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_588_430"/>
38
+ </filter>
39
+ <filter id="filter2_f_588_430" x="-17" y="-17" width="43" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
40
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
41
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
42
+ <feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_588_430"/>
43
+ </filter>
44
+ <filter id="filter3_f_588_430" x="1" y="-17" width="40" height="39" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
45
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
46
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
47
+ <feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_588_430"/>
48
+ </filter>
49
+ <clipPath id="clip0_588_430">
50
+ <rect width="36" height="36" rx="8" fill="white"/>
51
+ </clipPath>
52
+ </defs>
53
+ </svg>
@@ -0,0 +1,53 @@
1
+ <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_i_588_418)">
3
+ <g clip-path="url(#clip0_588_418)">
4
+ <rect width="36" height="36" rx="8" fill="black"/>
5
+ <g filter="url(#filter1_i_588_418)">
6
+ <path d="M26.4167 10L22.25 12.0833V19.1667C22.25 21.1917 20.6084 22.8333 18.5833 22.8333H13V27H20.0833C23.5811 27 26.4167 24.1645 26.4167 20.6667V10Z" fill="white"/>
7
+ <path d="M16.5079 10.2666L13.1746 12.0721C13.067 12.1304 13 12.2429 13 12.3652V16.1369C13 16.6186 12.7402 17.0628 12.3203 17.299L9.16991 19.0711C9.06495 19.1301 9 19.2412 9 19.3616V22.8333H13.0834V17.8113C13.0834 17.3658 13.3371 16.9592 13.7372 16.7634L16.8132 15.2581C16.9275 15.2021 17 15.086 17 14.9587V10.5596C17 10.3071 16.73 10.1462 16.5079 10.2666Z" fill="white"/>
8
+ </g>
9
+ <g filter="url(#filter2_f_588_418)">
10
+ <path d="M14 4.8999L10.3175 -3.30018L0.744837 -5L-5 -0.8L-3.97048 8L1.62584 11L7.96018 9.6L14 8.6V4.8999Z" fill="#11FFDB"/>
11
+ </g>
12
+ <g filter="url(#filter3_f_588_418)">
13
+ <path d="M13 6.58819L14.0651 -3.32833L19.0875 -5L28.3392 -3.32833L29 4.35988L27.6783 5.6968L26.2327 10L20.5961 8.65704L13 6.58819Z" fill="#00FFFB"/>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ <defs>
18
+ <filter id="filter0_i_588_418" x="0" y="0" width="36" height="36" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
19
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
20
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
21
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
22
+ <feMorphology radius="2" operator="erode" in="SourceAlpha" result="effect1_innerShadow_588_418"/>
23
+ <feOffset/>
24
+ <feGaussianBlur stdDeviation="1.5"/>
25
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
26
+ <feColorMatrix type="matrix" values="0 0 0 0 0.054387 0 0 0 0 0.054387 0 0 0 0 0.054387 0 0 0 0.7 0"/>
27
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_588_418"/>
28
+ </filter>
29
+ <filter id="filter1_i_588_418" x="9" y="9" width="17.4167" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
30
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
31
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
32
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
33
+ <feOffset dy="-1"/>
34
+ <feGaussianBlur stdDeviation="1"/>
35
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
36
+ <feColorMatrix type="matrix" values="0 0 0 0 0.604079 0 0 0 0 0.604079 0 0 0 0 0.604079 0 0 0 1 0"/>
37
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_588_418"/>
38
+ </filter>
39
+ <filter id="filter2_f_588_418" x="-17" y="-17" width="43" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
40
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
41
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
42
+ <feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_588_418"/>
43
+ </filter>
44
+ <filter id="filter3_f_588_418" x="1" y="-17" width="40" height="39" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
45
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
46
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
47
+ <feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_588_418"/>
48
+ </filter>
49
+ <clipPath id="clip0_588_418">
50
+ <rect width="36" height="36" rx="8" fill="white"/>
51
+ </clipPath>
52
+ </defs>
53
+ </svg>
@@ -0,0 +1,53 @@
1
+ <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_i_588_424)">
3
+ <g clip-path="url(#clip0_588_424)">
4
+ <rect width="36" height="36" rx="8" fill="black"/>
5
+ <g filter="url(#filter1_i_588_424)">
6
+ <path d="M26.4167 10L22.25 12.0833V19.1667C22.25 21.1917 20.6084 22.8333 18.5833 22.8333H13V27H20.0833C23.5811 27 26.4167 24.1645 26.4167 20.6667V10Z" fill="white"/>
7
+ <path d="M16.5079 10.2666L13.1746 12.0721C13.067 12.1304 13 12.2429 13 12.3652V16.1369C13 16.6186 12.7402 17.0628 12.3203 17.299L9.16991 19.0711C9.06495 19.1301 9 19.2412 9 19.3616V22.8333H13.0834V17.8113C13.0834 17.3658 13.3371 16.9592 13.7372 16.7634L16.8132 15.2581C16.9275 15.2021 17 15.086 17 14.9587V10.5596C17 10.3071 16.73 10.1462 16.5079 10.2666Z" fill="white"/>
8
+ </g>
9
+ <g filter="url(#filter2_f_588_424)">
10
+ <path d="M14 4.8999L10.3175 -3.30018L0.744837 -5L-5 -0.8L-3.97048 8L1.62584 11L7.96018 9.6L14 8.6V4.8999Z" fill="#B2FF11"/>
11
+ </g>
12
+ <g filter="url(#filter3_f_588_424)">
13
+ <path d="M13 6.58819L14.0651 -3.32833L19.0875 -5L28.3392 -3.32833L29 4.35988L27.6783 5.6968L26.2327 10L20.5961 8.65704L13 6.58819Z" fill="#00FF5C"/>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ <defs>
18
+ <filter id="filter0_i_588_424" x="0" y="0" width="36" height="36" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
19
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
20
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
21
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
22
+ <feMorphology radius="2" operator="erode" in="SourceAlpha" result="effect1_innerShadow_588_424"/>
23
+ <feOffset/>
24
+ <feGaussianBlur stdDeviation="1.5"/>
25
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
26
+ <feColorMatrix type="matrix" values="0 0 0 0 0.054387 0 0 0 0 0.054387 0 0 0 0 0.054387 0 0 0 0.7 0"/>
27
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_588_424"/>
28
+ </filter>
29
+ <filter id="filter1_i_588_424" x="9" y="9" width="17.4167" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
30
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
31
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
32
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
33
+ <feOffset dy="-1"/>
34
+ <feGaussianBlur stdDeviation="1"/>
35
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
36
+ <feColorMatrix type="matrix" values="0 0 0 0 0.604079 0 0 0 0 0.604079 0 0 0 0 0.604079 0 0 0 1 0"/>
37
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_588_424"/>
38
+ </filter>
39
+ <filter id="filter2_f_588_424" x="-17" y="-17" width="43" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
40
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
41
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
42
+ <feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_588_424"/>
43
+ </filter>
44
+ <filter id="filter3_f_588_424" x="1" y="-17" width="40" height="39" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
45
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
46
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
47
+ <feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_588_424"/>
48
+ </filter>
49
+ <clipPath id="clip0_588_424">
50
+ <rect width="36" height="36" rx="8" fill="white"/>
51
+ </clipPath>
52
+ </defs>
53
+ </svg>
@@ -0,0 +1,53 @@
1
+ <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_i_588_436)">
3
+ <g clip-path="url(#clip0_588_436)">
4
+ <rect width="36" height="36" rx="8" fill="black"/>
5
+ <g filter="url(#filter1_i_588_436)">
6
+ <path d="M26.4167 10L22.25 12.0833V19.1667C22.25 21.1917 20.6084 22.8333 18.5833 22.8333H13V27H20.0833C23.5811 27 26.4167 24.1645 26.4167 20.6667V10Z" fill="white"/>
7
+ <path d="M16.5079 10.2666L13.1746 12.0721C13.067 12.1304 13 12.2429 13 12.3652V16.1369C13 16.6186 12.7402 17.0628 12.3203 17.299L9.16991 19.0711C9.06495 19.1301 9 19.2412 9 19.3616V22.8333H13.0834V17.8113C13.0834 17.3658 13.3371 16.9592 13.7372 16.7634L16.8132 15.2581C16.9275 15.2021 17 15.086 17 14.9587V10.5596C17 10.3071 16.73 10.1462 16.5079 10.2666Z" fill="white"/>
8
+ </g>
9
+ <g filter="url(#filter2_f_588_436)">
10
+ <path d="M14 4.8999L10.3175 -3.30018L0.744837 -5L-5 -0.8L-3.97048 8L1.62584 11L7.96018 9.6L14 8.6V4.8999Z" fill="#8C11FF"/>
11
+ </g>
12
+ <g filter="url(#filter3_f_588_436)">
13
+ <path d="M13 6.58819L14.0651 -3.32833L19.0875 -5L28.3392 -3.32833L29 4.35988L27.6783 5.6968L26.2327 10L20.5961 8.65704L13 6.58819Z" fill="#FF00FB"/>
14
+ </g>
15
+ </g>
16
+ </g>
17
+ <defs>
18
+ <filter id="filter0_i_588_436" x="0" y="0" width="36" height="36" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
19
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
20
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
21
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
22
+ <feMorphology radius="2" operator="erode" in="SourceAlpha" result="effect1_innerShadow_588_436"/>
23
+ <feOffset/>
24
+ <feGaussianBlur stdDeviation="1.5"/>
25
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
26
+ <feColorMatrix type="matrix" values="0 0 0 0 0.054387 0 0 0 0 0.054387 0 0 0 0 0.054387 0 0 0 0.7 0"/>
27
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_588_436"/>
28
+ </filter>
29
+ <filter id="filter1_i_588_436" x="9" y="9" width="17.4167" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
30
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
31
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
32
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
33
+ <feOffset dy="-1"/>
34
+ <feGaussianBlur stdDeviation="1"/>
35
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
36
+ <feColorMatrix type="matrix" values="0 0 0 0 0.604079 0 0 0 0 0.604079 0 0 0 0 0.604079 0 0 0 1 0"/>
37
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_588_436"/>
38
+ </filter>
39
+ <filter id="filter2_f_588_436" x="-17" y="-17" width="43" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
40
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
41
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
42
+ <feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_588_436"/>
43
+ </filter>
44
+ <filter id="filter3_f_588_436" x="1" y="-17" width="40" height="39" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
45
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
46
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
47
+ <feGaussianBlur stdDeviation="6" result="effect1_foregroundBlur_588_436"/>
48
+ </filter>
49
+ <clipPath id="clip0_588_436">
50
+ <rect width="36" height="36" rx="8" fill="white"/>
51
+ </clipPath>
52
+ </defs>
53
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg width="36" height="36" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="36" height="36" rx="8" fill="black"/>
3
+ <g filter="url(#filter0_i_588_414)">
4
+ <path d="M26.4167 10L22.25 12.0833V19.1667C22.25 21.1917 20.6084 22.8333 18.5833 22.8333H13V27H20.0833C23.5811 27 26.4167 24.1645 26.4167 20.6667V10Z" fill="white"/>
5
+ <path d="M16.5079 10.2666L13.1746 12.0721C13.067 12.1304 13 12.2429 13 12.3652V16.1369C13 16.6186 12.7402 17.0628 12.3203 17.299L9.16991 19.0711C9.06495 19.1301 9 19.2412 9 19.3616V22.8333H13.0834V17.8113C13.0834 17.3658 13.3371 16.9592 13.7372 16.7634L16.8132 15.2581C16.9275 15.2021 17 15.086 17 14.9587V10.5596C17 10.3071 16.73 10.1462 16.5079 10.2666Z" fill="white"/>
6
+ </g>
7
+ <defs>
8
+ <filter id="filter0_i_588_414" x="9" y="9" width="17.4167" height="18" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
9
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
10
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
11
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
12
+ <feOffset dy="-1"/>
13
+ <feGaussianBlur stdDeviation="1"/>
14
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
15
+ <feColorMatrix type="matrix" values="0 0 0 0 0.604079 0 0 0 0 0.604079 0 0 0 0 0.604079 0 0 0 1 0"/>
16
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_588_414"/>
17
+ </filter>
18
+ </defs>
19
+ </svg>