| 1 | "use client"; |
| 2 | |
| 3 | import { type LucideProps } from "lucide-react"; |
| 4 | |
| 5 | export function BorderAllIcon(props: LucideProps) { |
| 6 | return ( |
| 7 | <svg |
| 8 | fill="none" |
| 9 | height="15" |
| 10 | viewBox="0 0 15 15" |
| 11 | width="15" |
| 12 | xmlns="http://www.w3.org/2000/svg" |
| 13 | {...props} |
| 14 | > |
| 15 | <path |
| 16 | clipRule="evenodd" |
| 17 | d="M0.25 1C0.25 0.59 0.59 0.25 1 0.25H14C14.41 0.25 14.75 0.59 14.75 1V14C14.75 14.41 14.41 14.75 14 14.75H1C0.59 14.75 0.25 14.41 0.25 14V1ZM1.75 1.75V13.25H13.25V1.75H1.75Z" |
| 18 | fill="currentColor" |
| 19 | fillRule="evenodd" |
| 20 | ></path> |
| 21 | <rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="5"></rect> |
| 22 | <rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="3"></rect> |
| 23 | <rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="7"></rect> |
| 24 | <rect fill="currentColor" height="1" rx=".5" width="1" x="5" y="7"></rect> |
| 25 | <rect fill="currentColor" height="1" rx=".5" width="1" x="3" y="7"></rect> |
| 26 | <rect fill="currentColor" height="1" rx=".5" width="1" x="9" y="7"></rect> |
| 27 | <rect |
| 28 | fill="currentColor" |
| 29 | height="1" |
| 30 | rx=".5" |
| 31 | width="1" |
| 32 | x="11" |
| 33 | y="7" |
| 34 | ></rect> |
| 35 | <rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="9"></rect> |
| 36 | <rect |
| 37 | fill="currentColor" |
| 38 | height="1" |
| 39 | rx=".5" |
| 40 | width="1" |
| 41 | x="7" |
| 42 | y="11" |
| 43 | ></rect> |
| 44 | </svg> |
| 45 | ); |
| 46 | } |
| 47 | |
| 48 | export function BorderBottomIcon(props: LucideProps) { |
| 49 | return ( |
| 50 | <svg |
| 51 | fill="none" |
| 52 | height="15" |
| 53 | viewBox="0 0 15 15" |
| 54 | width="15" |
| 55 | xmlns="http://www.w3.org/2000/svg" |
| 56 | {...props} |
| 57 | > |
| 58 | <path |
| 59 | clipRule="evenodd" |
| 60 | d="M1 13.25L14 13.25V14.75L1 14.75V13.25Z" |
| 61 | fill="currentColor" |
| 62 | fillRule="evenodd" |
| 63 | ></path> |
| 64 | <rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="5"></rect> |
| 65 | <rect |
| 66 | fill="currentColor" |
| 67 | height="1" |
| 68 | rx=".5" |
| 69 | width="1" |
| 70 | x="13" |
| 71 | y="5" |
| 72 | ></rect> |
| 73 | <rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="3"></rect> |
| 74 | <rect |
| 75 | fill="currentColor" |
| 76 | height="1" |
| 77 | rx=".5" |
| 78 | width="1" |
| 79 | x="13" |
| 80 | y="3" |
| 81 | ></rect> |
| 82 | <rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="7"></rect> |
| 83 | <rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="1"></rect> |
| 84 | <rect |
| 85 | fill="currentColor" |
| 86 | height="1" |
| 87 | rx=".5" |
| 88 | width="1" |
| 89 | x="13" |
| 90 | y="7" |
| 91 | ></rect> |
| 92 | <rect |
| 93 | fill="currentColor" |
| 94 | height="1" |
| 95 | rx=".5" |
| 96 | width="1" |
| 97 | x="13" |
| 98 | y="1" |
| 99 | ></rect> |
| 100 | <rect fill="currentColor" height="1" rx=".5" width="1" x="5" y="7"></rect> |
| 101 | <rect fill="currentColor" height="1" rx=".5" width="1" x="5" y="1"></rect> |
| 102 | <rect fill="currentColor" height="1" rx=".5" width="1" x="3" y="7"></rect> |
| 103 | <rect fill="currentColor" height="1" rx=".5" width="1" x="3" y="1"></rect> |
| 104 | <rect fill="currentColor" height="1" rx=".5" width="1" x="9" y="7"></rect> |
| 105 | <rect fill="currentColor" height="1" rx=".5" width="1" x="9" y="1"></rect> |
| 106 | <rect |
| 107 | fill="currentColor" |
| 108 | height="1" |
| 109 | rx=".5" |
| 110 | width="1" |
| 111 | x="11" |
| 112 | y="7" |
| 113 | ></rect> |
| 114 | <rect |
| 115 | fill="currentColor" |
| 116 | height="1" |
| 117 | rx=".5" |
| 118 | width="1" |
| 119 | x="11" |
| 120 | y="1" |
| 121 | ></rect> |
| 122 | <rect fill="currentColor" height="1" rx=".5" width="1" x="7" y="9"></rect> |
| 123 | <rect |
| 124 | fill="currentColor" |
| 125 | height="1" |
| 126 | rx=".5" |
| 127 | width="1" |
| 128 | x="13" |
| 129 | y="9" |
| 130 | ></rect> |
| 131 | <rect |
| 132 | fill="currentColor" |
| 133 | height="1" |
| 134 | rx=".5" |
| 135 | width="1" |
| 136 | x="7" |
| 137 | y="11" |
| 138 | ></rect> |
| 139 | <rect |
| 140 | fill="currentColor" |
| 141 | height="1" |
| 142 | rx=".5" |
| 143 | width="1" |
| 144 | x="13" |
| 145 | y="11" |
| 146 | ></rect> |
| 147 | <rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="5"></rect> |
| 148 | <rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="3"></rect> |
| 149 | <rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="7"></rect> |
| 150 | <rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="1"></rect> |
| 151 | <rect fill="currentColor" height="1" rx=".5" width="1" x="1" y="9"></rect> |
| 152 | <rect |
| 153 | fill="currentColor" |
| 154 | height="1" |
| 155 | rx=".5" |
| 156 | width="1" |
| 157 | x="1" |
| 158 | y="11" |
| 159 | ></rect> |
| 160 | </svg> |
| 161 | ); |
| 162 | } |
| 163 | |
| 164 | export function BorderLeftIcon(props: LucideProps) { |
| 165 | return ( |
| 166 | <svg |
| 167 | fill="none" |
| 168 | height="15" |
| 169 | viewBox="0 0 15 15" |
| 170 | width="15" |
| 171 | xmlns="http://www.w3.org/2000/svg" |
| 172 | {...props} |
| 173 | > |
| 174 | <path |
| 175 | clipRule="evenodd" |
| 176 | d="M1.75 1L1.75 14L0.25 14L0.25 1L1.75 1Z" |
| 177 | fill="currentColor" |
| 178 | fillRule="evenodd" |
| 179 | ></path> |
| 180 | <rect |
| 181 | fill="currentColor" |
| 182 | height="1" |
| 183 | rx=".5" |
| 184 | transform="rotate(90 10 7)" |
| 185 | width="1" |
| 186 | x="10" |
| 187 | y="7" |
| 188 | ></rect> |
| 189 | <rect |
| 190 | fill="currentColor" |
| 191 | height="1" |
| 192 | rx=".5" |
| 193 | transform="rotate(90 10 13)" |
| 194 | width="1" |
| 195 | x="10" |
| 196 | y="13" |
| 197 | ></rect> |
| 198 | <rect |
| 199 | fill="currentColor" |
| 200 | height="1" |
| 201 | rx=".5" |
| 202 | transform="rotate(90 12 7)" |
| 203 | width="1" |
| 204 | x="12" |
| 205 | y="7" |
| 206 | ></rect> |
| 207 | <rect |
| 208 | fill="currentColor" |
| 209 | height="1" |
| 210 | rx=".5" |
| 211 | transform="rotate(90 12 13)" |
| 212 | width="1" |
| 213 | x="12" |
| 214 | y="13" |
| 215 | ></rect> |
| 216 | <rect |
| 217 | fill="currentColor" |
| 218 | height="1" |
| 219 | rx=".5" |
| 220 | transform="rotate(90 8 7)" |
| 221 | width="1" |
| 222 | x="8" |
| 223 | y="7" |
| 224 | ></rect> |
| 225 | <rect |
| 226 | fill="currentColor" |
| 227 | height="1" |
| 228 | rx=".5" |
| 229 | transform="rotate(90 14 7)" |
| 230 | width="1" |
| 231 | x="14" |
| 232 | y="7" |
| 233 | ></rect> |
| 234 | <rect |
| 235 | fill="currentColor" |
| 236 | height="1" |
| 237 | rx=".5" |
| 238 | transform="rotate(90 8 13)" |
| 239 | width="1" |
| 240 | x="8" |
| 241 | y="13" |
| 242 | ></rect> |
| 243 | <rect |
| 244 | fill="currentColor" |
| 245 | height="1" |
| 246 | rx=".5" |
| 247 | transform="rotate(90 14 13)" |
| 248 | width="1" |
| 249 | x="14" |
| 250 | y="13" |
| 251 | ></rect> |
| 252 | <rect |
| 253 | fill="currentColor" |
| 254 | height="1" |
| 255 | rx=".5" |
| 256 | transform="rotate(90 8 5)" |
| 257 | width="1" |
| 258 | x="8" |
| 259 | y="5" |
| 260 | ></rect> |
| 261 | <rect |
| 262 | fill="currentColor" |
| 263 | height="1" |
| 264 | rx=".5" |
| 265 | transform="rotate(90 14 5)" |
| 266 | width="1" |
| 267 | x="14" |
| 268 | y="5" |
| 269 | ></rect> |
| 270 | <rect |
| 271 | fill="currentColor" |
| 272 | height="1" |
| 273 | rx=".5" |
| 274 | transform="rotate(90 8 3)" |
| 275 | width="1" |
| 276 | x="8" |
| 277 | y="3" |
| 278 | ></rect> |
| 279 | <rect |
| 280 | fill="currentColor" |
| 281 | height="1" |
| 282 | rx=".5" |
| 283 | transform="rotate(90 14 3)" |
| 284 | width="1" |
| 285 | x="14" |
| 286 | y="3" |
| 287 | ></rect> |
| 288 | <rect |
| 289 | fill="currentColor" |
| 290 | height="1" |
| 291 | rx=".5" |
| 292 | transform="rotate(90 8 9)" |
| 293 | width="1" |
| 294 | x="8" |
| 295 | y="9" |
| 296 | ></rect> |
| 297 | <rect |
| 298 | fill="currentColor" |
| 299 | height="1" |
| 300 | rx=".5" |
| 301 | transform="rotate(90 14 9)" |
| 302 | width="1" |
| 303 | x="14" |
| 304 | y="9" |
| 305 | ></rect> |
| 306 | <rect |
| 307 | fill="currentColor" |
| 308 | height="1" |
| 309 | rx=".5" |
| 310 | transform="rotate(90 8 11)" |
| 311 | width="1" |
| 312 | x="8" |
| 313 | y="11" |
| 314 | ></rect> |
| 315 | <rect |
| 316 | fill="currentColor" |
| 317 | height="1" |
| 318 | rx=".5" |
| 319 | transform="rotate(90 14 11)" |
| 320 | width="1" |
| 321 | x="14" |
| 322 | y="11" |
| 323 | ></rect> |
| 324 | <rect |
| 325 | fill="currentColor" |
| 326 | height="1" |
| 327 | rx=".5" |
| 328 | transform="rotate(90 6 7)" |
| 329 | width="1" |
| 330 | x="6" |
| 331 | y="7" |
| 332 | ></rect> |
| 333 | <rect |
| 334 | fill="currentColor" |
| 335 | height="1" |
| 336 | rx=".5" |
| 337 | transform="rotate(90 6 13)" |
| 338 | width="1" |
| 339 | x="6" |
| 340 | y="13" |
| 341 | ></rect> |
| 342 | <rect |
| 343 | fill="currentColor" |
| 344 | height="1" |
| 345 | rx=".5" |
| 346 | transform="rotate(90 4 7)" |
| 347 | width="1" |
| 348 | x="4" |
| 349 | y="7" |
| 350 | ></rect> |
| 351 | <rect |
| 352 | fill="currentColor" |
| 353 | height="1" |
| 354 | rx=".5" |
| 355 | transform="rotate(90 4 13)" |
| 356 | width="1" |
| 357 | x="4" |
| 358 | y="13" |
| 359 | ></rect> |
| 360 | <rect |
| 361 | fill="currentColor" |
| 362 | height="1" |
| 363 | rx=".5" |
| 364 | transform="rotate(90 10 1)" |
| 365 | width="1" |
| 366 | x="10" |
| 367 | y="1" |
| 368 | ></rect> |
| 369 | <rect |
| 370 | fill="currentColor" |
| 371 | height="1" |
| 372 | rx=".5" |
| 373 | transform="rotate(90 12 1)" |
| 374 | width="1" |
| 375 | x="12" |
| 376 | y="1" |
| 377 | ></rect> |
| 378 | <rect |
| 379 | fill="currentColor" |
| 380 | height="1" |
| 381 | rx=".5" |
| 382 | transform="rotate(90 8 1)" |
| 383 | width="1" |
| 384 | x="8" |
| 385 | y="1" |
| 386 | ></rect> |
| 387 | <rect |
| 388 | fill="currentColor" |
| 389 | height="1" |
| 390 | rx=".5" |
| 391 | transform="rotate(90 14 1)" |
| 392 | width="1" |
| 393 | x="14" |
| 394 | y="1" |
| 395 | ></rect> |
| 396 | <rect |
| 397 | fill="currentColor" |
| 398 | height="1" |
| 399 | rx=".5" |
| 400 | transform="rotate(90 6 1)" |
| 401 | width="1" |
| 402 | x="6" |
| 403 | y="1" |
| 404 | ></rect> |
| 405 | <rect |
| 406 | fill="currentColor" |
| 407 | height="1" |
| 408 | rx=".5" |
| 409 | transform="rotate(90 4 1)" |
| 410 | width="1" |
| 411 | x="4" |
| 412 | y="1" |
| 413 | ></rect> |
| 414 | </svg> |
| 415 | ); |
| 416 | } |
| 417 | |
| 418 | export function BorderNoneIcon(props: LucideProps) { |
| 419 | return ( |
| 420 | <svg |
| 421 | fill="none" |
| 422 | height="15" |
| 423 | viewBox="0 0 15 15" |
| 424 | width="15" |
| 425 | xmlns="http://www.w3.org/2000/svg" |
| 426 | {...props} |
| 427 | > |
| 428 | <rect |
| 429 | fill="currentColor" |
| 430 | height="1" |
| 431 | rx=".5" |
| 432 | width="1" |
| 433 | x="7" |
| 434 | y="5.025" |
| 435 | ></rect> |
| 436 | <rect |
| 437 | fill="currentColor" |
| 438 | height="1" |
| 439 | rx=".5" |
| 440 | width="1" |
| 441 | x="13" |
| 442 | y="5.025" |
| 443 | ></rect> |
| 444 | <rect |
| 445 | fill="currentColor" |
| 446 | height="1" |
| 447 | rx=".5" |
| 448 | width="1" |
| 449 | x="7" |
| 450 | y="3.025" |
| 451 | ></rect> |
| 452 | <rect |
| 453 | fill="currentColor" |
| 454 | height="1" |
| 455 | rx=".5" |
| 456 | width="1" |
| 457 | x="13" |
| 458 | y="3.025" |
| 459 | ></rect> |
| 460 | <rect |
| 461 | fill="currentColor" |
| 462 | height="1" |
| 463 | rx=".5" |
| 464 | width="1" |
| 465 | x="7" |
| 466 | y="7.025" |
| 467 | ></rect> |
| 468 | <rect |
| 469 | fill="currentColor" |
| 470 | height="1" |
| 471 | rx=".5" |
| 472 | width="1" |
| 473 | x="7" |
| 474 | y="13.025" |
| 475 | ></rect> |
| 476 | <rect |
| 477 | fill="currentColor" |
| 478 | height="1" |
| 479 | rx=".5" |
| 480 | width="1" |
| 481 | x="7" |
| 482 | y="1.025" |
| 483 | ></rect> |
| 484 | <rect |
| 485 | fill="currentColor" |
| 486 | height="1" |
| 487 | rx=".5" |
| 488 | width="1" |
| 489 | x="13" |
| 490 | y="7.025" |
| 491 | ></rect> |
| 492 | <rect |
| 493 | fill="currentColor" |
| 494 | height="1" |
| 495 | rx=".5" |
| 496 | width="1" |
| 497 | x="13" |
| 498 | y="13.025" |
| 499 | ></rect> |
| 500 | <rect |
| 501 | fill="currentColor" |
| 502 | height="1" |
| 503 | rx=".5" |
| 504 | width="1" |
| 505 | x="13" |
| 506 | y="1.025" |
| 507 | ></rect> |
| 508 | <rect |
| 509 | fill="currentColor" |
| 510 | height="1" |
| 511 | rx=".5" |
| 512 | width="1" |
| 513 | x="5" |
| 514 | y="7.025" |
| 515 | ></rect> |
| 516 | <rect |
| 517 | fill="currentColor" |
| 518 | height="1" |
| 519 | rx=".5" |
| 520 | width="1" |
| 521 | x="5" |
| 522 | y="13.025" |
| 523 | ></rect> |
| 524 | <rect |
| 525 | fill="currentColor" |
| 526 | height="1" |
| 527 | rx=".5" |
| 528 | width="1" |
| 529 | x="5" |
| 530 | y="1.025" |
| 531 | ></rect> |
| 532 | <rect |
| 533 | fill="currentColor" |
| 534 | height="1" |
| 535 | rx=".5" |
| 536 | width="1" |
| 537 | x="3" |
| 538 | y="7.025" |
| 539 | ></rect> |
| 540 | <rect |
| 541 | fill="currentColor" |
| 542 | height="1" |
| 543 | rx=".5" |
| 544 | width="1" |
| 545 | x="3" |
| 546 | y="13.025" |
| 547 | ></rect> |
| 548 | <rect |
| 549 | fill="currentColor" |
| 550 | height="1" |
| 551 | rx=".5" |
| 552 | width="1" |
| 553 | x="3" |
| 554 | y="1.025" |
| 555 | ></rect> |
| 556 | <rect |
| 557 | fill="currentColor" |
| 558 | height="1" |
| 559 | rx=".5" |
| 560 | width="1" |
| 561 | x="9" |
| 562 | y="7.025" |
| 563 | ></rect> |
| 564 | <rect |
| 565 | fill="currentColor" |
| 566 | height="1" |
| 567 | rx=".5" |
| 568 | width="1" |
| 569 | x="9" |
| 570 | y="13.025" |
| 571 | ></rect> |
| 572 | <rect |
| 573 | fill="currentColor" |
| 574 | height="1" |
| 575 | rx=".5" |
| 576 | width="1" |
| 577 | x="9" |
| 578 | y="1.025" |
| 579 | ></rect> |
| 580 | <rect |
| 581 | fill="currentColor" |
| 582 | height="1" |
| 583 | rx=".5" |
| 584 | width="1" |
| 585 | x="11" |
| 586 | y="7.025" |
| 587 | ></rect> |
| 588 | <rect |
| 589 | fill="currentColor" |
| 590 | height="1" |
| 591 | rx=".5" |
| 592 | width="1" |
| 593 | x="11" |
| 594 | y="13.025" |
| 595 | ></rect> |
| 596 | <rect |
| 597 | fill="currentColor" |
| 598 | height="1" |
| 599 | rx=".5" |
| 600 | width="1" |
| 601 | x="11" |
| 602 | y="1.025" |
| 603 | ></rect> |
| 604 | <rect |
| 605 | fill="currentColor" |
| 606 | height="1" |
| 607 | rx=".5" |
| 608 | width="1" |
| 609 | x="7" |
| 610 | y="9.025" |
| 611 | ></rect> |
| 612 | <rect |
| 613 | fill="currentColor" |
| 614 | height="1" |
| 615 | rx=".5" |
| 616 | width="1" |
| 617 | x="13" |
| 618 | y="9.025" |
| 619 | ></rect> |
| 620 | <rect |
| 621 | fill="currentColor" |
| 622 | height="1" |
| 623 | rx=".5" |
| 624 | width="1" |
| 625 | x="7" |
| 626 | y="11.025" |
| 627 | ></rect> |
| 628 | <rect |
| 629 | fill="currentColor" |
| 630 | height="1" |
| 631 | rx=".5" |
| 632 | width="1" |
| 633 | x="13" |
| 634 | y="11.025" |
| 635 | ></rect> |
| 636 | <rect |
| 637 | fill="currentColor" |
| 638 | height="1" |
| 639 | rx=".5" |
| 640 | width="1" |
| 641 | x="1" |
| 642 | y="5.025" |
| 643 | ></rect> |
| 644 | <rect |
| 645 | fill="currentColor" |
| 646 | height="1" |
| 647 | rx=".5" |
| 648 | width="1" |
| 649 | x="1" |
| 650 | y="3.025" |
| 651 | ></rect> |
| 652 | <rect |
| 653 | fill="currentColor" |
| 654 | height="1" |
| 655 | rx=".5" |
| 656 | width="1" |
| 657 | x="1" |
| 658 | y="7.025" |
| 659 | ></rect> |
| 660 | <rect |
| 661 | fill="currentColor" |
| 662 | height="1" |
| 663 | rx=".5" |
| 664 | width="1" |
| 665 | x="1" |
| 666 | y="13.025" |
| 667 | ></rect> |
| 668 | <rect |
| 669 | fill="currentColor" |
| 670 | height="1" |
| 671 | rx=".5" |
| 672 | width="1" |
| 673 | x="1" |
| 674 | y="1.025" |
| 675 | ></rect> |
| 676 | <rect |
| 677 | fill="currentColor" |
| 678 | height="1" |
| 679 | rx=".5" |
| 680 | width="1" |
| 681 | x="1" |
| 682 | y="9.025" |
| 683 | ></rect> |
| 684 | <rect |
| 685 | fill="currentColor" |
| 686 | height="1" |
| 687 | rx=".5" |
| 688 | width="1" |
| 689 | x="1" |
| 690 | y="11.025" |
| 691 | ></rect> |
| 692 | </svg> |
| 693 | ); |
| 694 | } |
| 695 | |
| 696 | export function BorderRightIcon(props: LucideProps) { |
| 697 | return ( |
| 698 | <svg |
| 699 | fill="none" |
| 700 | height="15" |
| 701 | viewBox="0 0 15 15" |
| 702 | width="15" |
| 703 | xmlns="http://www.w3.org/2000/svg" |
| 704 | {...props} |
| 705 | > |
| 706 | <path |
| 707 | clipRule="evenodd" |
| 708 | d="M13.25 1L13.25 14L14.75 14L14.75 1L13.25 1Z" |
| 709 | fill="currentColor" |
| 710 | fillRule="evenodd" |
| 711 | ></path> |
| 712 | <rect |
| 713 | fill="currentColor" |
| 714 | height="1" |
| 715 | rx=".5" |
| 716 | transform="matrix(0 1 1 0 5 7)" |
| 717 | width="1" |
| 718 | ></rect> |
| 719 | <rect |
| 720 | fill="currentColor" |
| 721 | height="1" |
| 722 | rx=".5" |
| 723 | transform="matrix(0 1 1 0 5 13)" |
| 724 | width="1" |
| 725 | ></rect> |
| 726 | <rect |
| 727 | fill="currentColor" |
| 728 | height="1" |
| 729 | rx=".5" |
| 730 | transform="matrix(0 1 1 0 3 7)" |
| 731 | width="1" |
| 732 | ></rect> |
| 733 | <rect |
| 734 | fill="currentColor" |
| 735 | height="1" |
| 736 | rx=".5" |
| 737 | transform="matrix(0 1 1 0 3 13)" |
| 738 | width="1" |
| 739 | ></rect> |
| 740 | <rect |
| 741 | fill="currentColor" |
| 742 | height="1" |
| 743 | rx=".5" |
| 744 | transform="matrix(0 1 1 0 7 7)" |
| 745 | width="1" |
| 746 | ></rect> |
| 747 | <rect |
| 748 | fill="currentColor" |
| 749 | height="1" |
| 750 | rx=".5" |
| 751 | transform="matrix(0 1 1 0 1 7)" |
| 752 | width="1" |
| 753 | ></rect> |
| 754 | <rect |
| 755 | fill="currentColor" |
| 756 | height="1" |
| 757 | rx=".5" |
| 758 | transform="matrix(0 1 1 0 7 13)" |
| 759 | width="1" |
| 760 | ></rect> |
| 761 | <rect |
| 762 | fill="currentColor" |
| 763 | height="1" |
| 764 | rx=".5" |
| 765 | transform="matrix(0 1 1 0 1 13)" |
| 766 | width="1" |
| 767 | ></rect> |
| 768 | <rect |
| 769 | fill="currentColor" |
| 770 | height="1" |
| 771 | rx=".5" |
| 772 | transform="matrix(0 1 1 0 7 5)" |
| 773 | width="1" |
| 774 | ></rect> |
| 775 | <rect |
| 776 | fill="currentColor" |
| 777 | height="1" |
| 778 | rx=".5" |
| 779 | transform="matrix(0 1 1 0 1 5)" |
| 780 | width="1" |
| 781 | ></rect> |
| 782 | <rect |
| 783 | fill="currentColor" |
| 784 | height="1" |
| 785 | rx=".5" |
| 786 | transform="matrix(0 1 1 0 7 3)" |
| 787 | width="1" |
| 788 | ></rect> |
| 789 | <rect |
| 790 | fill="currentColor" |
| 791 | height="1" |
| 792 | rx=".5" |
| 793 | transform="matrix(0 1 1 0 1 3)" |
| 794 | width="1" |
| 795 | ></rect> |
| 796 | <rect |
| 797 | fill="currentColor" |
| 798 | height="1" |
| 799 | rx=".5" |
| 800 | transform="matrix(0 1 1 0 7 9)" |
| 801 | width="1" |
| 802 | ></rect> |
| 803 | <rect |
| 804 | fill="currentColor" |
| 805 | height="1" |
| 806 | rx=".5" |
| 807 | transform="matrix(0 1 1 0 1 9)" |
| 808 | width="1" |
| 809 | ></rect> |
| 810 | <rect |
| 811 | fill="currentColor" |
| 812 | height="1" |
| 813 | rx=".5" |
| 814 | transform="matrix(0 1 1 0 7 11)" |
| 815 | width="1" |
| 816 | ></rect> |
| 817 | <rect |
| 818 | fill="currentColor" |
| 819 | height="1" |
| 820 | rx=".5" |
| 821 | transform="matrix(0 1 1 0 1 11)" |
| 822 | width="1" |
| 823 | ></rect> |
| 824 | <rect |
| 825 | fill="currentColor" |
| 826 | height="1" |
| 827 | rx=".5" |
| 828 | transform="matrix(0 1 1 0 9 7)" |
| 829 | width="1" |
| 830 | ></rect> |
| 831 | <rect |
| 832 | fill="currentColor" |
| 833 | height="1" |
| 834 | rx=".5" |
| 835 | transform="matrix(0 1 1 0 9 13)" |
| 836 | width="1" |
| 837 | ></rect> |
| 838 | <rect |
| 839 | fill="currentColor" |
| 840 | height="1" |
| 841 | rx=".5" |
| 842 | transform="matrix(0 1 1 0 11 7)" |
| 843 | width="1" |
| 844 | ></rect> |
| 845 | <rect |
| 846 | fill="currentColor" |
| 847 | height="1" |
| 848 | rx=".5" |
| 849 | transform="matrix(0 1 1 0 11 13)" |
| 850 | width="1" |
| 851 | ></rect> |
| 852 | <rect |
| 853 | fill="currentColor" |
| 854 | height="1" |
| 855 | rx=".5" |
| 856 | transform="matrix(0 1 1 0 5 1)" |
| 857 | width="1" |
| 858 | ></rect> |
| 859 | <rect |
| 860 | fill="currentColor" |
| 861 | height="1" |
| 862 | rx=".5" |
| 863 | transform="matrix(0 1 1 0 3 1)" |
| 864 | width="1" |
| 865 | ></rect> |
| 866 | <rect |
| 867 | fill="currentColor" |
| 868 | height="1" |
| 869 | rx=".5" |
| 870 | transform="matrix(0 1 1 0 7 1)" |
| 871 | width="1" |
| 872 | ></rect> |
| 873 | <rect |
| 874 | fill="currentColor" |
| 875 | height="1" |
| 876 | rx=".5" |
| 877 | transform="matrix(0 1 1 0 1 1)" |
| 878 | width="1" |
| 879 | ></rect> |
| 880 | <rect |
| 881 | fill="currentColor" |
| 882 | height="1" |
| 883 | rx=".5" |
| 884 | transform="matrix(0 1 1 0 9 1)" |
| 885 | width="1" |
| 886 | ></rect> |
| 887 | <rect |
| 888 | fill="currentColor" |
| 889 | height="1" |
| 890 | rx=".5" |
| 891 | transform="matrix(0 1 1 0 11 1)" |
| 892 | width="1" |
| 893 | ></rect> |
| 894 | </svg> |
| 895 | ); |
| 896 | } |
| 897 | |
| 898 | export function BorderTopIcon(props: LucideProps) { |
| 899 | return ( |
| 900 | <svg |
| 901 | fill="none" |
| 902 | height="15" |
| 903 | viewBox="0 0 15 15" |
| 904 | width="15" |
| 905 | xmlns="http://www.w3.org/2000/svg" |
| 906 | {...props} |
| 907 | > |
| 908 | <path |
| 909 | clipRule="evenodd" |
| 910 | d="M14 1.75L1 1.75L1 0.25L14 0.25L14 1.75Z" |
| 911 | fill="currentColor" |
| 912 | fillRule="evenodd" |
| 913 | ></path> |
| 914 | <rect |
| 915 | fill="currentColor" |
| 916 | height="1" |
| 917 | rx=".5" |
| 918 | transform="rotate(-180 8 10)" |
| 919 | width="1" |
| 920 | x="8" |
| 921 | y="10" |
| 922 | ></rect> |
| 923 | <rect |
| 924 | fill="currentColor" |
| 925 | height="1" |
| 926 | rx=".5" |
| 927 | transform="rotate(-180 2 10)" |
| 928 | width="1" |
| 929 | x="2" |
| 930 | y="10" |
| 931 | ></rect> |
| 932 | <rect |
| 933 | fill="currentColor" |
| 934 | height="1" |
| 935 | rx=".5" |
| 936 | transform="rotate(-180 8 12)" |
| 937 | width="1" |
| 938 | x="8" |
| 939 | y="12" |
| 940 | ></rect> |
| 941 | <rect |
| 942 | fill="currentColor" |
| 943 | height="1" |
| 944 | rx=".5" |
| 945 | transform="rotate(-180 2 12)" |
| 946 | width="1" |
| 947 | x="2" |
| 948 | y="12" |
| 949 | ></rect> |
| 950 | <rect |
| 951 | fill="currentColor" |
| 952 | height="1" |
| 953 | rx=".5" |
| 954 | transform="rotate(-180 8 8)" |
| 955 | width="1" |
| 956 | x="8" |
| 957 | y="8" |
| 958 | ></rect> |
| 959 | <rect |
| 960 | fill="currentColor" |
| 961 | height="1" |
| 962 | rx=".5" |
| 963 | transform="rotate(-180 8 14)" |
| 964 | width="1" |
| 965 | x="8" |
| 966 | y="14" |
| 967 | ></rect> |
| 968 | <rect |
| 969 | fill="currentColor" |
| 970 | height="1" |
| 971 | rx=".5" |
| 972 | transform="rotate(-180 2 8)" |
| 973 | width="1" |
| 974 | x="2" |
| 975 | y="8" |
| 976 | ></rect> |
| 977 | <rect |
| 978 | fill="currentColor" |
| 979 | height="1" |
| 980 | rx=".5" |
| 981 | transform="rotate(-180 2 14)" |
| 982 | width="1" |
| 983 | x="2" |
| 984 | y="14" |
| 985 | ></rect> |
| 986 | <rect |
| 987 | fill="currentColor" |
| 988 | height="1" |
| 989 | rx=".5" |
| 990 | transform="rotate(-180 10 8)" |
| 991 | width="1" |
| 992 | x="10" |
| 993 | y="8" |
| 994 | ></rect> |
| 995 | <rect |
| 996 | fill="currentColor" |
| 997 | height="1" |
| 998 | rx=".5" |
| 999 | transform="rotate(-180 10 14)" |
| 1000 | width="1" |
| 1001 | x="10" |
| 1002 | y="14" |
| 1003 | ></rect> |
| 1004 | <rect |
| 1005 | fill="currentColor" |
| 1006 | height="1" |
| 1007 | rx=".5" |
| 1008 | transform="rotate(-180 12 8)" |
| 1009 | width="1" |
| 1010 | x="12" |
| 1011 | y="8" |
| 1012 | ></rect> |
| 1013 | <rect |
| 1014 | fill="currentColor" |
| 1015 | height="1" |
| 1016 | rx=".5" |
| 1017 | transform="rotate(-180 12 14)" |
| 1018 | width="1" |
| 1019 | x="12" |
| 1020 | y="14" |
| 1021 | ></rect> |
| 1022 | <rect |
| 1023 | fill="currentColor" |
| 1024 | height="1" |
| 1025 | rx=".5" |
| 1026 | transform="rotate(-180 6 8)" |
| 1027 | width="1" |
| 1028 | x="6" |
| 1029 | y="8" |
| 1030 | ></rect> |
| 1031 | <rect |
| 1032 | fill="currentColor" |
| 1033 | height="1" |
| 1034 | rx=".5" |
| 1035 | transform="rotate(-180 6 14)" |
| 1036 | width="1" |
| 1037 | x="6" |
| 1038 | y="14" |
| 1039 | ></rect> |
| 1040 | <rect |
| 1041 | fill="currentColor" |
| 1042 | height="1" |
| 1043 | rx=".5" |
| 1044 | transform="rotate(-180 4 8)" |
| 1045 | width="1" |
| 1046 | x="4" |
| 1047 | y="8" |
| 1048 | ></rect> |
| 1049 | <rect |
| 1050 | fill="currentColor" |
| 1051 | height="1" |
| 1052 | rx=".5" |
| 1053 | transform="rotate(-180 4 14)" |
| 1054 | width="1" |
| 1055 | x="4" |
| 1056 | y="14" |
| 1057 | ></rect> |
| 1058 | <rect |
| 1059 | fill="currentColor" |
| 1060 | height="1" |
| 1061 | rx=".5" |
| 1062 | transform="rotate(-180 8 6)" |
| 1063 | width="1" |
| 1064 | x="8" |
| 1065 | y="6" |
| 1066 | ></rect> |
| 1067 | <rect |
| 1068 | fill="currentColor" |
| 1069 | height="1" |
| 1070 | rx=".5" |
| 1071 | transform="rotate(-180 2 6)" |
| 1072 | width="1" |
| 1073 | x="2" |
| 1074 | y="6" |
| 1075 | ></rect> |
| 1076 | <rect |
| 1077 | fill="currentColor" |
| 1078 | height="1" |
| 1079 | rx=".5" |
| 1080 | transform="rotate(-180 8 4)" |
| 1081 | width="1" |
| 1082 | x="8" |
| 1083 | y="4" |
| 1084 | ></rect> |
| 1085 | <rect |
| 1086 | fill="currentColor" |
| 1087 | height="1" |
| 1088 | rx=".5" |
| 1089 | transform="rotate(-180 2 4)" |
| 1090 | width="1" |
| 1091 | x="2" |
| 1092 | y="4" |
| 1093 | ></rect> |
| 1094 | <rect |
| 1095 | fill="currentColor" |
| 1096 | height="1" |
| 1097 | rx=".5" |
| 1098 | transform="rotate(-180 14 10)" |
| 1099 | width="1" |
| 1100 | x="14" |
| 1101 | y="10" |
| 1102 | ></rect> |
| 1103 | <rect |
| 1104 | fill="currentColor" |
| 1105 | height="1" |
| 1106 | rx=".5" |
| 1107 | transform="rotate(-180 14 12)" |
| 1108 | width="1" |
| 1109 | x="14" |
| 1110 | y="12" |
| 1111 | ></rect> |
| 1112 | <rect |
| 1113 | fill="currentColor" |
| 1114 | height="1" |
| 1115 | rx=".5" |
| 1116 | transform="rotate(-180 14 8)" |
| 1117 | width="1" |
| 1118 | x="14" |
| 1119 | y="8" |
| 1120 | ></rect> |
| 1121 | <rect |
| 1122 | fill="currentColor" |
| 1123 | height="1" |
| 1124 | rx=".5" |
| 1125 | transform="rotate(-180 14 14)" |
| 1126 | width="1" |
| 1127 | x="14" |
| 1128 | y="14" |
| 1129 | ></rect> |
| 1130 | <rect |
| 1131 | fill="currentColor" |
| 1132 | height="1" |
| 1133 | rx=".5" |
| 1134 | transform="rotate(-180 14 6)" |
| 1135 | width="1" |
| 1136 | x="14" |
| 1137 | y="6" |
| 1138 | ></rect> |
| 1139 | <rect |
| 1140 | fill="currentColor" |
| 1141 | height="1" |
| 1142 | rx=".5" |
| 1143 | transform="rotate(-180 14 4)" |
| 1144 | width="1" |
| 1145 | x="14" |
| 1146 | y="4" |
| 1147 | ></rect> |
| 1148 | </svg> |
| 1149 | ); |
| 1150 | } |
| 1151 |