lau-ecom-design-system 1.0.21 → 1.0.22
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.
- package/dist/lau-ecom-design-system.esm.js +317 -196
- package/dist/lau-ecom-design-system.min.js +1 -1
- package/dist/lau-ecom-design-system.ssr.js +267 -149
- package/dist/style.css +287 -2
- package/package.json +1 -1
- package/src/components/LauEcomIcon/LauEcomUpcIconSearch.vue +39 -0
- package/src/components/LauEcomInputSearch/LauEcomInputSearch.vue +113 -34
package/dist/style.css
CHANGED
@@ -1115,6 +1115,46 @@ video {
|
|
1115
1115
|
display: none;
|
1116
1116
|
}
|
1117
1117
|
|
1118
|
+
.dsEcom-container {
|
1119
|
+
width: 100%;
|
1120
|
+
}
|
1121
|
+
|
1122
|
+
@media (min-width: 320px) {
|
1123
|
+
.dsEcom-container {
|
1124
|
+
max-width: 320px;
|
1125
|
+
}
|
1126
|
+
}
|
1127
|
+
|
1128
|
+
@media (min-width: 640px) {
|
1129
|
+
.dsEcom-container {
|
1130
|
+
max-width: 640px;
|
1131
|
+
}
|
1132
|
+
}
|
1133
|
+
|
1134
|
+
@media (min-width: 768px) {
|
1135
|
+
.dsEcom-container {
|
1136
|
+
max-width: 768px;
|
1137
|
+
}
|
1138
|
+
}
|
1139
|
+
|
1140
|
+
@media (min-width: 1024px) {
|
1141
|
+
.dsEcom-container {
|
1142
|
+
max-width: 1024px;
|
1143
|
+
}
|
1144
|
+
}
|
1145
|
+
|
1146
|
+
@media (min-width: 1280px) {
|
1147
|
+
.dsEcom-container {
|
1148
|
+
max-width: 1280px;
|
1149
|
+
}
|
1150
|
+
}
|
1151
|
+
|
1152
|
+
@media (min-width: 1536px) {
|
1153
|
+
.dsEcom-container {
|
1154
|
+
max-width: 1536px;
|
1155
|
+
}
|
1156
|
+
}
|
1157
|
+
|
1118
1158
|
.dsEcom-pointer-events-none {
|
1119
1159
|
pointer-events: none;
|
1120
1160
|
}
|
@@ -1139,6 +1179,11 @@ video {
|
|
1139
1179
|
inset: 0px;
|
1140
1180
|
}
|
1141
1181
|
|
1182
|
+
.dsEcom-inset-y-0 {
|
1183
|
+
top: 0px;
|
1184
|
+
bottom: 0px;
|
1185
|
+
}
|
1186
|
+
|
1142
1187
|
.dsEcom-left-0 {
|
1143
1188
|
left: 0px;
|
1144
1189
|
}
|
@@ -1151,8 +1196,8 @@ video {
|
|
1151
1196
|
left: 2px;
|
1152
1197
|
}
|
1153
1198
|
|
1154
|
-
.dsEcom-right-
|
1155
|
-
right:
|
1199
|
+
.dsEcom-right-0 {
|
1200
|
+
right: 0px;
|
1156
1201
|
}
|
1157
1202
|
|
1158
1203
|
.dsEcom-right-4 {
|
@@ -1204,6 +1249,11 @@ video {
|
|
1204
1249
|
margin-right: 91px;
|
1205
1250
|
}
|
1206
1251
|
|
1252
|
+
.dsEcom-mx-auto {
|
1253
|
+
margin-left: auto;
|
1254
|
+
margin-right: auto;
|
1255
|
+
}
|
1256
|
+
|
1207
1257
|
.dsEcom-my-4 {
|
1208
1258
|
margin-top: 1rem;
|
1209
1259
|
margin-bottom: 1rem;
|
@@ -1213,6 +1263,10 @@ video {
|
|
1213
1263
|
margin-bottom: 2.5rem;
|
1214
1264
|
}
|
1215
1265
|
|
1266
|
+
.dsEcom-mb-2 {
|
1267
|
+
margin-bottom: 0.5rem;
|
1268
|
+
}
|
1269
|
+
|
1216
1270
|
.dsEcom-mb-4 {
|
1217
1271
|
margin-bottom: 1rem;
|
1218
1272
|
}
|
@@ -1225,10 +1279,18 @@ video {
|
|
1225
1279
|
margin-bottom: 1.5rem;
|
1226
1280
|
}
|
1227
1281
|
|
1282
|
+
.dsEcom-mb-8 {
|
1283
|
+
margin-bottom: 2rem;
|
1284
|
+
}
|
1285
|
+
|
1228
1286
|
.dsEcom-ml-1 {
|
1229
1287
|
margin-left: 0.25rem;
|
1230
1288
|
}
|
1231
1289
|
|
1290
|
+
.dsEcom-ml-8 {
|
1291
|
+
margin-left: 2rem;
|
1292
|
+
}
|
1293
|
+
|
1232
1294
|
.dsEcom-mr-2 {
|
1233
1295
|
margin-right: 0.5rem;
|
1234
1296
|
}
|
@@ -1274,6 +1336,10 @@ video {
|
|
1274
1336
|
height: 2.5rem;
|
1275
1337
|
}
|
1276
1338
|
|
1339
|
+
.dsEcom-h-16 {
|
1340
|
+
height: 4rem;
|
1341
|
+
}
|
1342
|
+
|
1277
1343
|
.dsEcom-h-4 {
|
1278
1344
|
height: 1rem;
|
1279
1345
|
}
|
@@ -1318,6 +1384,10 @@ video {
|
|
1318
1384
|
height: auto;
|
1319
1385
|
}
|
1320
1386
|
|
1387
|
+
.dsEcom-min-h-screen {
|
1388
|
+
min-height: 100vh;
|
1389
|
+
}
|
1390
|
+
|
1321
1391
|
.\!dsEcom-w-full {
|
1322
1392
|
width: 100% !important;
|
1323
1393
|
}
|
@@ -1350,6 +1420,10 @@ video {
|
|
1350
1420
|
width: 350px;
|
1351
1421
|
}
|
1352
1422
|
|
1423
|
+
.dsEcom-w-\[500px\] {
|
1424
|
+
width: 500px;
|
1425
|
+
}
|
1426
|
+
|
1353
1427
|
.dsEcom-w-\[584px\] {
|
1354
1428
|
width: 584px;
|
1355
1429
|
}
|
@@ -1374,6 +1448,14 @@ video {
|
|
1374
1448
|
width: 100%;
|
1375
1449
|
}
|
1376
1450
|
|
1451
|
+
.dsEcom-max-w-3xl {
|
1452
|
+
max-width: 48rem;
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
.dsEcom-max-w-xl {
|
1456
|
+
max-width: 36rem;
|
1457
|
+
}
|
1458
|
+
|
1377
1459
|
.dsEcom-shrink-0 {
|
1378
1460
|
flex-shrink: 0;
|
1379
1461
|
}
|
@@ -1431,6 +1513,10 @@ video {
|
|
1431
1513
|
appearance: none;
|
1432
1514
|
}
|
1433
1515
|
|
1516
|
+
.dsEcom-grid-cols-1 {
|
1517
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
1518
|
+
}
|
1519
|
+
|
1434
1520
|
.dsEcom-grid-cols-4 {
|
1435
1521
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
1436
1522
|
}
|
@@ -1443,6 +1529,10 @@ video {
|
|
1443
1529
|
align-items: center;
|
1444
1530
|
}
|
1445
1531
|
|
1532
|
+
.dsEcom-items-stretch {
|
1533
|
+
align-items: stretch;
|
1534
|
+
}
|
1535
|
+
|
1446
1536
|
.dsEcom-justify-center {
|
1447
1537
|
justify-content: center;
|
1448
1538
|
}
|
@@ -1483,6 +1573,28 @@ video {
|
|
1483
1573
|
gap: 2rem;
|
1484
1574
|
}
|
1485
1575
|
|
1576
|
+
.dsEcom-space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
1577
|
+
--tw-space-y-reverse: 0;
|
1578
|
+
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
1579
|
+
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
1580
|
+
}
|
1581
|
+
|
1582
|
+
.dsEcom-space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
1583
|
+
--tw-space-y-reverse: 0;
|
1584
|
+
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
1585
|
+
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
1586
|
+
}
|
1587
|
+
|
1588
|
+
.dsEcom-space-y-8 > :not([hidden]) ~ :not([hidden]) {
|
1589
|
+
--tw-space-y-reverse: 0;
|
1590
|
+
margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
|
1591
|
+
margin-bottom: calc(2rem * var(--tw-space-y-reverse));
|
1592
|
+
}
|
1593
|
+
|
1594
|
+
.dsEcom-overflow-hidden {
|
1595
|
+
overflow: hidden;
|
1596
|
+
}
|
1597
|
+
|
1486
1598
|
.dsEcom-rounded {
|
1487
1599
|
border-radius: 0.25rem;
|
1488
1600
|
}
|
@@ -1516,10 +1628,23 @@ video {
|
|
1516
1628
|
border-bottom-left-radius: 2px;
|
1517
1629
|
}
|
1518
1630
|
|
1631
|
+
.dsEcom-rounded-r-lg {
|
1632
|
+
border-top-right-radius: 0.5rem;
|
1633
|
+
border-bottom-right-radius: 0.5rem;
|
1634
|
+
}
|
1635
|
+
|
1519
1636
|
.dsEcom-border {
|
1520
1637
|
border-width: 1px;
|
1521
1638
|
}
|
1522
1639
|
|
1640
|
+
.dsEcom-border-0 {
|
1641
|
+
border-width: 0px;
|
1642
|
+
}
|
1643
|
+
|
1644
|
+
.dsEcom-border-2 {
|
1645
|
+
border-width: 2px;
|
1646
|
+
}
|
1647
|
+
|
1523
1648
|
.dsEcom-border-\[1px\] {
|
1524
1649
|
border-width: 1px;
|
1525
1650
|
}
|
@@ -1594,6 +1719,21 @@ video {
|
|
1594
1719
|
background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
|
1595
1720
|
}
|
1596
1721
|
|
1722
|
+
.dsEcom-bg-gray-100 {
|
1723
|
+
--tw-bg-opacity: 1;
|
1724
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
1725
|
+
}
|
1726
|
+
|
1727
|
+
.dsEcom-bg-gray-50 {
|
1728
|
+
--tw-bg-opacity: 1;
|
1729
|
+
background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
|
1730
|
+
}
|
1731
|
+
|
1732
|
+
.dsEcom-bg-green-600 {
|
1733
|
+
--tw-bg-opacity: 1;
|
1734
|
+
background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
|
1735
|
+
}
|
1736
|
+
|
1597
1737
|
.dsEcom-bg-neutral-10 {
|
1598
1738
|
background-color: var(--neutral-10);
|
1599
1739
|
}
|
@@ -1626,6 +1766,19 @@ video {
|
|
1626
1766
|
background-color: var(--primary-60);
|
1627
1767
|
}
|
1628
1768
|
|
1769
|
+
.dsEcom-bg-red-600 {
|
1770
|
+
--tw-bg-opacity: 1;
|
1771
|
+
background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
|
1772
|
+
}
|
1773
|
+
|
1774
|
+
.dsEcom-bg-secondary-60 {
|
1775
|
+
background-color: var(--secondary-60);
|
1776
|
+
}
|
1777
|
+
|
1778
|
+
.dsEcom-bg-tertiary-60 {
|
1779
|
+
background-color: var(--tertiary-60);
|
1780
|
+
}
|
1781
|
+
|
1629
1782
|
.dsEcom-bg-white {
|
1630
1783
|
--tw-bg-opacity: 1;
|
1631
1784
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
@@ -1635,6 +1788,20 @@ video {
|
|
1635
1788
|
--tw-bg-opacity: 0.7;
|
1636
1789
|
}
|
1637
1790
|
|
1791
|
+
.dsEcom-bg-gradient-to-r {
|
1792
|
+
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
1793
|
+
}
|
1794
|
+
|
1795
|
+
.dsEcom-from-purple-600 {
|
1796
|
+
--tw-gradient-from: #9333ea var(--tw-gradient-from-position);
|
1797
|
+
--tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
|
1798
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
1799
|
+
}
|
1800
|
+
|
1801
|
+
.dsEcom-to-pink-600 {
|
1802
|
+
--tw-gradient-to: #db2777 var(--tw-gradient-to-position);
|
1803
|
+
}
|
1804
|
+
|
1638
1805
|
.dsEcom-fill-feedback-critical-60 {
|
1639
1806
|
fill: var(--feedback-critical-60);
|
1640
1807
|
}
|
@@ -1687,10 +1854,23 @@ video {
|
|
1687
1854
|
padding: 1rem;
|
1688
1855
|
}
|
1689
1856
|
|
1857
|
+
.dsEcom-p-6 {
|
1858
|
+
padding: 1.5rem;
|
1859
|
+
}
|
1860
|
+
|
1861
|
+
.dsEcom-p-8 {
|
1862
|
+
padding: 2rem;
|
1863
|
+
}
|
1864
|
+
|
1690
1865
|
.dsEcom-p-\[10px\] {
|
1691
1866
|
padding: 10px;
|
1692
1867
|
}
|
1693
1868
|
|
1869
|
+
.dsEcom-px-1\.5 {
|
1870
|
+
padding-left: 0.375rem;
|
1871
|
+
padding-right: 0.375rem;
|
1872
|
+
}
|
1873
|
+
|
1694
1874
|
.dsEcom-px-2 {
|
1695
1875
|
padding-left: 0.5rem;
|
1696
1876
|
padding-right: 0.5rem;
|
@@ -1741,6 +1921,11 @@ video {
|
|
1741
1921
|
padding-bottom: 2.5rem;
|
1742
1922
|
}
|
1743
1923
|
|
1924
|
+
.dsEcom-py-16 {
|
1925
|
+
padding-top: 4rem;
|
1926
|
+
padding-bottom: 4rem;
|
1927
|
+
}
|
1928
|
+
|
1744
1929
|
.dsEcom-py-2 {
|
1745
1930
|
padding-top: 0.5rem;
|
1746
1931
|
padding-bottom: 0.5rem;
|
@@ -1792,10 +1977,18 @@ video {
|
|
1792
1977
|
padding-left: 0.75rem;
|
1793
1978
|
}
|
1794
1979
|
|
1980
|
+
.dsEcom-pl-4 {
|
1981
|
+
padding-left: 1rem;
|
1982
|
+
}
|
1983
|
+
|
1795
1984
|
.dsEcom-pl-\[51px\] {
|
1796
1985
|
padding-left: 51px;
|
1797
1986
|
}
|
1798
1987
|
|
1988
|
+
.dsEcom-pr-24 {
|
1989
|
+
padding-right: 6rem;
|
1990
|
+
}
|
1991
|
+
|
1799
1992
|
.dsEcom-pr-\[44px\] {
|
1800
1993
|
padding-right: 44px;
|
1801
1994
|
}
|
@@ -1820,10 +2013,25 @@ video {
|
|
1820
2013
|
font-family: core-font-family-public-sans;
|
1821
2014
|
}
|
1822
2015
|
|
2016
|
+
.dsEcom-text-2xl {
|
2017
|
+
font-size: 1.5rem;
|
2018
|
+
line-height: 2rem;
|
2019
|
+
}
|
2020
|
+
|
2021
|
+
.dsEcom-text-4xl {
|
2022
|
+
font-size: 2.25rem;
|
2023
|
+
line-height: 2.5rem;
|
2024
|
+
}
|
2025
|
+
|
1823
2026
|
.dsEcom-text-\[12px\] {
|
1824
2027
|
font-size: 12px;
|
1825
2028
|
}
|
1826
2029
|
|
2030
|
+
.dsEcom-text-lg {
|
2031
|
+
font-size: 1.125rem;
|
2032
|
+
line-height: 1.75rem;
|
2033
|
+
}
|
2034
|
+
|
1827
2035
|
.dsEcom-text-xl {
|
1828
2036
|
font-size: 1.25rem;
|
1829
2037
|
line-height: 1.75rem;
|
@@ -1837,6 +2045,10 @@ video {
|
|
1837
2045
|
font-weight: 800;
|
1838
2046
|
}
|
1839
2047
|
|
2048
|
+
.dsEcom-font-semibold {
|
2049
|
+
font-weight: 600;
|
2050
|
+
}
|
2051
|
+
|
1840
2052
|
.dsEcom-uppercase {
|
1841
2053
|
text-transform: uppercase;
|
1842
2054
|
}
|
@@ -1857,11 +2069,31 @@ video {
|
|
1857
2069
|
color: var(--primary-60) !important;
|
1858
2070
|
}
|
1859
2071
|
|
2072
|
+
.dsEcom-text-black {
|
2073
|
+
--tw-text-opacity: 1;
|
2074
|
+
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
|
2075
|
+
}
|
2076
|
+
|
1860
2077
|
.dsEcom-text-blue-600 {
|
1861
2078
|
--tw-text-opacity: 1;
|
1862
2079
|
color: rgb(37 99 235 / var(--tw-text-opacity, 1));
|
1863
2080
|
}
|
1864
2081
|
|
2082
|
+
.dsEcom-text-gray-600 {
|
2083
|
+
--tw-text-opacity: 1;
|
2084
|
+
color: rgb(75 85 99 / var(--tw-text-opacity, 1));
|
2085
|
+
}
|
2086
|
+
|
2087
|
+
.dsEcom-text-gray-800 {
|
2088
|
+
--tw-text-opacity: 1;
|
2089
|
+
color: rgb(31 41 55 / var(--tw-text-opacity, 1));
|
2090
|
+
}
|
2091
|
+
|
2092
|
+
.dsEcom-text-gray-900 {
|
2093
|
+
--tw-text-opacity: 1;
|
2094
|
+
color: rgb(17 24 39 / var(--tw-text-opacity, 1));
|
2095
|
+
}
|
2096
|
+
|
1865
2097
|
.dsEcom-text-link-60 {
|
1866
2098
|
color: var(--link-60);
|
1867
2099
|
}
|
@@ -1907,6 +2139,18 @@ video {
|
|
1907
2139
|
opacity: 0.5;
|
1908
2140
|
}
|
1909
2141
|
|
2142
|
+
.dsEcom-shadow-lg {
|
2143
|
+
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
2144
|
+
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
2145
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
2146
|
+
}
|
2147
|
+
|
2148
|
+
.dsEcom-shadow-sm {
|
2149
|
+
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
2150
|
+
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
2151
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
2152
|
+
}
|
2153
|
+
|
1910
2154
|
.dsEcom-shadow-upc-shadow-prominent {
|
1911
2155
|
--tw-shadow: 0px 8px 48px -6px rgba(89, 89, 89, 0.24);
|
1912
2156
|
--tw-shadow-colored: 0px 8px 48px -6px var(--tw-shadow-color);
|
@@ -2213,6 +2457,16 @@ video {
|
|
2213
2457
|
border-color: var(--stroke-secondary-60);
|
2214
2458
|
}
|
2215
2459
|
|
2460
|
+
.hover\:dsEcom-bg-gray-100:hover {
|
2461
|
+
--tw-bg-opacity: 1;
|
2462
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
2463
|
+
}
|
2464
|
+
|
2465
|
+
.hover\:dsEcom-bg-green-700:hover {
|
2466
|
+
--tw-bg-opacity: 1;
|
2467
|
+
background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
|
2468
|
+
}
|
2469
|
+
|
2216
2470
|
.hover\:dsEcom-bg-neutral-10:hover {
|
2217
2471
|
background-color: var(--neutral-10);
|
2218
2472
|
}
|
@@ -2229,6 +2483,25 @@ video {
|
|
2229
2483
|
background-color: var(--primary-70);
|
2230
2484
|
}
|
2231
2485
|
|
2486
|
+
.hover\:dsEcom-bg-red-700:hover {
|
2487
|
+
--tw-bg-opacity: 1;
|
2488
|
+
background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
|
2489
|
+
}
|
2490
|
+
|
2491
|
+
.hover\:dsEcom-bg-secondary-70:hover {
|
2492
|
+
background-color: var(--secondary-70);
|
2493
|
+
}
|
2494
|
+
|
2495
|
+
.hover\:dsEcom-from-purple-700:hover {
|
2496
|
+
--tw-gradient-from: #7e22ce var(--tw-gradient-from-position);
|
2497
|
+
--tw-gradient-to: rgb(126 34 206 / 0) var(--tw-gradient-to-position);
|
2498
|
+
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
|
2499
|
+
}
|
2500
|
+
|
2501
|
+
.hover\:dsEcom-to-pink-700:hover {
|
2502
|
+
--tw-gradient-to: #be185d var(--tw-gradient-to-position);
|
2503
|
+
}
|
2504
|
+
|
2232
2505
|
.hover\:dsEcom-fill-neutral-70:hover {
|
2233
2506
|
fill: var(--neutral-70);
|
2234
2507
|
}
|
@@ -2254,6 +2527,10 @@ video {
|
|
2254
2527
|
color: var(--neutral-80);
|
2255
2528
|
}
|
2256
2529
|
|
2530
|
+
.hover\:dsEcom-text-primary-60:hover {
|
2531
|
+
color: var(--primary-60);
|
2532
|
+
}
|
2533
|
+
|
2257
2534
|
.hover\:dsEcom-text-primary-70:hover {
|
2258
2535
|
color: var(--primary-70);
|
2259
2536
|
}
|
@@ -2316,9 +2593,17 @@ video {
|
|
2316
2593
|
}
|
2317
2594
|
|
2318
2595
|
@media (min-width: 768px) {
|
2596
|
+
.md\:dsEcom-flex {
|
2597
|
+
display: flex;
|
2598
|
+
}
|
2599
|
+
|
2319
2600
|
.md\:dsEcom-w-\[350px\] {
|
2320
2601
|
width: 350px;
|
2321
2602
|
}
|
2603
|
+
|
2604
|
+
.md\:dsEcom-grid-cols-3 {
|
2605
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
2606
|
+
}
|
2322
2607
|
}
|
2323
2608
|
|
2324
2609
|
@media (min-width: 320px) and (max-width: 1024px) {
|
package/package.json
CHANGED
@@ -0,0 +1,39 @@
|
|
1
|
+
<script lang="ts" setup>
|
2
|
+
withDefaults(
|
3
|
+
defineProps<{
|
4
|
+
color?: string;
|
5
|
+
width?: string;
|
6
|
+
height?: string;
|
7
|
+
}>(),
|
8
|
+
{
|
9
|
+
color: "currentColor",
|
10
|
+
width: "24",
|
11
|
+
height: "24",
|
12
|
+
},
|
13
|
+
);
|
14
|
+
</script>
|
15
|
+
|
16
|
+
<template>
|
17
|
+
<svg
|
18
|
+
:width="width"
|
19
|
+
:height="height"
|
20
|
+
viewBox="0 0 24 24"
|
21
|
+
fill="none"
|
22
|
+
xmlns="http://www.w3.org/2000/svg"
|
23
|
+
>
|
24
|
+
<path
|
25
|
+
d="M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z"
|
26
|
+
:stroke="color"
|
27
|
+
stroke-width="2"
|
28
|
+
stroke-linecap="round"
|
29
|
+
stroke-linejoin="round"
|
30
|
+
/>
|
31
|
+
<path
|
32
|
+
d="M21 21L16.65 16.65"
|
33
|
+
:stroke="color"
|
34
|
+
stroke-width="2"
|
35
|
+
stroke-linecap="round"
|
36
|
+
stroke-linejoin="round"
|
37
|
+
/>
|
38
|
+
</svg>
|
39
|
+
</template>
|