Skip to content

Commit

Permalink
feat: update anatomy icons (#948)
Browse files Browse the repository at this point in the history
Co-authored-by: Segun Adebayo <[email protected]>
  • Loading branch information
anubra266 and segunadebayo authored Oct 30, 2023
1 parent d3d7676 commit 2755db9
Show file tree
Hide file tree
Showing 32 changed files with 884 additions and 733 deletions.
5 changes: 5 additions & 0 deletions .changeset/rotten-bears-love.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@zag-js/anatomy-icons": patch
---

Update Anatomy parts
3 changes: 2 additions & 1 deletion packages/anatomy-icons/scripts/generate.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const dashName = toDashCase(name)

const defaultPalette = {
0: "white",
1: "#2CFF80",
1: "#2CFF80", //accentColor
2: "#2C7A51",
3: "#16402D",
4: "#1C4D37",
Expand All @@ -61,6 +61,7 @@ const defaultPalette = {
12: "#2AB36B",
13: "#9FFFCD",
14: "#0E432B",
15: "#D9D9D9",
}

function findColors(code) {
Expand Down
72 changes: 32 additions & 40 deletions packages/anatomy-icons/src/components/accordion.tsx

Large diffs are not rendered by default.

37 changes: 7 additions & 30 deletions packages/anatomy-icons/src/components/avatar.tsx

Large diffs are not rendered by default.

80 changes: 80 additions & 0 deletions packages/anatomy-icons/src/components/carousel.tsx

Large diffs are not rendered by default.

34 changes: 12 additions & 22 deletions packages/anatomy-icons/src/components/checkbox.tsx

Large diffs are not rendered by default.

116 changes: 116 additions & 0 deletions packages/anatomy-icons/src/components/color-picker.tsx

Large diffs are not rendered by default.

55 changes: 18 additions & 37 deletions packages/anatomy-icons/src/components/combobox.tsx

Large diffs are not rendered by default.

284 changes: 284 additions & 0 deletions packages/anatomy-icons/src/components/date-picker.tsx

Large diffs are not rendered by default.

41 changes: 20 additions & 21 deletions packages/anatomy-icons/src/components/dialog.tsx

Large diffs are not rendered by default.

42 changes: 13 additions & 29 deletions packages/anatomy-icons/src/components/editable.tsx

Large diffs are not rendered by default.

15 changes: 3 additions & 12 deletions packages/anatomy-icons/src/components/file-upload.tsx

Large diffs are not rendered by default.

19 changes: 6 additions & 13 deletions packages/anatomy-icons/src/components/hover-card.tsx

Large diffs are not rendered by default.

76 changes: 41 additions & 35 deletions packages/anatomy-icons/src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,55 +1,61 @@
import { AccordionAnatomy } from "./accordion"
import { AvatarAnatomy } from "./avatar"
import { CheckboxAnatomy } from "./checkbox"
import { ComboboxAnatomy } from "./combobox"
import { DialogAnatomy } from "./dialog"
import { EditableAnatomy } from "./editable"
import { FileUploadAnatomy } from "./file-upload"
import { HoverCardAnatomy } from "./hover-card"
import { MenuAnatomy } from "./menu"
import { NumberInputAnatomy } from "./number-input"
import { PaginationAnatomy } from "./pagination"
import { PinInputAnatomy } from "./pin-input"
import { DialogAnatomy } from "./dialog"
import { PopoverAnatomy } from "./popover"
import { RatingGroupAnatomy } from "./rating-group"
import { SegmentedControlAnatomy } from "./segmented-control"
import { SelectAnatomy } from "./select"
import { SliderAnatomy } from "./slider"
import { PinInputAnatomy } from "./pin-input"
import { NumberInputAnatomy } from "./number-input"
import { TagsInputAnatomy } from "./tags-input"
import { TooltipAnatomy } from "./tooltip"
import { SplitterAnatomy } from "./splitter"
import { SwitchAnatomy } from "./switch"
import { ComboboxAnatomy } from "./combobox"
import { TabsAnatomy } from "./tabs"
import { TagsInputAnatomy } from "./tags-input"
import { EditableAnatomy } from "./editable"
import { AccordionAnatomy } from "./accordion"
import { ToastAnatomy } from "./toast"
import { TooltipAnatomy } from "./tooltip"
import { ToggleGroupAnatomy } from "./toggle-group"
import { CheckboxAnatomy } from "./checkbox"
import { SelectAnatomy } from "./select"
import { HoverCardAnatomy } from "./hover-card"
import { PaginationAnatomy } from "./pagination"
import { RatingGroupAnatomy } from "./rating-group"
import { SwitchAnatomy } from "./switch"
import { SegmentedControlAnatomy } from "./segmented-control"
import { AvatarAnatomy } from "./avatar"
import { RadioGroupAnatomy } from "./radio-group"
import { FileUploadAnatomy } from "./file-upload"
import { ToggleGroupAnatomy } from "./toggle-group"
import { CarouselAnatomy } from "./carousel"
import { ColorPickerAnatomy } from "./color-picker"
import { DatePickerAnatomy } from "./date-picker"

export const allComponents = {
"radio-group": RadioGroupAnatomy,
"date-picker": DatePickerAnatomy,
"color-picker": ColorPickerAnatomy,
carousel: CarouselAnatomy,
"toggle-group": ToggleGroupAnatomy,
"file-upload": FileUploadAnatomy,
accordion: AccordionAnatomy,
"radio-group": RadioGroupAnatomy,
avatar: AvatarAnatomy,
"segmented-control": SegmentedControlAnatomy,
switch: SwitchAnatomy,
"rating-group": RatingGroupAnatomy,
pagination: PaginationAnatomy,
"hover-card": HoverCardAnatomy,
select: SelectAnatomy,
checkbox: CheckboxAnatomy,
combobox: ComboboxAnatomy,
dialog: DialogAnatomy,
toast: ToastAnatomy,
accordion: AccordionAnatomy,
editable: EditableAnatomy,
"hover-card": HoverCardAnatomy,
pagination: PaginationAnatomy,
tabs: TabsAnatomy,
combobox: ComboboxAnatomy,
splitter: SplitterAnatomy,
tooltip: TooltipAnatomy,
"tags-input": TagsInputAnatomy,
"number-input": NumberInputAnatomy,
"pin-input": PinInputAnatomy,
slider: SliderAnatomy,
popover: PopoverAnatomy,
dialog: DialogAnatomy,
menu: MenuAnatomy,
"number-input": NumberInputAnatomy,
"rating-group": RatingGroupAnatomy,
"segmented-control": SegmentedControlAnatomy,
slider: SliderAnatomy,
"tags-input": TagsInputAnatomy,
tooltip: TooltipAnatomy,
toast: ToastAnatomy,
splitter: SplitterAnatomy,
select: SelectAnatomy,
switch: SwitchAnatomy,
tabs: TabsAnatomy,
}

export type ComponentAnatomyName = keyof typeof allComponents
Expand Down
50 changes: 17 additions & 33 deletions packages/anatomy-icons/src/components/menu.tsx

Large diffs are not rendered by default.

69 changes: 25 additions & 44 deletions packages/anatomy-icons/src/components/number-input.tsx

Large diffs are not rendered by default.

62 changes: 23 additions & 39 deletions packages/anatomy-icons/src/components/pagination.tsx

Large diffs are not rendered by default.

32 changes: 11 additions & 21 deletions packages/anatomy-icons/src/components/pin-input.tsx

Large diffs are not rendered by default.

34 changes: 9 additions & 25 deletions packages/anatomy-icons/src/components/popover.tsx

Large diffs are not rendered by default.

40 changes: 12 additions & 28 deletions packages/anatomy-icons/src/components/radio-group.tsx

Large diffs are not rendered by default.

44 changes: 17 additions & 27 deletions packages/anatomy-icons/src/components/rating-group.tsx

Large diffs are not rendered by default.

22 changes: 6 additions & 16 deletions packages/anatomy-icons/src/components/segmented-control.tsx

Large diffs are not rendered by default.

37 changes: 12 additions & 25 deletions packages/anatomy-icons/src/components/select.tsx

Large diffs are not rendered by default.

73 changes: 18 additions & 55 deletions packages/anatomy-icons/src/components/slider.tsx

Large diffs are not rendered by default.

69 changes: 28 additions & 41 deletions packages/anatomy-icons/src/components/splitter.tsx

Large diffs are not rendered by default.

51 changes: 19 additions & 32 deletions packages/anatomy-icons/src/components/switch.tsx

Large diffs are not rendered by default.

45 changes: 14 additions & 31 deletions packages/anatomy-icons/src/components/tabs.tsx

Large diffs are not rendered by default.

49 changes: 15 additions & 34 deletions packages/anatomy-icons/src/components/tags-input.tsx

Large diffs are not rendered by default.

22 changes: 6 additions & 16 deletions packages/anatomy-icons/src/components/toast.tsx

Large diffs are not rendered by default.

12 changes: 3 additions & 9 deletions packages/anatomy-icons/src/components/toggle-group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,12 @@ export const ToggleGroupAnatomy = createComponent((props) => {
d="M727.204 160V144.166H730.133L730.51 150.27L730.206 149.429C730.273 148.791 730.399 148.144 730.583 147.486C730.776 146.829 731.047 146.225 731.395 145.674C731.752 145.123 732.207 144.683 732.758 144.355C733.318 144.016 734 143.847 734.802 143.847C734.995 143.847 735.189 143.857 735.382 143.876C735.575 143.895 735.754 143.929 735.919 143.977V147.631C735.59 147.525 735.237 147.457 734.86 147.428C734.493 147.39 734.154 147.37 733.845 147.37C733.468 147.37 733.062 147.448 732.627 147.602C732.192 147.747 731.791 147.97 731.424 148.269C731.056 148.569 730.79 148.941 730.626 149.386V160H727.204ZM744.44 160.218C742.98 160.218 741.709 159.903 740.626 159.275C739.544 158.647 738.703 157.723 738.103 156.505C737.504 155.278 737.204 153.775 737.204 151.996C737.204 150.314 737.518 148.864 738.147 147.646C738.785 146.428 739.655 145.495 740.757 144.847C741.859 144.19 743.106 143.861 744.498 143.861C746.006 143.861 747.296 144.19 748.369 144.847C749.452 145.495 750.283 146.428 750.863 147.646C751.443 148.864 751.733 150.314 751.733 151.996C751.733 153.775 751.409 155.278 750.762 156.505C750.124 157.723 749.254 158.647 748.152 159.275C747.05 159.903 745.812 160.218 744.44 160.218ZM744.498 157.303C745.609 157.303 746.518 156.887 747.224 156.056C747.929 155.225 748.282 153.871 748.282 151.996C748.282 150.256 747.939 148.951 747.253 148.081C746.566 147.211 745.629 146.776 744.44 146.776C743.328 146.776 742.419 147.206 741.714 148.066C741.018 148.927 740.67 150.237 740.67 151.996C740.67 153.784 741.023 155.118 741.728 155.998C742.444 156.868 743.367 157.303 744.498 157.303ZM761.234 160.218C759.774 160.218 758.503 159.903 757.42 159.275C756.338 158.647 755.497 157.723 754.897 156.505C754.298 155.278 753.998 153.775 753.998 151.996C753.998 150.314 754.312 148.864 754.941 147.646C755.579 146.428 756.449 145.495 757.551 144.847C758.653 144.19 759.9 143.861 761.292 143.861C762.8 143.861 764.09 144.19 765.163 144.847C766.246 145.495 767.077 146.428 767.657 147.646C768.237 148.864 768.527 150.314 768.527 151.996C768.527 153.775 768.203 155.278 767.556 156.505C766.918 157.723 766.048 158.647 764.946 159.275C763.844 159.903 762.606 160.218 761.234 160.218ZM761.292 157.303C762.403 157.303 763.312 156.887 764.018 156.056C764.723 155.225 765.076 153.871 765.076 151.996C765.076 150.256 764.733 148.951 764.047 148.081C763.36 147.211 762.423 146.776 761.234 146.776C760.122 146.776 759.213 147.206 758.508 148.066C757.812 148.927 757.464 150.237 757.464 151.996C757.464 153.784 757.817 155.118 758.522 155.998C759.238 156.868 760.161 157.303 761.292 157.303ZM776.453 160.232C775.196 160.232 774.215 159.913 773.509 159.275C772.813 158.627 772.465 157.704 772.465 156.505V148.501C772.465 148.182 772.533 147.897 772.668 147.646C772.803 147.385 773.002 147.221 773.263 147.153L772.465 144.804V144.383L773.234 139.642H775.844V155.65C775.844 156.211 775.964 156.602 776.206 156.824C776.457 157.047 776.921 157.158 777.598 157.158C778.033 157.158 778.434 157.158 778.802 157.158C779.169 157.148 779.502 157.139 779.802 157.129V160.044C779.299 160.131 778.748 160.184 778.149 160.203C777.55 160.222 776.984 160.232 776.453 160.232ZM770.392 147.153V144.166H779.831V147.153H770.392Z"
fill={palette[0]}
/>
<path d="M758 174L758 286" stroke={palette[1]} strokeWidth={4} />
<path
d="M758 297.547L769.547 286L758 274.453L746.453 286L758 297.547ZM756 174L756 286L760 286L760 174L756 174Z"
fill={palette[1]}
/>
<path
d="M405.018 652.232C403.761 652.232 402.78 651.913 402.075 651.275C401.379 650.627 401.031 649.704 401.031 648.505V640.501C401.031 640.182 401.098 639.897 401.234 639.646C401.369 639.385 401.567 639.221 401.828 639.153L401.031 636.804V636.383L401.799 631.642H404.409V647.65C404.409 648.211 404.53 648.602 404.772 648.824C405.023 649.047 405.487 649.158 406.164 649.158C406.599 649.158 407 649.158 407.367 649.158C407.734 649.148 408.068 649.139 408.368 649.129V652.044C407.865 652.131 407.314 652.184 406.715 652.203C406.115 652.222 405.55 652.232 405.018 652.232ZM398.957 639.153V636.18H408.397V639.153H398.957ZM417.44 652.218C415.98 652.218 414.709 651.903 413.626 651.275C412.544 650.647 411.703 649.723 411.103 648.505C410.504 647.278 410.204 645.775 410.204 643.996C410.204 642.314 410.518 640.864 411.147 639.646C411.785 638.428 412.655 637.495 413.757 636.847C414.859 636.19 416.106 635.861 417.498 635.861C419.006 635.861 420.296 636.19 421.369 636.847C422.452 637.495 423.283 638.428 423.863 639.646C424.443 640.864 424.733 642.314 424.733 643.996C424.733 645.775 424.409 647.278 423.762 648.505C423.124 649.723 422.254 650.647 421.152 651.275C420.05 651.903 418.812 652.218 417.44 652.218ZM417.498 649.303C418.609 649.303 419.518 648.887 420.224 648.056C420.929 647.225 421.282 645.871 421.282 643.996C421.282 642.256 420.939 640.951 420.253 640.081C419.566 639.211 418.629 638.776 417.44 638.776C416.328 638.776 415.419 639.206 414.714 640.066C414.018 640.927 413.67 642.237 413.67 643.996C413.67 645.784 414.023 647.118 414.728 647.998C415.444 648.868 416.367 649.303 417.498 649.303ZM434.506 658.467C433.221 658.467 432.061 658.254 431.026 657.829C430.002 657.413 429.209 656.775 428.648 655.915C428.088 655.055 427.87 653.977 427.996 652.682H431.302C431.292 653.233 431.36 653.726 431.505 654.161C431.65 654.605 431.954 654.958 432.418 655.219C432.882 655.48 433.588 655.611 434.535 655.611C435.357 655.611 435.985 655.495 436.42 655.263C436.865 655.031 437.165 654.678 437.319 654.204C437.474 653.73 437.551 653.117 437.551 652.363V648.07C437.464 648.525 437.276 649.003 436.986 649.506C436.696 650.009 436.246 650.434 435.637 650.782C435.028 651.12 434.207 651.289 433.172 651.289C432.235 651.289 431.399 651.082 430.664 650.666C429.929 650.25 429.306 649.69 428.793 648.984C428.281 648.278 427.89 647.486 427.619 646.606C427.358 645.717 427.227 644.798 427.227 643.851C427.227 642.092 427.517 640.622 428.097 639.443C428.687 638.264 429.446 637.374 430.374 636.775C431.302 636.176 432.283 635.876 433.317 635.876C434.236 635.876 434.975 636.002 435.536 636.253C436.106 636.504 436.551 636.809 436.87 637.166C437.189 637.524 437.421 637.877 437.566 638.225L437.58 636.18H440.93V652.334C440.93 653.764 440.65 654.929 440.089 655.828C439.538 656.727 438.779 657.384 437.812 657.8C436.846 658.225 435.744 658.448 434.506 658.467ZM434.347 648.549C435.072 648.549 435.657 648.452 436.101 648.259C436.546 648.056 436.884 647.819 437.116 647.548C437.348 647.268 437.493 647.026 437.551 646.823V640.197C437.455 639.965 437.276 639.738 437.015 639.515C436.754 639.293 436.411 639.109 435.985 638.964C435.56 638.819 435.038 638.747 434.419 638.747C433.346 638.747 432.467 639.143 431.78 639.936C431.094 640.729 430.751 641.971 430.751 643.662C430.751 645.199 431.089 646.398 431.766 647.258C432.452 648.119 433.313 648.549 434.347 648.549ZM451.499 658.467C450.213 658.467 449.053 658.254 448.019 657.829C446.994 657.413 446.201 656.775 445.641 655.915C445.08 655.055 444.862 653.977 444.988 652.682H448.294C448.284 653.233 448.352 653.726 448.497 654.161C448.642 654.605 448.947 654.958 449.411 655.219C449.875 655.48 450.58 655.611 451.528 655.611C452.349 655.611 452.978 655.495 453.413 655.263C453.857 655.031 454.157 654.678 454.312 654.204C454.466 653.73 454.544 653.117 454.544 652.363V648.07C454.457 648.525 454.268 649.003 453.978 649.506C453.688 650.009 453.239 650.434 452.63 650.782C452.021 651.12 451.199 651.289 450.165 651.289C449.227 651.289 448.391 651.082 447.656 650.666C446.921 650.25 446.298 649.69 445.786 648.984C445.273 648.278 444.882 647.486 444.611 646.606C444.35 645.717 444.22 644.798 444.22 643.851C444.22 642.092 444.51 640.622 445.09 639.443C445.679 638.264 446.438 637.374 447.366 636.775C448.294 636.176 449.275 635.876 450.31 635.876C451.228 635.876 451.967 636.002 452.528 636.253C453.098 636.504 453.543 636.809 453.862 637.166C454.181 637.524 454.413 637.877 454.558 638.225L454.573 636.18H457.922V652.334C457.922 653.764 457.642 654.929 457.081 655.828C456.53 656.727 455.771 657.384 454.805 657.8C453.838 658.225 452.736 658.448 451.499 658.467ZM451.339 648.549C452.064 648.549 452.649 648.452 453.094 648.259C453.538 648.056 453.877 647.819 454.109 647.548C454.341 647.268 454.486 647.026 454.544 646.823V640.197C454.447 639.965 454.268 639.738 454.007 639.515C453.746 639.293 453.403 639.109 452.978 638.964C452.552 638.819 452.03 638.747 451.412 638.747C450.339 638.747 449.459 639.143 448.773 639.936C448.086 640.729 447.743 641.971 447.743 643.662C447.743 645.199 448.081 646.398 448.758 647.258C449.444 648.119 450.305 648.549 451.339 648.549ZM462.198 652V629.438H465.62V652H462.198ZM476.334 652.218C474.807 652.218 473.483 651.908 472.361 651.289C471.25 650.661 470.394 649.738 469.795 648.52C469.195 647.302 468.896 645.808 468.896 644.039C468.896 642.319 469.21 640.849 469.838 639.631C470.476 638.404 471.351 637.471 472.463 636.833C473.574 636.185 474.85 635.861 476.291 635.861C477.712 635.861 478.925 636.142 479.93 636.702C480.945 637.263 481.719 638.094 482.25 639.196C482.782 640.289 483.048 641.632 483.048 643.227C483.048 643.537 483.038 643.793 483.019 643.996C483.009 644.199 482.995 644.441 482.975 644.721H472.303C472.39 646.335 472.787 647.524 473.492 648.288C474.198 649.042 475.063 649.419 476.088 649.419C477.045 649.419 477.775 649.216 478.277 648.81C478.79 648.394 479.118 647.93 479.263 647.418H482.569C482.482 648.433 482.163 649.303 481.612 650.028C481.061 650.743 480.331 651.289 479.423 651.666C478.524 652.034 477.494 652.218 476.334 652.218ZM473.869 642.386H479.64C479.611 641.226 479.331 640.332 478.799 639.704C478.268 639.066 477.393 638.747 476.175 638.747C474.908 638.747 473.966 639.172 473.347 640.023C472.729 640.864 472.381 642.029 472.303 643.517C472.381 643.082 472.545 642.788 472.796 642.633C473.048 642.469 473.405 642.386 473.869 642.386Z"
d="M425.429 652V636.18H428.895L428.851 652H425.429ZM427.184 633.831C426.555 633.831 426.024 633.614 425.589 633.179C425.154 632.734 424.936 632.169 424.936 631.482C424.936 630.806 425.154 630.255 425.589 629.829C426.024 629.404 426.555 629.191 427.184 629.191C427.793 629.191 428.315 629.404 428.75 629.829C429.194 630.255 429.417 630.806 429.417 631.482C429.417 632.169 429.194 632.734 428.75 633.179C428.315 633.614 427.793 633.831 427.184 633.831ZM437.719 652.232C436.463 652.232 435.481 651.913 434.776 651.275C434.08 650.627 433.732 649.704 433.732 648.505V640.501C433.732 640.182 433.799 639.897 433.935 639.646C434.07 639.385 434.268 639.221 434.529 639.153L433.732 636.804V636.383L434.5 631.642H437.11V647.65C437.11 648.211 437.231 648.602 437.473 648.824C437.724 649.047 438.188 649.158 438.865 649.158C439.3 649.158 439.701 649.158 440.068 649.158C440.436 649.148 440.769 649.139 441.069 649.129V652.044C440.566 652.131 440.015 652.184 439.416 652.203C438.816 652.222 438.251 652.232 437.719 652.232ZM431.658 639.153V636.18H441.098V639.153H431.658ZM450.356 652.218C448.828 652.218 447.504 651.908 446.383 651.289C445.271 650.661 444.416 649.738 443.816 648.52C443.217 647.302 442.917 645.808 442.917 644.039C442.917 642.319 443.231 640.849 443.86 639.631C444.498 638.404 445.373 637.471 446.484 636.833C447.596 636.185 448.872 635.861 450.312 635.861C451.733 635.861 452.946 636.142 453.952 636.702C454.967 637.263 455.74 638.094 456.272 639.196C456.803 640.289 457.069 641.632 457.069 643.227C457.069 643.537 457.06 643.793 457.04 643.996C457.031 644.199 457.016 644.441 456.997 644.721H446.325C446.412 646.335 446.808 647.524 447.514 648.288C448.219 649.042 449.085 649.419 450.109 649.419C451.066 649.419 451.796 649.216 452.299 648.81C452.811 648.394 453.14 647.93 453.285 647.418H456.591C456.504 648.433 456.185 649.303 455.634 650.028C455.083 650.743 454.353 651.289 453.444 651.666C452.545 652.034 451.516 652.218 450.356 652.218ZM447.891 642.386H453.662C453.633 641.226 453.352 640.332 452.821 639.704C452.289 639.066 451.414 638.747 450.196 638.747C448.93 638.747 447.987 639.172 447.369 640.023C446.75 640.864 446.402 642.029 446.325 643.517C446.402 643.082 446.566 642.788 446.818 642.633C447.069 642.469 447.427 642.386 447.891 642.386ZM460.149 652V636.18H463.093L463.47 642.14L463.223 640.936C463.339 640.066 463.566 639.245 463.905 638.471C464.243 637.688 464.755 637.055 465.442 636.572C466.128 636.089 467.042 635.847 468.182 635.847C469.449 635.847 470.468 636.209 471.242 636.934C472.025 637.65 472.508 638.752 472.692 640.24L472.764 640.472V652H469.328V642.705C469.328 641.797 469.241 641.067 469.067 640.516C468.893 639.965 468.617 639.569 468.24 639.327C467.873 639.076 467.385 638.95 466.776 638.95C466.06 638.95 465.413 639.163 464.833 639.588C464.253 640.004 463.837 640.477 463.586 641.009V652H460.149ZM478.506 652V642.705C478.506 641.797 478.419 641.067 478.245 640.516C478.071 639.965 477.796 639.569 477.419 639.327C477.051 639.076 476.563 638.95 475.954 638.95C475.239 638.95 474.591 639.163 474.011 639.588C473.431 640.004 473.016 640.477 472.764 641.009L472.735 642.14L472.503 641.197C472.6 640.337 472.808 639.501 473.127 638.689C473.455 637.867 473.958 637.191 474.635 636.659C475.311 636.118 476.22 635.847 477.361 635.847C478.791 635.847 479.913 636.316 480.725 637.253C481.537 638.181 481.943 639.602 481.943 641.516V652H478.506Z"
fill={palette[0]}
/>
<path
d="M565 477.453L576.547 489L565 500.547L553.453 489L565 477.453ZM565 642L567 642L567 644L565 644L565 642ZM567 489L567 642L563 642L563 489L567 489ZM565 644L506 644L506 640L565 640L565 644Z"
fill={palette[1]}
/>
<path d="M565 489L565 642L506 642" stroke={palette[1]} strokeWidth={4} />
</svg>
)
})
Loading

4 comments on commit 2755db9

@vercel
Copy link

@vercel vercel bot commented on 2755db9 Oct 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 2755db9 Oct 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

zag-vue – ./examples/vue-ts

zag-vue.vercel.app
zag-vue-git-main-chakra-ui.vercel.app
zag-vue-chakra-ui.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 2755db9 Oct 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

zag-solid – ./examples/solid-ts

zag-solid.vercel.app
zag-solid-git-main-chakra-ui.vercel.app
zag-solid-chakra-ui.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 2755db9 Oct 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

zag-nextjs – ./examples/next-ts

zag-nextjs-git-main-chakra-ui.vercel.app
zag-nextjs-chakra-ui.vercel.app
zag-two.vercel.app

Please sign in to comment.