@grupor5/raya 0.1.0
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/README.md +266 -0
- package/dist/index.d.mts +2351 -0
- package/dist/index.d.ts +2351 -0
- package/dist/index.js +3215 -0
- package/dist/index.mjs +3102 -0
- package/dist/tailwind.css +2 -0
- package/package.json +70 -0
- package/src/atoms/Icon/Icon.tsx +155 -0
- package/src/atoms/Icon/index.ts +3 -0
- package/src/atoms/badge/badge.tsx +112 -0
- package/src/atoms/badge/index.ts +1 -0
- package/src/atoms/button/button.tsx +218 -0
- package/src/atoms/button/index.ts +2 -0
- package/src/atoms/checkbox/checkbox.tsx +43 -0
- package/src/atoms/checkbox/index.ts +1 -0
- package/src/atoms/index.ts +10 -0
- package/src/atoms/input/index.ts +1 -0
- package/src/atoms/input/input.tsx +67 -0
- package/src/atoms/label/index.ts +1 -0
- package/src/atoms/label/label.tsx +24 -0
- package/src/atoms/radio/index.ts +1 -0
- package/src/atoms/radio/radio.tsx +45 -0
- package/src/atoms/switch/index.ts +1 -0
- package/src/atoms/switch/switch.tsx +37 -0
- package/src/atoms/tag/index.ts +1 -0
- package/src/atoms/tag/tag.tsx +97 -0
- package/src/atoms/textarea/index.ts +1 -0
- package/src/atoms/textarea/textarea.tsx +98 -0
- package/src/hooks/index.ts +1 -0
- package/src/hooks/use-toast.ts +191 -0
- package/src/hooks/useModal.ts +8 -0
- package/src/icons/archive/archive-add.svg +1 -0
- package/src/icons/archive/archive-minus.svg +1 -0
- package/src/icons/archive/archive-slash.svg +1 -0
- package/src/icons/archive/archive-tick.svg +1 -0
- package/src/icons/archive/archive.svg +1 -0
- package/src/icons/archive/book-saved.svg +1 -0
- package/src/icons/archive/book-square.svg +1 -0
- package/src/icons/archive/receipt-square.svg +1 -0
- package/src/icons/archive/save-2.svg +1 -0
- package/src/icons/archive/save-add.svg +1 -0
- package/src/icons/archive/save-minus.svg +1 -0
- package/src/icons/archive/save-remove.svg +1 -0
- package/src/icons/arrow/arrange-circle-2.svg +1 -0
- package/src/icons/arrow/arrange-circle.svg +1 -0
- package/src/icons/arrow/arrange-square-2.svg +1 -0
- package/src/icons/arrow/arrange-square.svg +1 -0
- package/src/icons/arrow/arrow-2.svg +1 -0
- package/src/icons/arrow/arrow-3.svg +1 -0
- package/src/icons/arrow/arrow-bottom.svg +1 -0
- package/src/icons/arrow/arrow-circle-down.svg +1 -0
- package/src/icons/arrow/arrow-circle-left.svg +1 -0
- package/src/icons/arrow/arrow-circle-right.svg +1 -0
- package/src/icons/arrow/arrow-circle-up.svg +1 -0
- package/src/icons/arrow/arrow-down-1.svg +1 -0
- package/src/icons/arrow/arrow-down.svg +1 -0
- package/src/icons/arrow/arrow-left-1.svg +1 -0
- package/src/icons/arrow/arrow-left-2.svg +1 -0
- package/src/icons/arrow/arrow-left.svg +1 -0
- package/src/icons/arrow/arrow-right-1.svg +1 -0
- package/src/icons/arrow/arrow-right-2.svg +1 -0
- package/src/icons/arrow/arrow-right-3.svg +1 -0
- package/src/icons/arrow/arrow-right.svg +1 -0
- package/src/icons/arrow/arrow-square-down.svg +1 -0
- package/src/icons/arrow/arrow-square-left.svg +1 -0
- package/src/icons/arrow/arrow-square-up.svg +1 -0
- package/src/icons/arrow/arrow-swap-horizontal.svg +1 -0
- package/src/icons/arrow/arrow-swap.svg +1 -0
- package/src/icons/arrow/arrow-up-1.svg +1 -0
- package/src/icons/arrow/arrow-up-2.svg +1 -0
- package/src/icons/arrow/arrow-up.svg +1 -0
- package/src/icons/arrow/back-square.svg +1 -0
- package/src/icons/arrow/convert.svg +1 -0
- package/src/icons/arrow/export-1.svg +1 -0
- package/src/icons/arrow/export-2.svg +1 -0
- package/src/icons/arrow/export-3.svg +1 -0
- package/src/icons/arrow/export.svg +1 -0
- package/src/icons/arrow/forward-square.svg +1 -0
- package/src/icons/arrow/frame.svg +1 -0
- package/src/icons/arrow/import-1.svg +1 -0
- package/src/icons/arrow/import-2.svg +1 -0
- package/src/icons/arrow/import.svg +1 -0
- package/src/icons/arrow/login-1.svg +1 -0
- package/src/icons/arrow/login.svg +1 -0
- package/src/icons/arrow/logout-1.svg +1 -0
- package/src/icons/arrow/logout.svg +1 -0
- package/src/icons/arrow/receive-square-2.svg +1 -0
- package/src/icons/arrow/receive-square.svg +1 -0
- package/src/icons/arrow/received.svg +1 -0
- package/src/icons/arrow/redo.svg +1 -0
- package/src/icons/arrow/refresh-2.svg +1 -0
- package/src/icons/arrow/refresh-circle.svg +1 -0
- package/src/icons/arrow/refresh-left-square.svg +1 -0
- package/src/icons/arrow/refresh-right-square.svg +1 -0
- package/src/icons/arrow/refresh-square-2.svg +1 -0
- package/src/icons/arrow/refresh.svg +1 -0
- package/src/icons/arrow/repeat-circle.svg +1 -0
- package/src/icons/arrow/repeat.svg +1 -0
- package/src/icons/arrow/rotate-left.svg +1 -0
- package/src/icons/arrow/rotate-right.svg +1 -0
- package/src/icons/arrow/send-sqaure-2.svg +1 -0
- package/src/icons/arrow/send-square.svg +1 -0
- package/src/icons/arrow/send.svg +1 -0
- package/src/icons/arrow/undo.svg +1 -0
- package/src/icons/building/bank.svg +1 -0
- package/src/icons/building/building-3.svg +1 -0
- package/src/icons/building/building-4.svg +1 -0
- package/src/icons/building/building.svg +1 -0
- package/src/icons/building/buildings-2.svg +1 -0
- package/src/icons/building/buildings.svg +1 -0
- package/src/icons/building/buliding.svg +1 -0
- package/src/icons/building/courthouse.svg +1 -0
- package/src/icons/building/hospital.svg +1 -0
- package/src/icons/building/house-2.svg +1 -0
- package/src/icons/building/house.svg +1 -0
- package/src/icons/business/activity.svg +1 -0
- package/src/icons/business/chart-1.svg +1 -0
- package/src/icons/business/chart-2.svg +1 -0
- package/src/icons/business/chart-21.svg +1 -0
- package/src/icons/business/chart-fail.svg +1 -0
- package/src/icons/business/chart-success.svg +1 -0
- package/src/icons/business/chart.svg +1 -0
- package/src/icons/business/diagram.svg +1 -0
- package/src/icons/business/favorite-chart.svg +1 -0
- package/src/icons/business/graph.svg +1 -0
- package/src/icons/business/hashtag.svg +1 -0
- package/src/icons/business/health.svg +1 -0
- package/src/icons/business/home-hashtag.svg +1 -0
- package/src/icons/business/home-trend-down.svg +1 -0
- package/src/icons/business/home-trend-up.svg +1 -0
- package/src/icons/business/personalcard.svg +1 -0
- package/src/icons/business/presention-chart.svg +1 -0
- package/src/icons/business/status-up.svg +1 -0
- package/src/icons/business/trend-down.svg +1 -0
- package/src/icons/business/trend-up.svg +1 -0
- package/src/icons/chevron/down.svg +1 -0
- package/src/icons/chevron/left.svg +1 -0
- package/src/icons/chevron/right.svg +1 -0
- package/src/icons/chevron/up.svg +1 -0
- package/src/icons/content-edit/archive-book.svg +1 -0
- package/src/icons/content-edit/bill.svg +1 -0
- package/src/icons/content-edit/clipboard-close.svg +1 -0
- package/src/icons/content-edit/clipboard-export.svg +1 -0
- package/src/icons/content-edit/clipboard-import.svg +1 -0
- package/src/icons/content-edit/clipboard-text.svg +1 -0
- package/src/icons/content-edit/clipboard-tick.svg +1 -0
- package/src/icons/content-edit/copyright.svg +1 -0
- package/src/icons/content-edit/creative-commons.svg +1 -0
- package/src/icons/content-edit/document-cloud.svg +1 -0
- package/src/icons/content-edit/document-copy.svg +1 -0
- package/src/icons/content-edit/document-download.svg +1 -0
- package/src/icons/content-edit/document-favorite.svg +1 -0
- package/src/icons/content-edit/document-filter.svg +1 -0
- package/src/icons/content-edit/document-forward.svg +1 -0
- package/src/icons/content-edit/document-like.svg +1 -0
- package/src/icons/content-edit/document-normal.svg +1 -0
- package/src/icons/content-edit/document-previous.svg +1 -0
- package/src/icons/content-edit/document-sketch.svg +1 -0
- package/src/icons/content-edit/document-text-1.svg +1 -0
- package/src/icons/content-edit/document-text.svg +1 -0
- package/src/icons/content-edit/document-upload.svg +1 -0
- package/src/icons/content-edit/document.svg +1 -0
- package/src/icons/content-edit/edit-2.svg +1 -0
- package/src/icons/content-edit/edit.svg +1 -0
- package/src/icons/content-edit/menu-board.svg +1 -0
- package/src/icons/content-edit/note-1.svg +1 -0
- package/src/icons/content-edit/note-add.svg +1 -0
- package/src/icons/content-edit/note-favorite.svg +1 -0
- package/src/icons/content-edit/note-remove.svg +1 -0
- package/src/icons/content-edit/note-text.svg +1 -0
- package/src/icons/content-edit/note.svg +1 -0
- package/src/icons/content-edit/stickynote.svg +1 -0
- package/src/icons/content-edit/task-square.svg +1 -0
- package/src/icons/content-edit/task.svg +1 -0
- package/src/icons/delivery/3d-cube-scan.svg +1 -0
- package/src/icons/delivery/3d-rotate.svg +1 -0
- package/src/icons/delivery/3d-square.svg +1 -0
- package/src/icons/delivery/box-1.svg +1 -0
- package/src/icons/delivery/box-add.svg +1 -0
- package/src/icons/delivery/box-remove.svg +1 -0
- package/src/icons/delivery/box-search.svg +1 -0
- package/src/icons/delivery/box-tick.svg +1 -0
- package/src/icons/delivery/box-time.svg +1 -0
- package/src/icons/delivery/box.svg +1 -0
- package/src/icons/delivery/convert-3d-cube.svg +1 -0
- package/src/icons/delivery/truck-fast.svg +1 -0
- package/src/icons/delivery/truck-remove.svg +1 -0
- package/src/icons/delivery/truck-tick.svg +1 -0
- package/src/icons/delivery/truck-time.svg +1 -0
- package/src/icons/delivery/truck.svg +1 -0
- package/src/icons/files/folder-2.svg +1 -0
- package/src/icons/files/folder-add.svg +1 -0
- package/src/icons/files/folder-cloud.svg +1 -0
- package/src/icons/files/folder-cross.svg +1 -0
- package/src/icons/files/folder-favorite.svg +1 -0
- package/src/icons/files/folder-minus.svg +1 -0
- package/src/icons/files/folder-open.svg +1 -0
- package/src/icons/files/folder.svg +1 -0
- package/src/icons/generate-icon-registry.js +345 -0
- package/src/icons/location/arrow-square.svg +1 -0
- package/src/icons/location/arrow.svg +1 -0
- package/src/icons/location/direct-down.svg +1 -0
- package/src/icons/location/direct-left.svg +1 -0
- package/src/icons/location/direct-right.svg +1 -0
- package/src/icons/location/direct-up.svg +1 -0
- package/src/icons/location/discover.svg +1 -0
- package/src/icons/location/global-edit.svg +1 -0
- package/src/icons/location/global-refresh.svg +1 -0
- package/src/icons/location/global-search.svg +1 -0
- package/src/icons/location/global.svg +1 -0
- package/src/icons/location/gps-slash.svg +1 -0
- package/src/icons/location/gps.svg +1 -0
- package/src/icons/location/location-add.svg +1 -0
- package/src/icons/location/location-cross.svg +1 -0
- package/src/icons/location/location-minus.svg +1 -0
- package/src/icons/location/location-slash.svg +1 -0
- package/src/icons/location/location-tick.svg +1 -0
- package/src/icons/location/location.svg +1 -0
- package/src/icons/location/map-1.svg +1 -0
- package/src/icons/location/map.svg +1 -0
- package/src/icons/location/picture-frame.svg +1 -0
- package/src/icons/location/radar-2.svg +1 -0
- package/src/icons/location/radar.svg +1 -0
- package/src/icons/location/route-square.svg +1 -0
- package/src/icons/location/routing-2.svg +1 -0
- package/src/icons/location/routing.svg +1 -0
- package/src/icons/messages/device-message.svg +1 -0
- package/src/icons/messages/direct-inbox.svg +1 -0
- package/src/icons/messages/direct-normal.svg +1 -0
- package/src/icons/messages/direct-notification.svg +1 -0
- package/src/icons/messages/direct-send.svg +1 -0
- package/src/icons/messages/direct.svg +1 -0
- package/src/icons/messages/directbox-default.svg +1 -0
- package/src/icons/messages/directbox-notif.svg +1 -0
- package/src/icons/messages/directbox-receive.svg +1 -0
- package/src/icons/messages/directbox-send.svg +1 -0
- package/src/icons/messages/message-2.svg +1 -0
- package/src/icons/messages/message-add-1.svg +1 -0
- package/src/icons/messages/message-add.svg +1 -0
- package/src/icons/messages/message-circle.svg +1 -0
- package/src/icons/messages/message-edit.svg +1 -0
- package/src/icons/messages/message-favorite.svg +1 -0
- package/src/icons/messages/message-minus.svg +1 -0
- package/src/icons/messages/message-notif.svg +1 -0
- package/src/icons/messages/message-remove.svg +1 -0
- package/src/icons/messages/message-search.svg +1 -0
- package/src/icons/messages/message-square.svg +1 -0
- package/src/icons/messages/message-text-1.svg +1 -0
- package/src/icons/messages/message-text.svg +1 -0
- package/src/icons/messages/message-tick.svg +1 -0
- package/src/icons/messages/message-time.svg +1 -0
- package/src/icons/messages/message.svg +1 -0
- package/src/icons/messages/messages-1.svg +1 -0
- package/src/icons/messages/messages-2.svg +1 -0
- package/src/icons/messages/messages-3.svg +1 -0
- package/src/icons/messages/messages.svg +1 -0
- package/src/icons/messages/sms-edit.svg +1 -0
- package/src/icons/messages/sms-notification.svg +1 -0
- package/src/icons/messages/sms-search.svg +1 -0
- package/src/icons/messages/sms-star.svg +1 -0
- package/src/icons/messages/sms-tracking.svg +1 -0
- package/src/icons/messages/sms.svg +1 -0
- package/src/icons/money/archive.svg +1 -0
- package/src/icons/money/card-add.svg +1 -0
- package/src/icons/money/card-edit.svg +1 -0
- package/src/icons/money/card-pos.svg +1 -0
- package/src/icons/money/card-receive.svg +1 -0
- package/src/icons/money/card-remove-1.svg +1 -0
- package/src/icons/money/card-remove.svg +1 -0
- package/src/icons/money/card-send.svg +1 -0
- package/src/icons/money/card-slash.svg +1 -0
- package/src/icons/money/card-tick-1.svg +1 -0
- package/src/icons/money/card-tick.svg +1 -0
- package/src/icons/money/card.svg +1 -0
- package/src/icons/money/cards.svg +1 -0
- package/src/icons/money/chart-square.svg +1 -0
- package/src/icons/money/coin-1.svg +1 -0
- package/src/icons/money/coin.svg +1 -0
- package/src/icons/money/convert-card.svg +1 -0
- package/src/icons/money/discount-circle.svg +1 -0
- package/src/icons/money/discount-shape.svg +1 -0
- package/src/icons/money/document.svg +1 -0
- package/src/icons/money/dollar-circle.svg +1 -0
- package/src/icons/money/dollar-square.svg +1 -0
- package/src/icons/money/empty-wallet-add.svg +1 -0
- package/src/icons/money/empty-wallet-change.svg +1 -0
- package/src/icons/money/empty-wallet-remove.svg +1 -0
- package/src/icons/money/empty-wallet-tick.svg +1 -0
- package/src/icons/money/empty-wallet-time.svg +1 -0
- package/src/icons/money/empty-wallet.svg +1 -0
- package/src/icons/money/math.svg +1 -0
- package/src/icons/money/money-2.svg +1 -0
- package/src/icons/money/money-3.svg +1 -0
- package/src/icons/money/money-4.svg +1 -0
- package/src/icons/money/money-add.svg +1 -0
- package/src/icons/money/money-change.svg +1 -0
- package/src/icons/money/money-forbidden.svg +1 -0
- package/src/icons/money/money-recive.svg +1 -0
- package/src/icons/money/money-remove.svg +1 -0
- package/src/icons/money/money-send.svg +1 -0
- package/src/icons/money/money-tick.svg +1 -0
- package/src/icons/money/money-time.svg +1 -0
- package/src/icons/money/money.svg +1 -0
- package/src/icons/money/moneys.svg +1 -0
- package/src/icons/money/percentage-circle.svg +1 -0
- package/src/icons/money/percentage-square.svg +1 -0
- package/src/icons/money/receipt-2-1.svg +1 -0
- package/src/icons/money/receipt-2.svg +1 -0
- package/src/icons/money/receipt-add.svg +1 -0
- package/src/icons/money/receipt-discount.svg +1 -0
- package/src/icons/money/receipt-disscount.svg +1 -0
- package/src/icons/money/receipt-edit.svg +1 -0
- package/src/icons/money/receipt-item.svg +1 -0
- package/src/icons/money/receipt-minus.svg +1 -0
- package/src/icons/money/receipt-search.svg +1 -0
- package/src/icons/money/receipt-text.svg +1 -0
- package/src/icons/money/receipt.svg +1 -0
- package/src/icons/money/security-card.svg +1 -0
- package/src/icons/money/strongbox-2.svg +1 -0
- package/src/icons/money/strongbox.svg +1 -0
- package/src/icons/money/tag-2.svg +1 -0
- package/src/icons/money/tag.svg +1 -0
- package/src/icons/money/ticket-2.svg +1 -0
- package/src/icons/money/ticket-discount.svg +1 -0
- package/src/icons/money/ticket-expired.svg +1 -0
- package/src/icons/money/ticket-star.svg +1 -0
- package/src/icons/money/ticket.svg +1 -0
- package/src/icons/money/transaction-minus.svg +1 -0
- package/src/icons/money/wallet-1.svg +1 -0
- package/src/icons/money/wallet-2.svg +1 -0
- package/src/icons/money/wallet-3.svg +1 -0
- package/src/icons/money/wallet-add.svg +1 -0
- package/src/icons/money/wallet-check.svg +1 -0
- package/src/icons/money/wallet-minus.svg +1 -0
- package/src/icons/money/wallet-money.svg +1 -0
- package/src/icons/money/wallet-remove.svg +1 -0
- package/src/icons/money/wallet-search.svg +1 -0
- package/src/icons/money/wallet-to-add.svg +1 -0
- package/src/icons/money/wallet.svg +1 -0
- package/src/icons/navigation/add-circle.svg +1 -0
- package/src/icons/navigation/add-square.svg +1 -0
- package/src/icons/navigation/add.svg +1 -0
- package/src/icons/navigation/archive.svg +1 -0
- package/src/icons/navigation/autobrightness.svg +1 -0
- package/src/icons/navigation/box-2.svg +1 -0
- package/src/icons/navigation/broom.svg +1 -0
- package/src/icons/navigation/bubble.svg +1 -0
- package/src/icons/navigation/check.svg +1 -0
- package/src/icons/navigation/close-circle.svg +1 -0
- package/src/icons/navigation/close-square.svg +1 -0
- package/src/icons/navigation/computing.svg +1 -0
- package/src/icons/navigation/crown.svg +1 -0
- package/src/icons/navigation/cup.svg +1 -0
- package/src/icons/navigation/danger.svg +1 -0
- package/src/icons/navigation/diamonds.svg +1 -0
- package/src/icons/navigation/discover.svg +1 -0
- package/src/icons/navigation/dot.svg +3 -0
- package/src/icons/navigation/filter-add.svg +1 -0
- package/src/icons/navigation/filter-edit.svg +1 -0
- package/src/icons/navigation/filter-remove.svg +1 -0
- package/src/icons/navigation/filter-search.svg +1 -0
- package/src/icons/navigation/filter-square.svg +1 -0
- package/src/icons/navigation/filter-tick.svg +1 -0
- package/src/icons/navigation/filter.svg +1 -0
- package/src/icons/navigation/flag-2.svg +1 -0
- package/src/icons/navigation/flag.svg +1 -0
- package/src/icons/navigation/flash-circle.svg +1 -0
- package/src/icons/navigation/flash-slash.svg +1 -0
- package/src/icons/navigation/flash.svg +1 -0
- package/src/icons/navigation/forbidden-2.svg +1 -0
- package/src/icons/navigation/forbidden.svg +1 -0
- package/src/icons/navigation/glass.svg +1 -0
- package/src/icons/navigation/happyemoji.svg +1 -0
- package/src/icons/navigation/home-2.svg +1 -0
- package/src/icons/navigation/home-wifi.svg +1 -0
- package/src/icons/navigation/home.svg +1 -0
- package/src/icons/navigation/info-circle.svg +1 -0
- package/src/icons/navigation/information.svg +1 -0
- package/src/icons/navigation/judge.svg +1 -0
- package/src/icons/navigation/lamp.svg +1 -0
- package/src/icons/navigation/level.svg +1 -0
- package/src/icons/navigation/menu.svg +1 -0
- package/src/icons/navigation/minus-cirlce.svg +1 -0
- package/src/icons/navigation/minus-square.svg +1 -0
- package/src/icons/navigation/minus.svg +1 -0
- package/src/icons/navigation/mirror.svg +1 -0
- package/src/icons/navigation/more-circle.svg +1 -0
- package/src/icons/navigation/more-square.svg +1 -0
- package/src/icons/navigation/mouse-circle.svg +1 -0
- package/src/icons/navigation/mouse-square.svg +1 -0
- package/src/icons/navigation/pet.svg +1 -0
- package/src/icons/navigation/ranking.svg +1 -0
- package/src/icons/navigation/reserve.svg +1 -0
- package/src/icons/navigation/send-2.svg +1 -0
- package/src/icons/navigation/send.svg +1 -0
- package/src/icons/navigation/share.svg +1 -0
- package/src/icons/navigation/signpost.svg +1 -0
- package/src/icons/navigation/slash.svg +1 -0
- package/src/icons/navigation/sort.svg +1 -0
- package/src/icons/navigation/sound.svg +1 -0
- package/src/icons/navigation/status.svg +1 -0
- package/src/icons/navigation/sticker.svg +1 -0
- package/src/icons/navigation/tag-cross.svg +1 -0
- package/src/icons/navigation/tag-right.svg +1 -0
- package/src/icons/navigation/tick-circle.svg +1 -0
- package/src/icons/navigation/tick-square.svg +1 -0
- package/src/icons/navigation/trash.svg +1 -0
- package/src/icons/navigation/tree.svg +1 -0
- package/src/icons/navigation/triangle.svg +1 -0
- package/src/icons/navigation/trush-square.svg +1 -0
- package/src/icons/navigation/verify.svg +1 -0
- package/src/icons/navigation/warning-2.svg +1 -0
- package/src/icons/navigation/wifi-square.svg +1 -0
- package/src/icons/navigation/wifi.svg +1 -0
- package/src/icons/notifications/lamp-charge.svg +1 -0
- package/src/icons/notifications/lamp-on.svg +1 -0
- package/src/icons/notifications/lamp-slash.svg +1 -0
- package/src/icons/notifications/notification-1.svg +1 -0
- package/src/icons/notifications/notification-bing.svg +1 -0
- package/src/icons/notifications/notification-favorite.svg +1 -0
- package/src/icons/notifications/notification-status.svg +1 -0
- package/src/icons/notifications/notification.svg +1 -0
- package/src/icons/optimize-icons.js +232 -0
- package/src/icons/original/archive/archive-add.svg +5 -0
- package/src/icons/original/archive/archive-minus.svg +4 -0
- package/src/icons/original/archive/archive-slash.svg +5 -0
- package/src/icons/original/archive/archive-tick.svg +4 -0
- package/src/icons/original/archive/archive.svg +5 -0
- package/src/icons/original/archive/book-saved.svg +5 -0
- package/src/icons/original/archive/book-square.svg +5 -0
- package/src/icons/original/archive/receipt-square.svg +4 -0
- package/src/icons/original/archive/save-2.svg +5 -0
- package/src/icons/original/archive/save-add.svg +6 -0
- package/src/icons/original/archive/save-minus.svg +5 -0
- package/src/icons/original/archive/save-remove.svg +6 -0
- package/src/icons/original/arrow/arrange-circle-2.svg +7 -0
- package/src/icons/original/arrow/arrange-circle.svg +7 -0
- package/src/icons/original/arrow/arrange-square-2.svg +7 -0
- package/src/icons/original/arrow/arrange-square.svg +7 -0
- package/src/icons/original/arrow/arrow-2.svg +6 -0
- package/src/icons/original/arrow/arrow-3.svg +6 -0
- package/src/icons/original/arrow/arrow-bottom.svg +3 -0
- package/src/icons/original/arrow/arrow-circle-down.svg +4 -0
- package/src/icons/original/arrow/arrow-circle-left.svg +4 -0
- package/src/icons/original/arrow/arrow-circle-right.svg +4 -0
- package/src/icons/original/arrow/arrow-circle-up.svg +4 -0
- package/src/icons/original/arrow/arrow-down-1.svg +5 -0
- package/src/icons/original/arrow/arrow-down.svg +4 -0
- package/src/icons/original/arrow/arrow-left-1.svg +3 -0
- package/src/icons/original/arrow/arrow-left-2.svg +5 -0
- package/src/icons/original/arrow/arrow-left.svg +4 -0
- package/src/icons/original/arrow/arrow-right-1.svg +4 -0
- package/src/icons/original/arrow/arrow-right-2.svg +5 -0
- package/src/icons/original/arrow/arrow-right-3.svg +3 -0
- package/src/icons/original/arrow/arrow-right.svg +4 -0
- package/src/icons/original/arrow/arrow-square-down.svg +4 -0
- package/src/icons/original/arrow/arrow-square-left.svg +4 -0
- package/src/icons/original/arrow/arrow-square-up.svg +4 -0
- package/src/icons/original/arrow/arrow-swap-horizontal.svg +6 -0
- package/src/icons/original/arrow/arrow-swap.svg +6 -0
- package/src/icons/original/arrow/arrow-up-1.svg +5 -0
- package/src/icons/original/arrow/arrow-up-2.svg +4 -0
- package/src/icons/original/arrow/arrow-up.svg +3 -0
- package/src/icons/original/arrow/back-square.svg +5 -0
- package/src/icons/original/arrow/convert.svg +5 -0
- package/src/icons/original/arrow/export-1.svg +5 -0
- package/src/icons/original/arrow/export-2.svg +5 -0
- package/src/icons/original/arrow/export-3.svg +5 -0
- package/src/icons/original/arrow/export.svg +5 -0
- package/src/icons/original/arrow/forward-square.svg +5 -0
- package/src/icons/original/arrow/frame.svg +5 -0
- package/src/icons/original/arrow/import-1.svg +5 -0
- package/src/icons/original/arrow/import-2.svg +5 -0
- package/src/icons/original/arrow/import.svg +5 -0
- package/src/icons/original/arrow/login-1.svg +5 -0
- package/src/icons/original/arrow/login.svg +5 -0
- package/src/icons/original/arrow/logout-1.svg +5 -0
- package/src/icons/original/arrow/logout.svg +5 -0
- package/src/icons/original/arrow/receive-square-2.svg +6 -0
- package/src/icons/original/arrow/receive-square.svg +6 -0
- package/src/icons/original/arrow/received.svg +5 -0
- package/src/icons/original/arrow/redo.svg +4 -0
- package/src/icons/original/arrow/refresh-2.svg +3 -0
- package/src/icons/original/arrow/refresh-circle.svg +7 -0
- package/src/icons/original/arrow/refresh-left-square.svg +6 -0
- package/src/icons/original/arrow/refresh-right-square.svg +6 -0
- package/src/icons/original/arrow/refresh-square-2.svg +4 -0
- package/src/icons/original/arrow/refresh.svg +4 -0
- package/src/icons/original/arrow/repeat-circle.svg +7 -0
- package/src/icons/original/arrow/repeat.svg +6 -0
- package/src/icons/original/arrow/rotate-left.svg +5 -0
- package/src/icons/original/arrow/rotate-right.svg +5 -0
- package/src/icons/original/arrow/send-sqaure-2.svg +6 -0
- package/src/icons/original/arrow/send-square.svg +6 -0
- package/src/icons/original/arrow/send.svg +5 -0
- package/src/icons/original/arrow/undo.svg +4 -0
- package/src/icons/original/building/bank.svg +11 -0
- package/src/icons/original/building/building-3.svg +9 -0
- package/src/icons/original/building/building-4.svg +9 -0
- package/src/icons/original/building/building.svg +8 -0
- package/src/icons/original/building/buildings-2.svg +8 -0
- package/src/icons/original/building/buildings.svg +9 -0
- package/src/icons/original/building/buliding.svg +10 -0
- package/src/icons/original/building/courthouse.svg +10 -0
- package/src/icons/original/building/hospital.svg +7 -0
- package/src/icons/original/building/house-2.svg +7 -0
- package/src/icons/original/building/house.svg +8 -0
- package/src/icons/original/business/activity.svg +4 -0
- package/src/icons/original/business/chart-1.svg +6 -0
- package/src/icons/original/business/chart-2.svg +5 -0
- package/src/icons/original/business/chart-21.svg +6 -0
- package/src/icons/original/business/chart-fail.svg +8 -0
- package/src/icons/original/business/chart-success.svg +9 -0
- package/src/icons/original/business/chart.svg +6 -0
- package/src/icons/original/business/diagram.svg +4 -0
- package/src/icons/original/business/favorite-chart.svg +5 -0
- package/src/icons/original/business/graph.svg +4 -0
- package/src/icons/original/business/hashtag.svg +6 -0
- package/src/icons/original/business/health.svg +4 -0
- package/src/icons/original/business/home-hashtag.svg +6 -0
- package/src/icons/original/business/home-trend-down.svg +5 -0
- package/src/icons/original/business/home-trend-up.svg +5 -0
- package/src/icons/original/business/personalcard.svg +8 -0
- package/src/icons/original/business/presention-chart.svg +7 -0
- package/src/icons/original/business/status-up.svg +8 -0
- package/src/icons/original/business/trend-down.svg +5 -0
- package/src/icons/original/business/trend-up.svg +5 -0
- package/src/icons/original/chevron/down.svg +3 -0
- package/src/icons/original/chevron/left.svg +3 -0
- package/src/icons/original/chevron/right.svg +3 -0
- package/src/icons/original/chevron/up.svg +3 -0
- package/src/icons/original/content-edit/archive-book.svg +6 -0
- package/src/icons/original/content-edit/bill.svg +6 -0
- package/src/icons/original/content-edit/clipboard-close.svg +6 -0
- package/src/icons/original/content-edit/clipboard-export.svg +7 -0
- package/src/icons/original/content-edit/clipboard-import.svg +7 -0
- package/src/icons/original/content-edit/clipboard-text.svg +6 -0
- package/src/icons/original/content-edit/clipboard-tick.svg +5 -0
- package/src/icons/original/content-edit/copyright.svg +4 -0
- package/src/icons/original/content-edit/creative-commons.svg +5 -0
- package/src/icons/original/content-edit/document-cloud.svg +6 -0
- package/src/icons/original/content-edit/document-copy.svg +8 -0
- package/src/icons/original/content-edit/document-download.svg +6 -0
- package/src/icons/original/content-edit/document-favorite.svg +5 -0
- package/src/icons/original/content-edit/document-filter.svg +6 -0
- package/src/icons/original/content-edit/document-forward.svg +5 -0
- package/src/icons/original/content-edit/document-like.svg +5 -0
- package/src/icons/original/content-edit/document-normal.svg +4 -0
- package/src/icons/original/content-edit/document-previous.svg +6 -0
- package/src/icons/original/content-edit/document-sketch.svg +5 -0
- package/src/icons/original/content-edit/document-text-1.svg +6 -0
- package/src/icons/original/content-edit/document-text.svg +6 -0
- package/src/icons/original/content-edit/document-upload.svg +6 -0
- package/src/icons/original/content-edit/document.svg +4 -0
- package/src/icons/original/content-edit/edit-2.svg +5 -0
- package/src/icons/original/content-edit/edit.svg +5 -0
- package/src/icons/original/content-edit/menu-board.svg +8 -0
- package/src/icons/original/content-edit/note-1.svg +6 -0
- package/src/icons/original/content-edit/note-add.svg +7 -0
- package/src/icons/original/content-edit/note-favorite.svg +9 -0
- package/src/icons/original/content-edit/note-remove.svg +9 -0
- package/src/icons/original/content-edit/note-text.svg +7 -0
- package/src/icons/original/content-edit/note.svg +7 -0
- package/src/icons/original/content-edit/stickynote.svg +8 -0
- package/src/icons/original/content-edit/task-square.svg +7 -0
- package/src/icons/original/content-edit/task.svg +8 -0
- package/src/icons/original/delivery/3d-cube-scan.svg +7 -0
- package/src/icons/original/delivery/3d-rotate.svg +7 -0
- package/src/icons/original/delivery/3d-square.svg +6 -0
- package/src/icons/original/delivery/box-1.svg +5 -0
- package/src/icons/original/delivery/box-add.svg +8 -0
- package/src/icons/original/delivery/box-remove.svg +8 -0
- package/src/icons/original/delivery/box-search.svg +7 -0
- package/src/icons/original/delivery/box-tick.svg +7 -0
- package/src/icons/original/delivery/box-time.svg +7 -0
- package/src/icons/original/delivery/box.svg +6 -0
- package/src/icons/original/delivery/convert-3d-cube.svg +10 -0
- package/src/icons/original/delivery/truck-fast.svg +10 -0
- package/src/icons/original/delivery/truck-remove.svg +10 -0
- package/src/icons/original/delivery/truck-tick.svg +9 -0
- package/src/icons/original/delivery/truck-time.svg +9 -0
- package/src/icons/original/delivery/truck.svg +7 -0
- package/src/icons/original/files/folder-2.svg +4 -0
- package/src/icons/original/files/folder-add.svg +5 -0
- package/src/icons/original/files/folder-cloud.svg +4 -0
- package/src/icons/original/files/folder-cross.svg +5 -0
- package/src/icons/original/files/folder-favorite.svg +4 -0
- package/src/icons/original/files/folder-minus.svg +4 -0
- package/src/icons/original/files/folder-open.svg +5 -0
- package/src/icons/original/files/folder.svg +3 -0
- package/src/icons/original/location/arrow-square.svg +7 -0
- package/src/icons/original/location/arrow.svg +8 -0
- package/src/icons/original/location/direct-down.svg +3 -0
- package/src/icons/original/location/direct-left.svg +3 -0
- package/src/icons/original/location/direct-right.svg +3 -0
- package/src/icons/original/location/direct-up.svg +3 -0
- package/src/icons/original/location/discover.svg +4 -0
- package/src/icons/original/location/global-edit.svg +9 -0
- package/src/icons/original/location/global-refresh.svg +10 -0
- package/src/icons/original/location/global-search.svg +9 -0
- package/src/icons/original/location/global.svg +7 -0
- package/src/icons/original/location/gps-slash.svg +10 -0
- package/src/icons/original/location/gps.svg +8 -0
- package/src/icons/original/location/location-add.svg +5 -0
- package/src/icons/original/location/location-cross.svg +5 -0
- package/src/icons/original/location/location-minus.svg +4 -0
- package/src/icons/original/location/location-slash.svg +6 -0
- package/src/icons/original/location/location-tick.svg +4 -0
- package/src/icons/original/location/location.svg +4 -0
- package/src/icons/original/location/map-1.svg +7 -0
- package/src/icons/original/location/map.svg +5 -0
- package/src/icons/original/location/picture-frame.svg +5 -0
- package/src/icons/original/location/radar-2.svg +4 -0
- package/src/icons/original/location/radar.svg +3 -0
- package/src/icons/original/location/route-square.svg +4 -0
- package/src/icons/original/location/routing-2.svg +7 -0
- package/src/icons/original/location/routing.svg +8 -0
- package/src/icons/original/messages/device-message.svg +9 -0
- package/src/icons/original/messages/direct-inbox.svg +6 -0
- package/src/icons/original/messages/direct-normal.svg +4 -0
- package/src/icons/original/messages/direct-notification.svg +5 -0
- package/src/icons/original/messages/direct-send.svg +6 -0
- package/src/icons/original/messages/direct.svg +6 -0
- package/src/icons/original/messages/directbox-default.svg +4 -0
- package/src/icons/original/messages/directbox-notif.svg +6 -0
- package/src/icons/original/messages/directbox-receive.svg +7 -0
- package/src/icons/original/messages/directbox-send.svg +7 -0
- package/src/icons/original/messages/message-2.svg +4 -0
- package/src/icons/original/messages/message-add-1.svg +5 -0
- package/src/icons/original/messages/message-add.svg +7 -0
- package/src/icons/original/messages/message-circle.svg +4 -0
- package/src/icons/original/messages/message-edit.svg +5 -0
- package/src/icons/original/messages/message-favorite.svg +7 -0
- package/src/icons/original/messages/message-minus.svg +4 -0
- package/src/icons/original/messages/message-notif.svg +7 -0
- package/src/icons/original/messages/message-remove.svg +7 -0
- package/src/icons/original/messages/message-search.svg +8 -0
- package/src/icons/original/messages/message-square.svg +4 -0
- package/src/icons/original/messages/message-text-1.svg +5 -0
- package/src/icons/original/messages/message-text.svg +5 -0
- package/src/icons/original/messages/message-tick.svg +6 -0
- package/src/icons/original/messages/message-time.svg +6 -0
- package/src/icons/original/messages/message.svg +6 -0
- package/src/icons/original/messages/messages-1.svg +5 -0
- package/src/icons/original/messages/messages-2.svg +4 -0
- package/src/icons/original/messages/messages-3.svg +4 -0
- package/src/icons/original/messages/messages.svg +7 -0
- package/src/icons/original/messages/sms-edit.svg +6 -0
- package/src/icons/original/messages/sms-notification.svg +5 -0
- package/src/icons/original/messages/sms-search.svg +6 -0
- package/src/icons/original/messages/sms-star.svg +5 -0
- package/src/icons/original/messages/sms-tracking.svg +6 -0
- package/src/icons/original/messages/sms.svg +4 -0
- package/src/icons/original/money/archive.svg +8 -0
- package/src/icons/original/money/card-add.svg +8 -0
- package/src/icons/original/money/card-edit.svg +8 -0
- package/src/icons/original/money/card-pos.svg +7 -0
- package/src/icons/original/money/card-receive.svg +8 -0
- package/src/icons/original/money/card-remove-1.svg +8 -0
- package/src/icons/original/money/card-remove.svg +8 -0
- package/src/icons/original/money/card-send.svg +8 -0
- package/src/icons/original/money/card-slash.svg +8 -0
- package/src/icons/original/money/card-tick-1.svg +7 -0
- package/src/icons/original/money/card-tick.svg +7 -0
- package/src/icons/original/money/card.svg +6 -0
- package/src/icons/original/money/cards.svg +7 -0
- package/src/icons/original/money/chart-square.svg +6 -0
- package/src/icons/original/money/coin-1.svg +5 -0
- package/src/icons/original/money/coin.svg +7 -0
- package/src/icons/original/money/convert-card.svg +8 -0
- package/src/icons/original/money/discount-circle.svg +6 -0
- package/src/icons/original/money/discount-shape.svg +6 -0
- package/src/icons/original/money/document.svg +5 -0
- package/src/icons/original/money/dollar-circle.svg +5 -0
- package/src/icons/original/money/dollar-square.svg +5 -0
- package/src/icons/original/money/empty-wallet-add.svg +9 -0
- package/src/icons/original/money/empty-wallet-change.svg +10 -0
- package/src/icons/original/money/empty-wallet-remove.svg +9 -0
- package/src/icons/original/money/empty-wallet-tick.svg +8 -0
- package/src/icons/original/money/empty-wallet-time.svg +8 -0
- package/src/icons/original/money/empty-wallet.svg +6 -0
- package/src/icons/original/money/math.svg +9 -0
- package/src/icons/original/money/money-2.svg +8 -0
- package/src/icons/original/money/money-3.svg +6 -0
- package/src/icons/original/money/money-4.svg +8 -0
- package/src/icons/original/money/money-add.svg +8 -0
- package/src/icons/original/money/money-change.svg +9 -0
- package/src/icons/original/money/money-forbidden.svg +7 -0
- package/src/icons/original/money/money-recive.svg +7 -0
- package/src/icons/original/money/money-remove.svg +8 -0
- package/src/icons/original/money/money-send.svg +7 -0
- package/src/icons/original/money/money-tick.svg +7 -0
- package/src/icons/original/money/money-time.svg +7 -0
- package/src/icons/original/money/money.svg +6 -0
- package/src/icons/original/money/moneys.svg +7 -0
- package/src/icons/original/money/percentage-circle.svg +6 -0
- package/src/icons/original/money/percentage-square.svg +6 -0
- package/src/icons/original/money/receipt-2-1.svg +7 -0
- package/src/icons/original/money/receipt-2.svg +5 -0
- package/src/icons/original/money/receipt-add.svg +6 -0
- package/src/icons/original/money/receipt-discount.svg +7 -0
- package/src/icons/original/money/receipt-disscount.svg +6 -0
- package/src/icons/original/money/receipt-edit.svg +7 -0
- package/src/icons/original/money/receipt-item.svg +8 -0
- package/src/icons/original/money/receipt-minus.svg +5 -0
- package/src/icons/original/money/receipt-search.svg +7 -0
- package/src/icons/original/money/receipt-text.svg +6 -0
- package/src/icons/original/money/receipt.svg +5 -0
- package/src/icons/original/money/security-card.svg +7 -0
- package/src/icons/original/money/strongbox-2.svg +8 -0
- package/src/icons/original/money/strongbox.svg +6 -0
- package/src/icons/original/money/tag-2.svg +5 -0
- package/src/icons/original/money/tag.svg +4 -0
- package/src/icons/original/money/ticket-2.svg +7 -0
- package/src/icons/original/money/ticket-discount.svg +6 -0
- package/src/icons/original/money/ticket-expired.svg +5 -0
- package/src/icons/original/money/ticket-star.svg +6 -0
- package/src/icons/original/money/ticket.svg +6 -0
- package/src/icons/original/money/transaction-minus.svg +4 -0
- package/src/icons/original/money/wallet-1.svg +5 -0
- package/src/icons/original/money/wallet-2.svg +5 -0
- package/src/icons/original/money/wallet-3.svg +6 -0
- package/src/icons/original/money/wallet-add.svg +9 -0
- package/src/icons/original/money/wallet-check.svg +7 -0
- package/src/icons/original/money/wallet-minus.svg +8 -0
- package/src/icons/original/money/wallet-money.svg +7 -0
- package/src/icons/original/money/wallet-remove.svg +8 -0
- package/src/icons/original/money/wallet-search.svg +7 -0
- package/src/icons/original/money/wallet-to-add.svg +8 -0
- package/src/icons/original/money/wallet.svg +7 -0
- package/src/icons/original/navigation/add-circle.svg +5 -0
- package/src/icons/original/navigation/add-square.svg +5 -0
- package/src/icons/original/navigation/add.svg +4 -0
- package/src/icons/original/navigation/archive.svg +5 -0
- package/src/icons/original/navigation/autobrightness.svg +5 -0
- package/src/icons/original/navigation/box-2.svg +3 -0
- package/src/icons/original/navigation/broom.svg +8 -0
- package/src/icons/original/navigation/bubble.svg +5 -0
- package/src/icons/original/navigation/check.svg +3 -0
- package/src/icons/original/navigation/close-circle.svg +5 -0
- package/src/icons/original/navigation/close-square.svg +5 -0
- package/src/icons/original/navigation/computing.svg +7 -0
- package/src/icons/original/navigation/crown.svg +5 -0
- package/src/icons/original/navigation/cup.svg +8 -0
- package/src/icons/original/navigation/danger.svg +5 -0
- package/src/icons/original/navigation/diamonds.svg +4 -0
- package/src/icons/original/navigation/discover.svg +4 -0
- package/src/icons/original/navigation/filter-add.svg +6 -0
- package/src/icons/original/navigation/filter-edit.svg +5 -0
- package/src/icons/original/navigation/filter-remove.svg +7 -0
- package/src/icons/original/navigation/filter-search.svg +5 -0
- package/src/icons/original/navigation/filter-square.svg +4 -0
- package/src/icons/original/navigation/filter-tick.svg +5 -0
- package/src/icons/original/navigation/filter.svg +4 -0
- package/src/icons/original/navigation/flag-2.svg +4 -0
- package/src/icons/original/navigation/flag.svg +4 -0
- package/src/icons/original/navigation/flash-circle.svg +4 -0
- package/src/icons/original/navigation/flash-slash.svg +5 -0
- package/src/icons/original/navigation/flash.svg +3 -0
- package/src/icons/original/navigation/forbidden-2.svg +5 -0
- package/src/icons/original/navigation/forbidden.svg +4 -0
- package/src/icons/original/navigation/glass.svg +7 -0
- package/src/icons/original/navigation/happyemoji.svg +4 -0
- package/src/icons/original/navigation/home-2.svg +4 -0
- package/src/icons/original/navigation/home-wifi.svg +6 -0
- package/src/icons/original/navigation/home.svg +4 -0
- package/src/icons/original/navigation/info-circle.svg +5 -0
- package/src/icons/original/navigation/information.svg +5 -0
- package/src/icons/original/navigation/judge.svg +6 -0
- package/src/icons/original/navigation/lamp.svg +5 -0
- package/src/icons/original/navigation/level.svg +5 -0
- package/src/icons/original/navigation/menu.svg +5 -0
- package/src/icons/original/navigation/minus-cirlce.svg +4 -0
- package/src/icons/original/navigation/minus-square.svg +4 -0
- package/src/icons/original/navigation/minus.svg +3 -0
- package/src/icons/original/navigation/mirror.svg +4 -0
- package/src/icons/original/navigation/more-circle.svg +6 -0
- package/src/icons/original/navigation/more-square.svg +6 -0
- package/src/icons/original/navigation/mouse-circle.svg +4 -0
- package/src/icons/original/navigation/mouse-square.svg +4 -0
- package/src/icons/original/navigation/pet.svg +7 -0
- package/src/icons/original/navigation/ranking.svg +6 -0
- package/src/icons/original/navigation/reserve.svg +6 -0
- package/src/icons/original/navigation/send-2.svg +4 -0
- package/src/icons/original/navigation/send.svg +4 -0
- package/src/icons/original/navigation/share.svg +8 -0
- package/src/icons/original/navigation/signpost.svg +7 -0
- package/src/icons/original/navigation/slash.svg +4 -0
- package/src/icons/original/navigation/sort.svg +5 -0
- package/src/icons/original/navigation/sound.svg +7 -0
- package/src/icons/original/navigation/status.svg +5 -0
- package/src/icons/original/navigation/sticker.svg +4 -0
- package/src/icons/original/navigation/tag-cross.svg +5 -0
- package/src/icons/original/navigation/tag-right.svg +3 -0
- package/src/icons/original/navigation/tick-circle.svg +4 -0
- package/src/icons/original/navigation/tick-square.svg +4 -0
- package/src/icons/original/navigation/trash.svg +7 -0
- package/src/icons/original/navigation/tree.svg +5 -0
- package/src/icons/original/navigation/triangle.svg +5 -0
- package/src/icons/original/navigation/trush-square.svg +6 -0
- package/src/icons/original/navigation/verify.svg +4 -0
- package/src/icons/original/navigation/warning-2.svg +5 -0
- package/src/icons/original/navigation/wifi-square.svg +6 -0
- package/src/icons/original/navigation/wifi.svg +6 -0
- package/src/icons/original/notifications/lamp-charge.svg +5 -0
- package/src/icons/original/notifications/lamp-on.svg +4 -0
- package/src/icons/original/notifications/lamp-slash.svg +6 -0
- package/src/icons/original/notifications/notification-1.svg +4 -0
- package/src/icons/original/notifications/notification-bing.svg +5 -0
- package/src/icons/original/notifications/notification-favorite.svg +5 -0
- package/src/icons/original/notifications/notification-status.svg +6 -0
- package/src/icons/original/notifications/notification.svg +5 -0
- package/src/icons/original/reactions/dislike.svg +4 -0
- package/src/icons/original/reactions/heart-slash.svg +5 -0
- package/src/icons/original/reactions/heart.svg +3 -0
- package/src/icons/original/reactions/like-shapes.svg +5 -0
- package/src/icons/original/reactions/like.svg +4 -0
- package/src/icons/original/reactions/magic-star.svg +4 -0
- package/src/icons/original/reactions/medal-star.svg +5 -0
- package/src/icons/original/reactions/medal.svg +4 -0
- package/src/icons/original/reactions/message-question.svg +5 -0
- package/src/icons/original/reactions/ranking.svg +6 -0
- package/src/icons/original/reactions/star-1.svg +6 -0
- package/src/icons/original/reactions/star-slash.svg +5 -0
- package/src/icons/original/reactions/star.svg +3 -0
- package/src/icons/original/search/search-normal.svg +4 -0
- package/src/icons/original/search/search-status.svg +6 -0
- package/src/icons/original/search/search-zoom-in.svg +6 -0
- package/src/icons/original/search/search-zoom-out.svg +5 -0
- package/src/icons/original/security/alarm.svg +7 -0
- package/src/icons/original/security/check.svg +6 -0
- package/src/icons/original/security/eye-slash.svg +8 -0
- package/src/icons/original/security/eye.svg +4 -0
- package/src/icons/original/security/finger-cricle.svg +5 -0
- package/src/icons/original/security/finger-scan.svg +8 -0
- package/src/icons/original/security/frame.svg +5 -0
- package/src/icons/original/security/key-square.svg +6 -0
- package/src/icons/original/security/key.svg +5 -0
- package/src/icons/original/security/lock-1.svg +7 -0
- package/src/icons/original/security/lock-circle.svg +6 -0
- package/src/icons/original/security/lock-slash.svg +6 -0
- package/src/icons/original/security/lock.svg +5 -0
- package/src/icons/original/security/password-check.svg +7 -0
- package/src/icons/original/security/radar.svg +7 -0
- package/src/icons/original/security/scan-barcode.svg +10 -0
- package/src/icons/original/security/scan.svg +8 -0
- package/src/icons/original/security/scanner.svg +5 -0
- package/src/icons/original/security/scanning.svg +10 -0
- package/src/icons/original/security/security-safe.svg +5 -0
- package/src/icons/original/security/security-user.svg +5 -0
- package/src/icons/original/security/security.svg +3 -0
- package/src/icons/original/security/shield-cross.svg +5 -0
- package/src/icons/original/security/shield-search.svg +5 -0
- package/src/icons/original/security/shield-slash.svg +5 -0
- package/src/icons/original/security/shield-tick.svg +4 -0
- package/src/icons/original/security/shield.svg +3 -0
- package/src/icons/original/security/unlock.svg +5 -0
- package/src/icons/original/settings/candle-2.svg +8 -0
- package/src/icons/original/settings/candle.svg +8 -0
- package/src/icons/original/settings/category.svg +6 -0
- package/src/icons/original/settings/more-2.svg +5 -0
- package/src/icons/original/settings/more.svg +5 -0
- package/src/icons/original/settings/setting-2.svg +4 -0
- package/src/icons/original/settings/setting-3.svg +9 -0
- package/src/icons/original/settings/setting-4.svg +8 -0
- package/src/icons/original/settings/setting-5.svg +11 -0
- package/src/icons/original/settings/setting.svg +4 -0
- package/src/icons/original/time/calendar-edit.svg +11 -0
- package/src/icons/original/time/calendar-search.svg +11 -0
- package/src/icons/original/time/calendar.svg +12 -0
- package/src/icons/original/time/clock.svg +4 -0
- package/src/icons/original/time/security-time.svg +5 -0
- package/src/icons/original/time/timer-pause.svg +7 -0
- package/src/icons/original/time/timer-start.svg +6 -0
- package/src/icons/original/time/timer.svg +5 -0
- package/src/icons/original/transport/airplane-square.svg +4 -0
- package/src/icons/original/transport/airplane.svg +3 -0
- package/src/icons/original/transport/bus.svg +7 -0
- package/src/icons/original/transport/car.svg +10 -0
- package/src/icons/original/transport/driving.svg +12 -0
- package/src/icons/original/transport/gas-station.svg +7 -0
- package/src/icons/original/transport/ship.svg +6 -0
- package/src/icons/original/transport/smart-car.svg +10 -0
- package/src/icons/original/users/User.svg +4 -0
- package/src/icons/original/users/people.svg +8 -0
- package/src/icons/original/users/profile-2user.svg +6 -0
- package/src/icons/original/users/profile-add.svg +6 -0
- package/src/icons/original/users/profile-circle.svg +5 -0
- package/src/icons/original/users/profile-delete.svg +6 -0
- package/src/icons/original/users/profile-remove.svg +5 -0
- package/src/icons/original/users/profile-tick.svg +5 -0
- package/src/icons/original/users/tag-user.svg +5 -0
- package/src/icons/original/users/user-add.svg +7 -0
- package/src/icons/original/users/user-cirlce-add.svg +8 -0
- package/src/icons/original/users/user-edit.svg +6 -0
- package/src/icons/original/users/user-minus.svg +6 -0
- package/src/icons/original/users/user-octagon.svg +5 -0
- package/src/icons/original/users/user-remove.svg +7 -0
- package/src/icons/original/users/user-search.svg +6 -0
- package/src/icons/original/users/user-square.svg +5 -0
- package/src/icons/original/users/user-tag.svg +5 -0
- package/src/icons/original/users/user-tick.svg +6 -0
- package/src/icons/reactions/dislike.svg +1 -0
- package/src/icons/reactions/heart-slash.svg +1 -0
- package/src/icons/reactions/heart.svg +1 -0
- package/src/icons/reactions/like-shapes.svg +1 -0
- package/src/icons/reactions/like.svg +1 -0
- package/src/icons/reactions/magic-star.svg +1 -0
- package/src/icons/reactions/medal-star.svg +1 -0
- package/src/icons/reactions/medal.svg +1 -0
- package/src/icons/reactions/message-question.svg +1 -0
- package/src/icons/reactions/ranking.svg +1 -0
- package/src/icons/reactions/star-1.svg +1 -0
- package/src/icons/reactions/star-slash.svg +1 -0
- package/src/icons/reactions/star.svg +1 -0
- package/src/icons/search/search-normal.svg +1 -0
- package/src/icons/search/search-status.svg +1 -0
- package/src/icons/search/search-zoom-in.svg +1 -0
- package/src/icons/search/search-zoom-out.svg +1 -0
- package/src/icons/security/alarm.svg +1 -0
- package/src/icons/security/check.svg +1 -0
- package/src/icons/security/eye-slash.svg +1 -0
- package/src/icons/security/eye.svg +1 -0
- package/src/icons/security/finger-cricle.svg +1 -0
- package/src/icons/security/finger-scan.svg +1 -0
- package/src/icons/security/frame.svg +1 -0
- package/src/icons/security/key-square.svg +1 -0
- package/src/icons/security/key.svg +1 -0
- package/src/icons/security/lock-1.svg +1 -0
- package/src/icons/security/lock-circle.svg +1 -0
- package/src/icons/security/lock-slash.svg +1 -0
- package/src/icons/security/lock.svg +1 -0
- package/src/icons/security/password-check.svg +1 -0
- package/src/icons/security/radar.svg +1 -0
- package/src/icons/security/scan-barcode.svg +1 -0
- package/src/icons/security/scan.svg +1 -0
- package/src/icons/security/scanner.svg +1 -0
- package/src/icons/security/scanning.svg +1 -0
- package/src/icons/security/security-safe.svg +1 -0
- package/src/icons/security/security-user.svg +1 -0
- package/src/icons/security/security.svg +1 -0
- package/src/icons/security/shield-cross.svg +1 -0
- package/src/icons/security/shield-search.svg +1 -0
- package/src/icons/security/shield-slash.svg +1 -0
- package/src/icons/security/shield-tick.svg +1 -0
- package/src/icons/security/shield.svg +1 -0
- package/src/icons/security/unlock.svg +1 -0
- package/src/icons/settings/candle-2.svg +1 -0
- package/src/icons/settings/candle.svg +1 -0
- package/src/icons/settings/category.svg +1 -0
- package/src/icons/settings/more-2.svg +1 -0
- package/src/icons/settings/more.svg +1 -0
- package/src/icons/settings/setting-2.svg +1 -0
- package/src/icons/settings/setting-3.svg +1 -0
- package/src/icons/settings/setting-4.svg +1 -0
- package/src/icons/settings/setting-5.svg +1 -0
- package/src/icons/settings/setting.svg +1 -0
- package/src/icons/time/calendar-edit.svg +1 -0
- package/src/icons/time/calendar-search.svg +1 -0
- package/src/icons/time/calendar.svg +1 -0
- package/src/icons/time/clock.svg +1 -0
- package/src/icons/time/security-time.svg +1 -0
- package/src/icons/time/timer-pause.svg +1 -0
- package/src/icons/time/timer-start.svg +1 -0
- package/src/icons/time/timer.svg +1 -0
- package/src/icons/transport/airplane-square.svg +1 -0
- package/src/icons/transport/airplane.svg +1 -0
- package/src/icons/transport/bus.svg +1 -0
- package/src/icons/transport/car.svg +1 -0
- package/src/icons/transport/driving.svg +1 -0
- package/src/icons/transport/gas-station.svg +1 -0
- package/src/icons/transport/ship.svg +1 -0
- package/src/icons/transport/smart-car.svg +1 -0
- package/src/icons/users/User.svg +1 -0
- package/src/icons/users/people.svg +1 -0
- package/src/icons/users/profile-2user.svg +1 -0
- package/src/icons/users/profile-add.svg +1 -0
- package/src/icons/users/profile-circle.svg +1 -0
- package/src/icons/users/profile-delete.svg +1 -0
- package/src/icons/users/profile-remove.svg +1 -0
- package/src/icons/users/profile-tick.svg +1 -0
- package/src/icons/users/tag-user.svg +1 -0
- package/src/icons/users/user-add.svg +1 -0
- package/src/icons/users/user-cirlce-add.svg +1 -0
- package/src/icons/users/user-edit.svg +1 -0
- package/src/icons/users/user-minus.svg +1 -0
- package/src/icons/users/user-octagon.svg +1 -0
- package/src/icons/users/user-remove.svg +1 -0
- package/src/icons/users/user-search.svg +1 -0
- package/src/icons/users/user-square.svg +1 -0
- package/src/icons/users/user-tag.svg +1 -0
- package/src/icons/users/user-tick.svg +1 -0
- package/src/index.ts +9 -0
- package/src/molecules/accordion/accordion.tsx +114 -0
- package/src/molecules/accordion/index.ts +1 -0
- package/src/molecules/alert/alert.tsx +129 -0
- package/src/molecules/alert/index.ts +1 -0
- package/src/molecules/card/card.tsx +76 -0
- package/src/molecules/card/index.ts +1 -0
- package/src/molecules/dropdown/dropdown.tsx +202 -0
- package/src/molecules/dropdown/index.ts +1 -0
- package/src/molecules/form/form.tsx +93 -0
- package/src/molecules/form/index.ts +1 -0
- package/src/molecules/index.ts +8 -0
- package/src/molecules/progress-bar/index.ts +1 -0
- package/src/molecules/progress-bar/progress-bar.tsx +99 -0
- package/src/molecules/stepper/index.ts +1 -0
- package/src/molecules/stepper/stepper.tsx +327 -0
- package/src/molecules/tabs/index.ts +1 -0
- package/src/molecules/tabs/tabs.tsx +59 -0
- package/src/organisms/Modal.tsx +18 -0
- package/src/organisms/index.ts +1 -0
- package/src/styles/globals.css +404 -0
- package/src/templates/AuthLayout.tsx +13 -0
- package/src/templates/index.ts +1 -0
- package/src/theme/ThemeProvider.tsx +27 -0
- package/src/theme/index.ts +2 -0
- package/src/theme/useTheme.ts +1 -0
- package/src/tokens/badge.ts +39 -0
- package/src/tokens/buttons.ts +234 -0
- package/src/tokens/colors.ts +63 -0
- package/src/tokens/effects.ts +167 -0
- package/src/tokens/grids.ts +342 -0
- package/src/tokens/icon-svg-content.ts +504 -0
- package/src/tokens/icons.ts +675 -0
- package/src/tokens/index.ts +6 -0
- package/src/tokens/progress-bar.ts +32 -0
- package/src/tokens/spacing.ts +120 -0
- package/src/tokens/stroke.ts +253 -0
- package/src/tokens/tab.ts +33 -0
- package/src/tokens/tag.ts +53 -0
- package/src/tokens/typography.ts +309 -0
- package/src/types/component_types.ts +1 -0
- package/src/types/index.ts +1 -0
- package/src/utils/classNames.ts +3 -0
- package/src/utils/cn.ts +6 -0
- package/src/utils/index.ts +2 -0
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,2351 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React$1 from 'react';
|
|
3
|
+
import React__default, { ReactNode } from 'react';
|
|
4
|
+
import { ClassValue } from 'clsx';
|
|
5
|
+
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
6
|
+
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
7
|
+
import { VariantProps } from 'class-variance-authority';
|
|
8
|
+
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
9
|
+
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
10
|
+
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
11
|
+
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
12
|
+
|
|
13
|
+
declare const colors: {
|
|
14
|
+
primary: {
|
|
15
|
+
100: string;
|
|
16
|
+
200: string;
|
|
17
|
+
300: string;
|
|
18
|
+
400: string;
|
|
19
|
+
500: string;
|
|
20
|
+
600: string;
|
|
21
|
+
700: string;
|
|
22
|
+
800: string;
|
|
23
|
+
900: string;
|
|
24
|
+
1000: string;
|
|
25
|
+
1100: string;
|
|
26
|
+
1200: string;
|
|
27
|
+
};
|
|
28
|
+
secondary: {
|
|
29
|
+
100: string;
|
|
30
|
+
200: string;
|
|
31
|
+
300: string;
|
|
32
|
+
400: string;
|
|
33
|
+
500: string;
|
|
34
|
+
600: string;
|
|
35
|
+
700: string;
|
|
36
|
+
800: string;
|
|
37
|
+
900: string;
|
|
38
|
+
1000: string;
|
|
39
|
+
1100: string;
|
|
40
|
+
1200: string;
|
|
41
|
+
};
|
|
42
|
+
neutral: {
|
|
43
|
+
500: string;
|
|
44
|
+
400: string;
|
|
45
|
+
300: string;
|
|
46
|
+
200: string;
|
|
47
|
+
100: string;
|
|
48
|
+
10: string;
|
|
49
|
+
20: string;
|
|
50
|
+
30: string;
|
|
51
|
+
};
|
|
52
|
+
red: {
|
|
53
|
+
600: string;
|
|
54
|
+
500: string;
|
|
55
|
+
400: string;
|
|
56
|
+
300: string;
|
|
57
|
+
200: string;
|
|
58
|
+
100: string;
|
|
59
|
+
};
|
|
60
|
+
yellow: {
|
|
61
|
+
300: string;
|
|
62
|
+
200: string;
|
|
63
|
+
100: string;
|
|
64
|
+
10: string;
|
|
65
|
+
};
|
|
66
|
+
green: {
|
|
67
|
+
600: string;
|
|
68
|
+
500: string;
|
|
69
|
+
400: string;
|
|
70
|
+
300: string;
|
|
71
|
+
200: string;
|
|
72
|
+
100: string;
|
|
73
|
+
10: string;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Raya Design System - Typography Tokens
|
|
79
|
+
* Font Family: Rubik
|
|
80
|
+
* Based on the official Raya typography system palette from Figma
|
|
81
|
+
*/
|
|
82
|
+
declare const typography: {
|
|
83
|
+
fontFamily: {
|
|
84
|
+
primary: string[];
|
|
85
|
+
};
|
|
86
|
+
fontWeight: {
|
|
87
|
+
light: number;
|
|
88
|
+
regular: number;
|
|
89
|
+
medium: number;
|
|
90
|
+
semibold: number;
|
|
91
|
+
bold: number;
|
|
92
|
+
};
|
|
93
|
+
fontSize: {
|
|
94
|
+
display: {
|
|
95
|
+
l: string;
|
|
96
|
+
};
|
|
97
|
+
heading: {
|
|
98
|
+
xl: string;
|
|
99
|
+
lg: string;
|
|
100
|
+
md: string;
|
|
101
|
+
sm: string;
|
|
102
|
+
};
|
|
103
|
+
subheading: {
|
|
104
|
+
lg: string;
|
|
105
|
+
md: string;
|
|
106
|
+
sm: string;
|
|
107
|
+
};
|
|
108
|
+
body: {
|
|
109
|
+
'bold-lg': string;
|
|
110
|
+
'bold-md': string;
|
|
111
|
+
'bold-sm': string;
|
|
112
|
+
'bold-xs': string;
|
|
113
|
+
lg: string;
|
|
114
|
+
md: string;
|
|
115
|
+
sm: string;
|
|
116
|
+
xs: string;
|
|
117
|
+
};
|
|
118
|
+
caption: {
|
|
119
|
+
c1: string;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
lineHeight: {
|
|
123
|
+
display: {
|
|
124
|
+
l: string;
|
|
125
|
+
};
|
|
126
|
+
heading: {
|
|
127
|
+
xl: string;
|
|
128
|
+
lg: string;
|
|
129
|
+
md: string;
|
|
130
|
+
sm: string;
|
|
131
|
+
};
|
|
132
|
+
subheading: {
|
|
133
|
+
lg: string;
|
|
134
|
+
md: string;
|
|
135
|
+
sm: string;
|
|
136
|
+
};
|
|
137
|
+
body: {
|
|
138
|
+
lg: string;
|
|
139
|
+
md: string;
|
|
140
|
+
sm: string;
|
|
141
|
+
xs: string;
|
|
142
|
+
};
|
|
143
|
+
caption: {
|
|
144
|
+
c1: string;
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
letterSpacing: {
|
|
148
|
+
normal: string;
|
|
149
|
+
caption: string;
|
|
150
|
+
};
|
|
151
|
+
presets: {
|
|
152
|
+
'display-l': {
|
|
153
|
+
fontSize: string;
|
|
154
|
+
lineHeight: string;
|
|
155
|
+
fontWeight: number;
|
|
156
|
+
letterSpacing: string;
|
|
157
|
+
};
|
|
158
|
+
'heading-xl': {
|
|
159
|
+
fontSize: string;
|
|
160
|
+
lineHeight: string;
|
|
161
|
+
fontWeight: number;
|
|
162
|
+
letterSpacing: string;
|
|
163
|
+
};
|
|
164
|
+
'heading-lg': {
|
|
165
|
+
fontSize: string;
|
|
166
|
+
lineHeight: string;
|
|
167
|
+
fontWeight: number;
|
|
168
|
+
letterSpacing: string;
|
|
169
|
+
};
|
|
170
|
+
'heading-md': {
|
|
171
|
+
fontSize: string;
|
|
172
|
+
lineHeight: string;
|
|
173
|
+
fontWeight: number;
|
|
174
|
+
letterSpacing: string;
|
|
175
|
+
};
|
|
176
|
+
'heading-sm': {
|
|
177
|
+
fontSize: string;
|
|
178
|
+
lineHeight: string;
|
|
179
|
+
fontWeight: number;
|
|
180
|
+
letterSpacing: string;
|
|
181
|
+
};
|
|
182
|
+
'subheading-lg': {
|
|
183
|
+
fontSize: string;
|
|
184
|
+
lineHeight: string;
|
|
185
|
+
fontWeight: number;
|
|
186
|
+
letterSpacing: string;
|
|
187
|
+
};
|
|
188
|
+
'subheading-md': {
|
|
189
|
+
fontSize: string;
|
|
190
|
+
lineHeight: string;
|
|
191
|
+
fontWeight: number;
|
|
192
|
+
letterSpacing: string;
|
|
193
|
+
};
|
|
194
|
+
'subheading-sm': {
|
|
195
|
+
fontSize: string;
|
|
196
|
+
lineHeight: string;
|
|
197
|
+
fontWeight: number;
|
|
198
|
+
letterSpacing: string;
|
|
199
|
+
};
|
|
200
|
+
'body-bold-lg': {
|
|
201
|
+
fontSize: string;
|
|
202
|
+
lineHeight: string;
|
|
203
|
+
fontWeight: number;
|
|
204
|
+
letterSpacing: string;
|
|
205
|
+
};
|
|
206
|
+
'body-bold-md': {
|
|
207
|
+
fontSize: string;
|
|
208
|
+
lineHeight: string;
|
|
209
|
+
fontWeight: number;
|
|
210
|
+
letterSpacing: string;
|
|
211
|
+
};
|
|
212
|
+
'body-bold-sm': {
|
|
213
|
+
fontSize: string;
|
|
214
|
+
lineHeight: string;
|
|
215
|
+
fontWeight: number;
|
|
216
|
+
letterSpacing: string;
|
|
217
|
+
};
|
|
218
|
+
'body-bold-xs': {
|
|
219
|
+
fontSize: string;
|
|
220
|
+
lineHeight: string;
|
|
221
|
+
fontWeight: number;
|
|
222
|
+
letterSpacing: string;
|
|
223
|
+
};
|
|
224
|
+
'body-lg': {
|
|
225
|
+
fontSize: string;
|
|
226
|
+
lineHeight: string;
|
|
227
|
+
fontWeight: number;
|
|
228
|
+
letterSpacing: string;
|
|
229
|
+
};
|
|
230
|
+
'body-md': {
|
|
231
|
+
fontSize: string;
|
|
232
|
+
lineHeight: string;
|
|
233
|
+
fontWeight: number;
|
|
234
|
+
letterSpacing: string;
|
|
235
|
+
};
|
|
236
|
+
'body-sm': {
|
|
237
|
+
fontSize: string;
|
|
238
|
+
lineHeight: string;
|
|
239
|
+
fontWeight: number;
|
|
240
|
+
letterSpacing: string;
|
|
241
|
+
};
|
|
242
|
+
'body-xs': {
|
|
243
|
+
fontSize: string;
|
|
244
|
+
lineHeight: string;
|
|
245
|
+
fontWeight: number;
|
|
246
|
+
letterSpacing: string;
|
|
247
|
+
};
|
|
248
|
+
'caption-c1': {
|
|
249
|
+
fontSize: string;
|
|
250
|
+
lineHeight: string;
|
|
251
|
+
fontWeight: number;
|
|
252
|
+
letterSpacing: string;
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
declare const typographyVars: {
|
|
257
|
+
'--font-primary': string;
|
|
258
|
+
'--font-weight-light': number;
|
|
259
|
+
'--font-weight-regular': number;
|
|
260
|
+
'--font-weight-medium': number;
|
|
261
|
+
'--font-weight-semibold': number;
|
|
262
|
+
'--font-weight-bold': number;
|
|
263
|
+
'--text-display-l': string;
|
|
264
|
+
'--text-heading-xl': string;
|
|
265
|
+
'--text-heading-lg': string;
|
|
266
|
+
'--text-heading-md': string;
|
|
267
|
+
'--text-heading-sm': string;
|
|
268
|
+
'--text-subheading-lg': string;
|
|
269
|
+
'--text-subheading-md': string;
|
|
270
|
+
'--text-subheading-sm': string;
|
|
271
|
+
'--text-body-bold-lg': string;
|
|
272
|
+
'--text-body-bold-md': string;
|
|
273
|
+
'--text-body-bold-sm': string;
|
|
274
|
+
'--text-body-bold-xs': string;
|
|
275
|
+
'--text-body-lg': string;
|
|
276
|
+
'--text-body-md': string;
|
|
277
|
+
'--text-body-sm': string;
|
|
278
|
+
'--text-body-xs': string;
|
|
279
|
+
'--text-caption-c1': string;
|
|
280
|
+
'--leading-display-l': string;
|
|
281
|
+
'--leading-heading-xl': string;
|
|
282
|
+
'--leading-heading-lg': string;
|
|
283
|
+
'--leading-heading-md': string;
|
|
284
|
+
'--leading-heading-sm': string;
|
|
285
|
+
'--leading-subheading-lg': string;
|
|
286
|
+
'--leading-subheading-md': string;
|
|
287
|
+
'--leading-subheading-sm': string;
|
|
288
|
+
'--leading-body-lg': string;
|
|
289
|
+
'--leading-body-md': string;
|
|
290
|
+
'--leading-body-sm': string;
|
|
291
|
+
'--leading-body-xs': string;
|
|
292
|
+
'--leading-caption-c1': string;
|
|
293
|
+
'--tracking-normal': string;
|
|
294
|
+
'--tracking-caption': string;
|
|
295
|
+
};
|
|
296
|
+
declare const generateTypographyCSS: () => string;
|
|
297
|
+
declare const fontFamily: {
|
|
298
|
+
primary: string[];
|
|
299
|
+
};
|
|
300
|
+
declare const fontWeight: {
|
|
301
|
+
light: number;
|
|
302
|
+
regular: number;
|
|
303
|
+
medium: number;
|
|
304
|
+
semibold: number;
|
|
305
|
+
bold: number;
|
|
306
|
+
};
|
|
307
|
+
declare const fontSize: {
|
|
308
|
+
display: {
|
|
309
|
+
l: string;
|
|
310
|
+
};
|
|
311
|
+
heading: {
|
|
312
|
+
xl: string;
|
|
313
|
+
lg: string;
|
|
314
|
+
md: string;
|
|
315
|
+
sm: string;
|
|
316
|
+
};
|
|
317
|
+
subheading: {
|
|
318
|
+
lg: string;
|
|
319
|
+
md: string;
|
|
320
|
+
sm: string;
|
|
321
|
+
};
|
|
322
|
+
body: {
|
|
323
|
+
'bold-lg': string;
|
|
324
|
+
'bold-md': string;
|
|
325
|
+
'bold-sm': string;
|
|
326
|
+
'bold-xs': string;
|
|
327
|
+
lg: string;
|
|
328
|
+
md: string;
|
|
329
|
+
sm: string;
|
|
330
|
+
xs: string;
|
|
331
|
+
};
|
|
332
|
+
caption: {
|
|
333
|
+
c1: string;
|
|
334
|
+
};
|
|
335
|
+
};
|
|
336
|
+
declare const lineHeight: {
|
|
337
|
+
display: {
|
|
338
|
+
l: string;
|
|
339
|
+
};
|
|
340
|
+
heading: {
|
|
341
|
+
xl: string;
|
|
342
|
+
lg: string;
|
|
343
|
+
md: string;
|
|
344
|
+
sm: string;
|
|
345
|
+
};
|
|
346
|
+
subheading: {
|
|
347
|
+
lg: string;
|
|
348
|
+
md: string;
|
|
349
|
+
sm: string;
|
|
350
|
+
};
|
|
351
|
+
body: {
|
|
352
|
+
lg: string;
|
|
353
|
+
md: string;
|
|
354
|
+
sm: string;
|
|
355
|
+
xs: string;
|
|
356
|
+
};
|
|
357
|
+
caption: {
|
|
358
|
+
c1: string;
|
|
359
|
+
};
|
|
360
|
+
};
|
|
361
|
+
declare const letterSpacing: {
|
|
362
|
+
normal: string;
|
|
363
|
+
caption: string;
|
|
364
|
+
};
|
|
365
|
+
declare const presets: {
|
|
366
|
+
'display-l': {
|
|
367
|
+
fontSize: string;
|
|
368
|
+
lineHeight: string;
|
|
369
|
+
fontWeight: number;
|
|
370
|
+
letterSpacing: string;
|
|
371
|
+
};
|
|
372
|
+
'heading-xl': {
|
|
373
|
+
fontSize: string;
|
|
374
|
+
lineHeight: string;
|
|
375
|
+
fontWeight: number;
|
|
376
|
+
letterSpacing: string;
|
|
377
|
+
};
|
|
378
|
+
'heading-lg': {
|
|
379
|
+
fontSize: string;
|
|
380
|
+
lineHeight: string;
|
|
381
|
+
fontWeight: number;
|
|
382
|
+
letterSpacing: string;
|
|
383
|
+
};
|
|
384
|
+
'heading-md': {
|
|
385
|
+
fontSize: string;
|
|
386
|
+
lineHeight: string;
|
|
387
|
+
fontWeight: number;
|
|
388
|
+
letterSpacing: string;
|
|
389
|
+
};
|
|
390
|
+
'heading-sm': {
|
|
391
|
+
fontSize: string;
|
|
392
|
+
lineHeight: string;
|
|
393
|
+
fontWeight: number;
|
|
394
|
+
letterSpacing: string;
|
|
395
|
+
};
|
|
396
|
+
'subheading-lg': {
|
|
397
|
+
fontSize: string;
|
|
398
|
+
lineHeight: string;
|
|
399
|
+
fontWeight: number;
|
|
400
|
+
letterSpacing: string;
|
|
401
|
+
};
|
|
402
|
+
'subheading-md': {
|
|
403
|
+
fontSize: string;
|
|
404
|
+
lineHeight: string;
|
|
405
|
+
fontWeight: number;
|
|
406
|
+
letterSpacing: string;
|
|
407
|
+
};
|
|
408
|
+
'subheading-sm': {
|
|
409
|
+
fontSize: string;
|
|
410
|
+
lineHeight: string;
|
|
411
|
+
fontWeight: number;
|
|
412
|
+
letterSpacing: string;
|
|
413
|
+
};
|
|
414
|
+
'body-bold-lg': {
|
|
415
|
+
fontSize: string;
|
|
416
|
+
lineHeight: string;
|
|
417
|
+
fontWeight: number;
|
|
418
|
+
letterSpacing: string;
|
|
419
|
+
};
|
|
420
|
+
'body-bold-md': {
|
|
421
|
+
fontSize: string;
|
|
422
|
+
lineHeight: string;
|
|
423
|
+
fontWeight: number;
|
|
424
|
+
letterSpacing: string;
|
|
425
|
+
};
|
|
426
|
+
'body-bold-sm': {
|
|
427
|
+
fontSize: string;
|
|
428
|
+
lineHeight: string;
|
|
429
|
+
fontWeight: number;
|
|
430
|
+
letterSpacing: string;
|
|
431
|
+
};
|
|
432
|
+
'body-bold-xs': {
|
|
433
|
+
fontSize: string;
|
|
434
|
+
lineHeight: string;
|
|
435
|
+
fontWeight: number;
|
|
436
|
+
letterSpacing: string;
|
|
437
|
+
};
|
|
438
|
+
'body-lg': {
|
|
439
|
+
fontSize: string;
|
|
440
|
+
lineHeight: string;
|
|
441
|
+
fontWeight: number;
|
|
442
|
+
letterSpacing: string;
|
|
443
|
+
};
|
|
444
|
+
'body-md': {
|
|
445
|
+
fontSize: string;
|
|
446
|
+
lineHeight: string;
|
|
447
|
+
fontWeight: number;
|
|
448
|
+
letterSpacing: string;
|
|
449
|
+
};
|
|
450
|
+
'body-sm': {
|
|
451
|
+
fontSize: string;
|
|
452
|
+
lineHeight: string;
|
|
453
|
+
fontWeight: number;
|
|
454
|
+
letterSpacing: string;
|
|
455
|
+
};
|
|
456
|
+
'body-xs': {
|
|
457
|
+
fontSize: string;
|
|
458
|
+
lineHeight: string;
|
|
459
|
+
fontWeight: number;
|
|
460
|
+
letterSpacing: string;
|
|
461
|
+
};
|
|
462
|
+
'caption-c1': {
|
|
463
|
+
fontSize: string;
|
|
464
|
+
lineHeight: string;
|
|
465
|
+
fontWeight: number;
|
|
466
|
+
letterSpacing: string;
|
|
467
|
+
};
|
|
468
|
+
};
|
|
469
|
+
|
|
470
|
+
/**
|
|
471
|
+
* Raya Design System - Spacing Tokens
|
|
472
|
+
*
|
|
473
|
+
* Spacing system based on 4px base unit with mathematical progression
|
|
474
|
+
* for consistent spatial relationships across all components.
|
|
475
|
+
*/
|
|
476
|
+
declare const spacing: {
|
|
477
|
+
readonly base: "0.25rem";
|
|
478
|
+
readonly xs: "0.25rem";
|
|
479
|
+
readonly s: "0.5rem";
|
|
480
|
+
readonly m: "1rem";
|
|
481
|
+
readonly l: "1.5rem";
|
|
482
|
+
readonly xl: "2rem";
|
|
483
|
+
readonly '2xl': "2.5rem";
|
|
484
|
+
readonly '3xl': "3rem";
|
|
485
|
+
readonly '4xl': "3.5rem";
|
|
486
|
+
};
|
|
487
|
+
type SpacingToken = keyof typeof spacing;
|
|
488
|
+
/**
|
|
489
|
+
* Spacing values in pixels for calculations and documentation
|
|
490
|
+
*/
|
|
491
|
+
declare const spacingPx: {
|
|
492
|
+
readonly base: 4;
|
|
493
|
+
readonly xs: 4;
|
|
494
|
+
readonly s: 8;
|
|
495
|
+
readonly m: 16;
|
|
496
|
+
readonly l: 24;
|
|
497
|
+
readonly xl: 32;
|
|
498
|
+
readonly '2xl': 40;
|
|
499
|
+
readonly '3xl': 48;
|
|
500
|
+
readonly '4xl': 56;
|
|
501
|
+
};
|
|
502
|
+
/**
|
|
503
|
+
* Pre-composed spacing styles for common use cases
|
|
504
|
+
*/
|
|
505
|
+
declare const spacingStyles: {
|
|
506
|
+
readonly buttonPadding: {
|
|
507
|
+
readonly small: "0.25rem 0.5rem";
|
|
508
|
+
readonly medium: "0.5rem 1rem";
|
|
509
|
+
readonly large: "1rem 1.5rem";
|
|
510
|
+
};
|
|
511
|
+
readonly cardPadding: {
|
|
512
|
+
readonly compact: "1rem";
|
|
513
|
+
readonly comfortable: "1.5rem";
|
|
514
|
+
readonly spacious: "2rem";
|
|
515
|
+
};
|
|
516
|
+
readonly formSpacing: {
|
|
517
|
+
readonly fieldGap: "1rem";
|
|
518
|
+
readonly labelGap: "0.25rem";
|
|
519
|
+
readonly helpGap: "0.25rem";
|
|
520
|
+
};
|
|
521
|
+
readonly layoutSpacing: {
|
|
522
|
+
readonly sectionGap: "2.5rem";
|
|
523
|
+
readonly componentGap: "2rem";
|
|
524
|
+
readonly elementGap: "1rem";
|
|
525
|
+
};
|
|
526
|
+
readonly gridGap: {
|
|
527
|
+
readonly tight: "0.5rem";
|
|
528
|
+
readonly normal: "1rem";
|
|
529
|
+
readonly comfortable: "1.5rem";
|
|
530
|
+
readonly loose: "2rem";
|
|
531
|
+
};
|
|
532
|
+
};
|
|
533
|
+
/**
|
|
534
|
+
* Utility function to get spacing value
|
|
535
|
+
*/
|
|
536
|
+
declare const getSpacing: (token: SpacingToken) => string;
|
|
537
|
+
/**
|
|
538
|
+
* Utility function to get spacing value in pixels
|
|
539
|
+
*/
|
|
540
|
+
declare const getSpacingPx: (token: SpacingToken) => number;
|
|
541
|
+
/**
|
|
542
|
+
* Generate CSS custom properties for spacing
|
|
543
|
+
*/
|
|
544
|
+
declare const generateSpacingCSS: () => string;
|
|
545
|
+
/**
|
|
546
|
+
* Spacing tokens for Tailwind CSS configuration
|
|
547
|
+
*/
|
|
548
|
+
declare const tailwindSpacing: {
|
|
549
|
+
readonly xs: "var(--spacing-xs)";
|
|
550
|
+
readonly s: "var(--spacing-s)";
|
|
551
|
+
readonly m: "var(--spacing-m)";
|
|
552
|
+
readonly l: "var(--spacing-l)";
|
|
553
|
+
readonly xl: "var(--spacing-xl)";
|
|
554
|
+
readonly '2xl': "var(--spacing-2xl)";
|
|
555
|
+
readonly '3xl': "var(--spacing-3xl)";
|
|
556
|
+
readonly '4xl': "var(--spacing-4xl)";
|
|
557
|
+
};
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* Raya Design System - Stroke Tokens
|
|
561
|
+
*
|
|
562
|
+
* Stroke system for defining element outlines and providing visual hierarchy
|
|
563
|
+
* through consistent border treatments.
|
|
564
|
+
*/
|
|
565
|
+
declare const stroke: {
|
|
566
|
+
readonly 1: "1px";
|
|
567
|
+
readonly 2: "2px";
|
|
568
|
+
};
|
|
569
|
+
type StrokeToken = keyof typeof stroke;
|
|
570
|
+
/**
|
|
571
|
+
* Stroke colors using design system color tokens
|
|
572
|
+
*/
|
|
573
|
+
declare const strokeColors: {
|
|
574
|
+
readonly default: "hsl(var(--border))";
|
|
575
|
+
readonly muted: "hsl(var(--muted))";
|
|
576
|
+
readonly primary: "hsl(var(--primary))";
|
|
577
|
+
readonly secondary: "hsl(var(--secondary))";
|
|
578
|
+
readonly destructive: "hsl(var(--destructive))";
|
|
579
|
+
readonly focus: "hsl(var(--ring))";
|
|
580
|
+
readonly transparent: "transparent";
|
|
581
|
+
};
|
|
582
|
+
type StrokeColorToken = keyof typeof strokeColors;
|
|
583
|
+
/**
|
|
584
|
+
* Pre-composed stroke styles for common use cases
|
|
585
|
+
*/
|
|
586
|
+
declare const strokeStyles: {
|
|
587
|
+
readonly default: {
|
|
588
|
+
readonly width: "1px";
|
|
589
|
+
readonly color: "hsl(var(--border))";
|
|
590
|
+
readonly style: "solid";
|
|
591
|
+
};
|
|
592
|
+
readonly emphasized: {
|
|
593
|
+
readonly width: "2px";
|
|
594
|
+
readonly color: "hsl(var(--border))";
|
|
595
|
+
readonly style: "solid";
|
|
596
|
+
};
|
|
597
|
+
readonly focus: {
|
|
598
|
+
readonly width: "2px";
|
|
599
|
+
readonly color: "hsl(var(--ring))";
|
|
600
|
+
readonly style: "solid";
|
|
601
|
+
};
|
|
602
|
+
readonly hover: {
|
|
603
|
+
readonly width: "2px";
|
|
604
|
+
readonly color: "hsl(var(--primary))";
|
|
605
|
+
readonly style: "solid";
|
|
606
|
+
};
|
|
607
|
+
readonly primary: {
|
|
608
|
+
readonly width: "1px";
|
|
609
|
+
readonly color: "hsl(var(--primary))";
|
|
610
|
+
readonly style: "solid";
|
|
611
|
+
};
|
|
612
|
+
readonly primaryEmphasized: {
|
|
613
|
+
readonly width: "2px";
|
|
614
|
+
readonly color: "hsl(var(--primary))";
|
|
615
|
+
readonly style: "solid";
|
|
616
|
+
};
|
|
617
|
+
readonly destructive: {
|
|
618
|
+
readonly width: "1px";
|
|
619
|
+
readonly color: "hsl(var(--destructive))";
|
|
620
|
+
readonly style: "solid";
|
|
621
|
+
};
|
|
622
|
+
readonly destructiveEmphasized: {
|
|
623
|
+
readonly width: "2px";
|
|
624
|
+
readonly color: "hsl(var(--destructive))";
|
|
625
|
+
readonly style: "solid";
|
|
626
|
+
};
|
|
627
|
+
readonly muted: {
|
|
628
|
+
readonly width: "1px";
|
|
629
|
+
readonly color: "hsl(var(--muted))";
|
|
630
|
+
readonly style: "solid";
|
|
631
|
+
};
|
|
632
|
+
readonly transparent: {
|
|
633
|
+
readonly width: "1px";
|
|
634
|
+
readonly color: "transparent";
|
|
635
|
+
readonly style: "solid";
|
|
636
|
+
};
|
|
637
|
+
};
|
|
638
|
+
/**
|
|
639
|
+
* Component-specific stroke configurations
|
|
640
|
+
*/
|
|
641
|
+
declare const componentStrokes: {
|
|
642
|
+
readonly button: {
|
|
643
|
+
readonly outline: {
|
|
644
|
+
readonly width: "1px";
|
|
645
|
+
readonly color: "hsl(var(--primary))";
|
|
646
|
+
readonly style: "solid";
|
|
647
|
+
};
|
|
648
|
+
readonly outlineHover: {
|
|
649
|
+
readonly width: "2px";
|
|
650
|
+
readonly color: "hsl(var(--primary))";
|
|
651
|
+
readonly style: "solid";
|
|
652
|
+
};
|
|
653
|
+
readonly outlineFocus: {
|
|
654
|
+
readonly width: "2px";
|
|
655
|
+
readonly color: "hsl(var(--ring))";
|
|
656
|
+
readonly style: "solid";
|
|
657
|
+
};
|
|
658
|
+
readonly destructiveOutline: {
|
|
659
|
+
readonly width: "1px";
|
|
660
|
+
readonly color: "hsl(var(--destructive))";
|
|
661
|
+
readonly style: "solid";
|
|
662
|
+
};
|
|
663
|
+
readonly destructiveOutlineHover: {
|
|
664
|
+
readonly width: "2px";
|
|
665
|
+
readonly color: "hsl(var(--destructive))";
|
|
666
|
+
readonly style: "solid";
|
|
667
|
+
};
|
|
668
|
+
};
|
|
669
|
+
readonly card: {
|
|
670
|
+
readonly default: {
|
|
671
|
+
readonly width: "1px";
|
|
672
|
+
readonly color: "hsl(var(--border))";
|
|
673
|
+
readonly style: "solid";
|
|
674
|
+
};
|
|
675
|
+
readonly emphasized: {
|
|
676
|
+
readonly width: "2px";
|
|
677
|
+
readonly color: "hsl(var(--border))";
|
|
678
|
+
readonly style: "solid";
|
|
679
|
+
};
|
|
680
|
+
readonly interactive: {
|
|
681
|
+
readonly width: "1px";
|
|
682
|
+
readonly color: "hsl(var(--border))";
|
|
683
|
+
readonly style: "solid";
|
|
684
|
+
};
|
|
685
|
+
readonly interactiveHover: {
|
|
686
|
+
readonly width: "2px";
|
|
687
|
+
readonly color: "hsl(var(--primary))";
|
|
688
|
+
readonly style: "solid";
|
|
689
|
+
};
|
|
690
|
+
readonly selected: {
|
|
691
|
+
readonly width: "2px";
|
|
692
|
+
readonly color: "hsl(var(--primary))";
|
|
693
|
+
readonly style: "solid";
|
|
694
|
+
};
|
|
695
|
+
};
|
|
696
|
+
readonly form: {
|
|
697
|
+
readonly input: {
|
|
698
|
+
readonly width: "1px";
|
|
699
|
+
readonly color: "hsl(var(--border))";
|
|
700
|
+
readonly style: "solid";
|
|
701
|
+
};
|
|
702
|
+
readonly inputFocus: {
|
|
703
|
+
readonly width: "2px";
|
|
704
|
+
readonly color: "hsl(var(--ring))";
|
|
705
|
+
readonly style: "solid";
|
|
706
|
+
};
|
|
707
|
+
readonly inputError: {
|
|
708
|
+
readonly width: "1px";
|
|
709
|
+
readonly color: "hsl(var(--destructive))";
|
|
710
|
+
readonly style: "solid";
|
|
711
|
+
};
|
|
712
|
+
readonly inputDisabled: {
|
|
713
|
+
readonly width: "1px";
|
|
714
|
+
readonly color: "hsl(var(--muted))";
|
|
715
|
+
readonly style: "solid";
|
|
716
|
+
};
|
|
717
|
+
readonly select: {
|
|
718
|
+
readonly width: "1px";
|
|
719
|
+
readonly color: "hsl(var(--border))";
|
|
720
|
+
readonly style: "solid";
|
|
721
|
+
};
|
|
722
|
+
readonly checkbox: {
|
|
723
|
+
readonly width: "1px";
|
|
724
|
+
readonly color: "hsl(var(--border))";
|
|
725
|
+
readonly style: "solid";
|
|
726
|
+
};
|
|
727
|
+
readonly checkboxChecked: {
|
|
728
|
+
readonly width: "1px";
|
|
729
|
+
readonly color: "hsl(var(--primary))";
|
|
730
|
+
readonly style: "solid";
|
|
731
|
+
};
|
|
732
|
+
};
|
|
733
|
+
readonly navigation: {
|
|
734
|
+
readonly divider: {
|
|
735
|
+
readonly width: "1px";
|
|
736
|
+
readonly color: "hsl(var(--border))";
|
|
737
|
+
readonly style: "solid";
|
|
738
|
+
};
|
|
739
|
+
readonly tabActive: {
|
|
740
|
+
readonly width: "2px";
|
|
741
|
+
readonly color: "hsl(var(--primary))";
|
|
742
|
+
readonly style: "solid";
|
|
743
|
+
};
|
|
744
|
+
readonly tabInactive: {
|
|
745
|
+
readonly width: "1px";
|
|
746
|
+
readonly color: "transparent";
|
|
747
|
+
readonly style: "solid";
|
|
748
|
+
};
|
|
749
|
+
readonly tabHover: {
|
|
750
|
+
readonly width: "1px";
|
|
751
|
+
readonly color: "hsl(var(--border))";
|
|
752
|
+
readonly style: "solid";
|
|
753
|
+
};
|
|
754
|
+
};
|
|
755
|
+
readonly layout: {
|
|
756
|
+
readonly divider: {
|
|
757
|
+
readonly width: "1px";
|
|
758
|
+
readonly color: "hsl(var(--border))";
|
|
759
|
+
readonly style: "solid";
|
|
760
|
+
};
|
|
761
|
+
readonly section: {
|
|
762
|
+
readonly width: "1px";
|
|
763
|
+
readonly color: "hsl(var(--muted))";
|
|
764
|
+
readonly style: "solid";
|
|
765
|
+
};
|
|
766
|
+
readonly container: {
|
|
767
|
+
readonly width: "1px";
|
|
768
|
+
readonly color: "hsl(var(--border))";
|
|
769
|
+
readonly style: "solid";
|
|
770
|
+
};
|
|
771
|
+
};
|
|
772
|
+
};
|
|
773
|
+
/**
|
|
774
|
+
* Directional stroke utilities
|
|
775
|
+
*/
|
|
776
|
+
declare const strokeDirections: {
|
|
777
|
+
readonly all: "border";
|
|
778
|
+
readonly top: "border-top";
|
|
779
|
+
readonly right: "border-right";
|
|
780
|
+
readonly bottom: "border-bottom";
|
|
781
|
+
readonly left: "border-left";
|
|
782
|
+
readonly horizontal: readonly ["border-left", "border-right"];
|
|
783
|
+
readonly vertical: readonly ["border-top", "border-bottom"];
|
|
784
|
+
};
|
|
785
|
+
type StrokeDirection = keyof typeof strokeDirections;
|
|
786
|
+
/**
|
|
787
|
+
* Utility function to get stroke value
|
|
788
|
+
*/
|
|
789
|
+
declare const getStroke: (token: StrokeToken) => string;
|
|
790
|
+
/**
|
|
791
|
+
* Utility function to get stroke color
|
|
792
|
+
*/
|
|
793
|
+
declare const getStrokeColor: (token: StrokeColorToken) => string;
|
|
794
|
+
/**
|
|
795
|
+
* Utility function to create complete stroke style
|
|
796
|
+
*/
|
|
797
|
+
declare const createStroke: (width: StrokeToken, color?: StrokeColorToken, style?: "solid" | "dashed" | "dotted") => string;
|
|
798
|
+
/**
|
|
799
|
+
* Generate CSS custom properties for strokes
|
|
800
|
+
*/
|
|
801
|
+
declare const generateStrokesCSS: () => string;
|
|
802
|
+
/**
|
|
803
|
+
* Stroke tokens for Tailwind CSS configuration
|
|
804
|
+
*/
|
|
805
|
+
declare const tailwindStrokes: {
|
|
806
|
+
readonly borderWidth: {
|
|
807
|
+
readonly 'stroke-1': "var(--stroke-1)";
|
|
808
|
+
readonly 'stroke-2': "var(--stroke-2)";
|
|
809
|
+
};
|
|
810
|
+
readonly outlineWidth: {
|
|
811
|
+
readonly 'stroke-1': "var(--stroke-1)";
|
|
812
|
+
readonly 'stroke-2': "var(--stroke-2)";
|
|
813
|
+
};
|
|
814
|
+
readonly borderColor: {
|
|
815
|
+
readonly 'stroke-default': "var(--stroke-color-default)";
|
|
816
|
+
readonly 'stroke-muted': "var(--stroke-color-muted)";
|
|
817
|
+
readonly 'stroke-primary': "var(--stroke-color-primary)";
|
|
818
|
+
readonly 'stroke-destructive': "var(--stroke-color-destructive)";
|
|
819
|
+
readonly 'stroke-focus': "var(--stroke-color-focus)";
|
|
820
|
+
};
|
|
821
|
+
};
|
|
822
|
+
/**
|
|
823
|
+
* Animation-ready stroke transitions
|
|
824
|
+
*/
|
|
825
|
+
declare const strokeTransitions: {
|
|
826
|
+
readonly fast: "border-width 0.15s ease-in-out, border-color 0.15s ease-in-out";
|
|
827
|
+
readonly medium: "border-width 0.2s ease-in-out, border-color 0.2s ease-in-out";
|
|
828
|
+
readonly slow: "border-width 0.3s ease-in-out, border-color 0.3s ease-in-out";
|
|
829
|
+
readonly colorOnly: "border-color 0.2s ease-in-out";
|
|
830
|
+
readonly widthOnly: "border-width 0.2s ease-in-out";
|
|
831
|
+
};
|
|
832
|
+
/**
|
|
833
|
+
* Responsive stroke utilities
|
|
834
|
+
*/
|
|
835
|
+
declare const responsiveStrokes: {
|
|
836
|
+
readonly mobile: {
|
|
837
|
+
readonly default: "1px";
|
|
838
|
+
readonly emphasized: "1px";
|
|
839
|
+
};
|
|
840
|
+
readonly tablet: {
|
|
841
|
+
readonly default: "1px";
|
|
842
|
+
readonly emphasized: "2px";
|
|
843
|
+
};
|
|
844
|
+
readonly desktop: {
|
|
845
|
+
readonly default: "1px";
|
|
846
|
+
readonly emphasized: "2px";
|
|
847
|
+
};
|
|
848
|
+
};
|
|
849
|
+
|
|
850
|
+
declare const badgeTokens: {
|
|
851
|
+
colors: {
|
|
852
|
+
inProgress: {
|
|
853
|
+
text: string;
|
|
854
|
+
background: string;
|
|
855
|
+
};
|
|
856
|
+
success: {
|
|
857
|
+
text: string;
|
|
858
|
+
background: string;
|
|
859
|
+
};
|
|
860
|
+
pending: {
|
|
861
|
+
text: string;
|
|
862
|
+
background: string;
|
|
863
|
+
};
|
|
864
|
+
danger: {
|
|
865
|
+
text: string;
|
|
866
|
+
background: string;
|
|
867
|
+
};
|
|
868
|
+
default: {
|
|
869
|
+
text: string;
|
|
870
|
+
background: string;
|
|
871
|
+
textOnSolid: string;
|
|
872
|
+
};
|
|
873
|
+
};
|
|
874
|
+
sizes: {
|
|
875
|
+
sm: string;
|
|
876
|
+
md: string;
|
|
877
|
+
lg: string;
|
|
878
|
+
};
|
|
879
|
+
padding: {
|
|
880
|
+
vertical: string;
|
|
881
|
+
horizontal: string;
|
|
882
|
+
};
|
|
883
|
+
icon: {
|
|
884
|
+
size: string;
|
|
885
|
+
};
|
|
886
|
+
};
|
|
887
|
+
|
|
888
|
+
declare const tagTokens: {
|
|
889
|
+
colors: {
|
|
890
|
+
default: {
|
|
891
|
+
background: string;
|
|
892
|
+
text: string;
|
|
893
|
+
bullet: string;
|
|
894
|
+
closeIconBorder: string;
|
|
895
|
+
hover: {
|
|
896
|
+
background: string;
|
|
897
|
+
closeIconBorder: string;
|
|
898
|
+
};
|
|
899
|
+
};
|
|
900
|
+
success: {
|
|
901
|
+
background: string;
|
|
902
|
+
text: string;
|
|
903
|
+
bullet: string;
|
|
904
|
+
closeIconBorder: string;
|
|
905
|
+
hover: {
|
|
906
|
+
background: string;
|
|
907
|
+
closeIconBorder: string;
|
|
908
|
+
};
|
|
909
|
+
};
|
|
910
|
+
warning: {
|
|
911
|
+
background: string;
|
|
912
|
+
text: string;
|
|
913
|
+
bullet: string;
|
|
914
|
+
closeIconBorder: string;
|
|
915
|
+
hover: {
|
|
916
|
+
background: string;
|
|
917
|
+
closeIconBorder: string;
|
|
918
|
+
};
|
|
919
|
+
};
|
|
920
|
+
danger: {
|
|
921
|
+
background: string;
|
|
922
|
+
text: string;
|
|
923
|
+
bullet: string;
|
|
924
|
+
closeIconBorder: string;
|
|
925
|
+
hover: {
|
|
926
|
+
background: string;
|
|
927
|
+
closeIconBorder: string;
|
|
928
|
+
};
|
|
929
|
+
};
|
|
930
|
+
};
|
|
931
|
+
fontSize: string;
|
|
932
|
+
padding: {
|
|
933
|
+
x: string;
|
|
934
|
+
y: string;
|
|
935
|
+
};
|
|
936
|
+
borderRadius: string;
|
|
937
|
+
iconSize: string;
|
|
938
|
+
};
|
|
939
|
+
|
|
940
|
+
type Theme = 'light' | 'dark';
|
|
941
|
+
interface ThemeContextType {
|
|
942
|
+
theme: Theme;
|
|
943
|
+
setTheme: (theme: Theme) => void;
|
|
944
|
+
}
|
|
945
|
+
declare function ThemeProvider({ children }: {
|
|
946
|
+
children: ReactNode;
|
|
947
|
+
}): react_jsx_runtime.JSX.Element;
|
|
948
|
+
declare function useTheme(): ThemeContextType;
|
|
949
|
+
|
|
950
|
+
declare function classNames(...classes: (string | undefined | null | false)[]): string;
|
|
951
|
+
|
|
952
|
+
declare function cn(...inputs: ClassValue[]): string;
|
|
953
|
+
|
|
954
|
+
/**
|
|
955
|
+
* Button Design Tokens - Raya Design System
|
|
956
|
+
*
|
|
957
|
+
* Defines the button system tokens including sizes, variants, colors, and states
|
|
958
|
+
* for consistent button usage across the design system.
|
|
959
|
+
*/
|
|
960
|
+
declare const buttonSizes: {
|
|
961
|
+
readonly sm: {
|
|
962
|
+
readonly height: "32px";
|
|
963
|
+
readonly paddingX: "8px";
|
|
964
|
+
readonly paddingY: "4px";
|
|
965
|
+
readonly fontSize: "14px";
|
|
966
|
+
readonly iconSize: "16px";
|
|
967
|
+
readonly borderRadius: "10px";
|
|
968
|
+
};
|
|
969
|
+
readonly md: {
|
|
970
|
+
readonly height: "40px";
|
|
971
|
+
readonly paddingX: "16px";
|
|
972
|
+
readonly paddingY: "8px";
|
|
973
|
+
readonly fontSize: "16px";
|
|
974
|
+
readonly iconSize: "20px";
|
|
975
|
+
readonly borderRadius: "12px";
|
|
976
|
+
};
|
|
977
|
+
readonly lg: {
|
|
978
|
+
readonly height: "48px";
|
|
979
|
+
readonly paddingX: "24px";
|
|
980
|
+
readonly paddingY: "12px";
|
|
981
|
+
readonly fontSize: "18px";
|
|
982
|
+
readonly iconSize: "24px";
|
|
983
|
+
readonly borderRadius: "16px";
|
|
984
|
+
};
|
|
985
|
+
};
|
|
986
|
+
declare const buttonVariants: {
|
|
987
|
+
readonly primary: "filled";
|
|
988
|
+
readonly secondary: "outlined";
|
|
989
|
+
readonly ghost: "text-only";
|
|
990
|
+
readonly icon: "icon-only";
|
|
991
|
+
};
|
|
992
|
+
declare const buttonColors: {
|
|
993
|
+
readonly primary: "default";
|
|
994
|
+
readonly secondary: "purple";
|
|
995
|
+
readonly success: "green";
|
|
996
|
+
readonly warning: "orange";
|
|
997
|
+
readonly destructive: "red";
|
|
998
|
+
readonly neutral: "gray";
|
|
999
|
+
};
|
|
1000
|
+
type ButtonSize = keyof typeof buttonSizes;
|
|
1001
|
+
type ButtonVariant = keyof typeof buttonVariants;
|
|
1002
|
+
type ButtonColor = keyof typeof buttonColors;
|
|
1003
|
+
interface ButtonProps {
|
|
1004
|
+
variant?: ButtonVariant;
|
|
1005
|
+
size?: ButtonSize;
|
|
1006
|
+
color?: ButtonColor;
|
|
1007
|
+
disabled?: boolean;
|
|
1008
|
+
loading?: boolean;
|
|
1009
|
+
loadingText?: string;
|
|
1010
|
+
icon?: string;
|
|
1011
|
+
iconLeft?: string;
|
|
1012
|
+
iconRight?: string;
|
|
1013
|
+
className?: string;
|
|
1014
|
+
children?: React.ReactNode;
|
|
1015
|
+
onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
1016
|
+
type?: 'button' | 'submit' | 'reset';
|
|
1017
|
+
'aria-label'?: string;
|
|
1018
|
+
'aria-describedby'?: string;
|
|
1019
|
+
asChild?: boolean;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
declare const Button: React__default.ForwardRefExoticComponent<ButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
1023
|
+
|
|
1024
|
+
interface InputProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
|
|
1025
|
+
error?: string | boolean;
|
|
1026
|
+
helperText?: string;
|
|
1027
|
+
label?: string;
|
|
1028
|
+
required?: boolean;
|
|
1029
|
+
}
|
|
1030
|
+
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1031
|
+
|
|
1032
|
+
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp | undefined) => string> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
1033
|
+
|
|
1034
|
+
/**
|
|
1035
|
+
* Icons Design Tokens - Raya Design System
|
|
1036
|
+
*
|
|
1037
|
+
* Auto-generated icon registry with 480 icons across 21 categories.
|
|
1038
|
+
* Generated on: 2025-06-16T23:12:33.819Z
|
|
1039
|
+
*
|
|
1040
|
+
* DO NOT EDIT MANUALLY - This file is auto-generated by generate-icon-registry.js
|
|
1041
|
+
*/
|
|
1042
|
+
declare const iconSizes: {
|
|
1043
|
+
readonly xs: "16px";
|
|
1044
|
+
readonly sm: "20px";
|
|
1045
|
+
readonly md: "24px";
|
|
1046
|
+
readonly lg: "32px";
|
|
1047
|
+
readonly xl: "48px";
|
|
1048
|
+
};
|
|
1049
|
+
declare const iconSizeClasses: {
|
|
1050
|
+
readonly xs: "w-4 h-4";
|
|
1051
|
+
readonly sm: "w-5 h-5";
|
|
1052
|
+
readonly md: "w-6 h-6";
|
|
1053
|
+
readonly lg: "w-8 h-8";
|
|
1054
|
+
readonly xl: "w-12 h-12";
|
|
1055
|
+
};
|
|
1056
|
+
declare const iconColors: {
|
|
1057
|
+
readonly default: "currentColor";
|
|
1058
|
+
readonly primary: "hsl(var(--primary))";
|
|
1059
|
+
readonly secondary: "hsl(var(--secondary))";
|
|
1060
|
+
readonly muted: "hsl(var(--muted-foreground))";
|
|
1061
|
+
readonly destructive: "hsl(var(--destructive))";
|
|
1062
|
+
readonly success: "#10b981";
|
|
1063
|
+
readonly warning: "#f59e0b";
|
|
1064
|
+
readonly info: "#3b82f6";
|
|
1065
|
+
};
|
|
1066
|
+
declare const iconCategories: {
|
|
1067
|
+
readonly archive: "Archive";
|
|
1068
|
+
readonly arrow: "Arrow";
|
|
1069
|
+
readonly building: "Building";
|
|
1070
|
+
readonly business: "Business";
|
|
1071
|
+
readonly chevron: "Chevron";
|
|
1072
|
+
readonly 'content-edit': "Content edit";
|
|
1073
|
+
readonly delivery: "Delivery";
|
|
1074
|
+
readonly files: "Files";
|
|
1075
|
+
readonly location: "Location";
|
|
1076
|
+
readonly messages: "Messages";
|
|
1077
|
+
readonly money: "Money";
|
|
1078
|
+
readonly navigation: "Navigation";
|
|
1079
|
+
readonly notifications: "Notifications";
|
|
1080
|
+
readonly original: "Original";
|
|
1081
|
+
readonly reactions: "Reactions";
|
|
1082
|
+
readonly search: "Search";
|
|
1083
|
+
readonly security: "Security";
|
|
1084
|
+
readonly settings: "Settings";
|
|
1085
|
+
readonly time: "Time";
|
|
1086
|
+
readonly transport: "Transport";
|
|
1087
|
+
readonly users: "Users";
|
|
1088
|
+
};
|
|
1089
|
+
declare const iconRegistry: {
|
|
1090
|
+
readonly 'archive-add': "archive/archive-add.svg";
|
|
1091
|
+
readonly 'archive-minus': "archive/archive-minus.svg";
|
|
1092
|
+
readonly 'archive-slash': "archive/archive-slash.svg";
|
|
1093
|
+
readonly 'archive-tick': "archive/archive-tick.svg";
|
|
1094
|
+
readonly archive: "archive/archive.svg";
|
|
1095
|
+
readonly 'book-saved': "archive/book-saved.svg";
|
|
1096
|
+
readonly 'book-square': "archive/book-square.svg";
|
|
1097
|
+
readonly 'receipt-square': "archive/receipt-square.svg";
|
|
1098
|
+
readonly 'save-2': "archive/save-2.svg";
|
|
1099
|
+
readonly 'save-add': "archive/save-add.svg";
|
|
1100
|
+
readonly 'save-minus': "archive/save-minus.svg";
|
|
1101
|
+
readonly 'save-remove': "archive/save-remove.svg";
|
|
1102
|
+
readonly 'arrow-arrange-circle-2': "arrow/arrange-circle-2.svg";
|
|
1103
|
+
readonly 'arrow-arrange-circle': "arrow/arrange-circle.svg";
|
|
1104
|
+
readonly 'arrow-arrange-square-2': "arrow/arrange-square-2.svg";
|
|
1105
|
+
readonly 'arrow-arrange-square': "arrow/arrange-square.svg";
|
|
1106
|
+
readonly 'arrow-2': "arrow/arrow-2.svg";
|
|
1107
|
+
readonly 'arrow-3': "arrow/arrow-3.svg";
|
|
1108
|
+
readonly 'arrow-bottom': "arrow/arrow-bottom.svg";
|
|
1109
|
+
readonly 'arrow-circle-down': "arrow/arrow-circle-down.svg";
|
|
1110
|
+
readonly 'arrow-circle-left': "arrow/arrow-circle-left.svg";
|
|
1111
|
+
readonly 'arrow-circle-right': "arrow/arrow-circle-right.svg";
|
|
1112
|
+
readonly 'arrow-circle-up': "arrow/arrow-circle-up.svg";
|
|
1113
|
+
readonly 'arrow-down-1': "arrow/arrow-down-1.svg";
|
|
1114
|
+
readonly 'arrow-down': "arrow/arrow-down.svg";
|
|
1115
|
+
readonly 'arrow-left-1': "arrow/arrow-left-1.svg";
|
|
1116
|
+
readonly 'arrow-left-2': "arrow/arrow-left-2.svg";
|
|
1117
|
+
readonly 'arrow-left': "arrow/arrow-left.svg";
|
|
1118
|
+
readonly 'arrow-right-1': "arrow/arrow-right-1.svg";
|
|
1119
|
+
readonly 'arrow-right-2': "arrow/arrow-right-2.svg";
|
|
1120
|
+
readonly 'arrow-right-3': "arrow/arrow-right-3.svg";
|
|
1121
|
+
readonly 'arrow-right': "arrow/arrow-right.svg";
|
|
1122
|
+
readonly 'arrow-square-down': "arrow/arrow-square-down.svg";
|
|
1123
|
+
readonly 'arrow-square-left': "arrow/arrow-square-left.svg";
|
|
1124
|
+
readonly 'arrow-square-up': "arrow/arrow-square-up.svg";
|
|
1125
|
+
readonly 'arrow-swap-horizontal': "arrow/arrow-swap-horizontal.svg";
|
|
1126
|
+
readonly 'arrow-swap': "arrow/arrow-swap.svg";
|
|
1127
|
+
readonly 'arrow-up-1': "arrow/arrow-up-1.svg";
|
|
1128
|
+
readonly 'arrow-up-2': "arrow/arrow-up-2.svg";
|
|
1129
|
+
readonly 'arrow-up': "arrow/arrow-up.svg";
|
|
1130
|
+
readonly 'arrow-back-square': "arrow/back-square.svg";
|
|
1131
|
+
readonly 'arrow-convert': "arrow/convert.svg";
|
|
1132
|
+
readonly 'arrow-export-1': "arrow/export-1.svg";
|
|
1133
|
+
readonly 'arrow-export-2': "arrow/export-2.svg";
|
|
1134
|
+
readonly 'arrow-export-3': "arrow/export-3.svg";
|
|
1135
|
+
readonly 'arrow-export': "arrow/export.svg";
|
|
1136
|
+
readonly 'arrow-forward-square': "arrow/forward-square.svg";
|
|
1137
|
+
readonly 'arrow-frame': "arrow/frame.svg";
|
|
1138
|
+
readonly 'arrow-import-1': "arrow/import-1.svg";
|
|
1139
|
+
readonly 'arrow-import-2': "arrow/import-2.svg";
|
|
1140
|
+
readonly 'arrow-import': "arrow/import.svg";
|
|
1141
|
+
readonly 'arrow-login-1': "arrow/login-1.svg";
|
|
1142
|
+
readonly 'arrow-login': "arrow/login.svg";
|
|
1143
|
+
readonly 'arrow-logout-1': "arrow/logout-1.svg";
|
|
1144
|
+
readonly 'arrow-logout': "arrow/logout.svg";
|
|
1145
|
+
readonly 'arrow-receive-square-2': "arrow/receive-square-2.svg";
|
|
1146
|
+
readonly 'arrow-receive-square': "arrow/receive-square.svg";
|
|
1147
|
+
readonly 'arrow-received': "arrow/received.svg";
|
|
1148
|
+
readonly 'arrow-redo': "arrow/redo.svg";
|
|
1149
|
+
readonly 'arrow-refresh-2': "arrow/refresh-2.svg";
|
|
1150
|
+
readonly 'arrow-refresh-circle': "arrow/refresh-circle.svg";
|
|
1151
|
+
readonly 'arrow-refresh-left-square': "arrow/refresh-left-square.svg";
|
|
1152
|
+
readonly 'arrow-refresh-right-square': "arrow/refresh-right-square.svg";
|
|
1153
|
+
readonly 'arrow-refresh-square-2': "arrow/refresh-square-2.svg";
|
|
1154
|
+
readonly 'arrow-refresh': "arrow/refresh.svg";
|
|
1155
|
+
readonly 'arrow-repeat-circle': "arrow/repeat-circle.svg";
|
|
1156
|
+
readonly 'arrow-repeat': "arrow/repeat.svg";
|
|
1157
|
+
readonly 'arrow-rotate-left': "arrow/rotate-left.svg";
|
|
1158
|
+
readonly 'arrow-rotate-right': "arrow/rotate-right.svg";
|
|
1159
|
+
readonly 'arrow-send-sqaure-2': "arrow/send-sqaure-2.svg";
|
|
1160
|
+
readonly 'arrow-send-square': "arrow/send-square.svg";
|
|
1161
|
+
readonly 'arrow-send': "arrow/send.svg";
|
|
1162
|
+
readonly 'arrow-undo': "arrow/undo.svg";
|
|
1163
|
+
readonly bank: "building/bank.svg";
|
|
1164
|
+
readonly 'building-3': "building/building-3.svg";
|
|
1165
|
+
readonly 'building-4': "building/building-4.svg";
|
|
1166
|
+
readonly building: "building/building.svg";
|
|
1167
|
+
readonly 'buildings-2': "building/buildings-2.svg";
|
|
1168
|
+
readonly buildings: "building/buildings.svg";
|
|
1169
|
+
readonly buliding: "building/buliding.svg";
|
|
1170
|
+
readonly courthouse: "building/courthouse.svg";
|
|
1171
|
+
readonly hospital: "building/hospital.svg";
|
|
1172
|
+
readonly 'house-2': "building/house-2.svg";
|
|
1173
|
+
readonly house: "building/house.svg";
|
|
1174
|
+
readonly activity: "business/activity.svg";
|
|
1175
|
+
readonly 'chart-1': "business/chart-1.svg";
|
|
1176
|
+
readonly 'chart-2': "business/chart-2.svg";
|
|
1177
|
+
readonly 'chart-21': "business/chart-21.svg";
|
|
1178
|
+
readonly 'chart-fail': "business/chart-fail.svg";
|
|
1179
|
+
readonly 'chart-success': "business/chart-success.svg";
|
|
1180
|
+
readonly chart: "business/chart.svg";
|
|
1181
|
+
readonly diagram: "business/diagram.svg";
|
|
1182
|
+
readonly 'favorite-chart': "business/favorite-chart.svg";
|
|
1183
|
+
readonly graph: "business/graph.svg";
|
|
1184
|
+
readonly hashtag: "business/hashtag.svg";
|
|
1185
|
+
readonly health: "business/health.svg";
|
|
1186
|
+
readonly 'home-hashtag': "business/home-hashtag.svg";
|
|
1187
|
+
readonly 'home-trend-down': "business/home-trend-down.svg";
|
|
1188
|
+
readonly 'home-trend-up': "business/home-trend-up.svg";
|
|
1189
|
+
readonly personalcard: "business/personalcard.svg";
|
|
1190
|
+
readonly 'presention-chart': "business/presention-chart.svg";
|
|
1191
|
+
readonly 'status-up': "business/status-up.svg";
|
|
1192
|
+
readonly 'trend-down': "business/trend-down.svg";
|
|
1193
|
+
readonly 'trend-up': "business/trend-up.svg";
|
|
1194
|
+
readonly 'chevron-down': "chevron/down.svg";
|
|
1195
|
+
readonly 'chevron-left': "chevron/left.svg";
|
|
1196
|
+
readonly 'chevron-right': "chevron/right.svg";
|
|
1197
|
+
readonly 'chevron-up': "chevron/up.svg";
|
|
1198
|
+
readonly 'archive-book': "content-edit/archive-book.svg";
|
|
1199
|
+
readonly bill: "content-edit/bill.svg";
|
|
1200
|
+
readonly 'clipboard-close': "content-edit/clipboard-close.svg";
|
|
1201
|
+
readonly 'clipboard-export': "content-edit/clipboard-export.svg";
|
|
1202
|
+
readonly 'clipboard-import': "content-edit/clipboard-import.svg";
|
|
1203
|
+
readonly 'clipboard-text': "content-edit/clipboard-text.svg";
|
|
1204
|
+
readonly 'clipboard-tick': "content-edit/clipboard-tick.svg";
|
|
1205
|
+
readonly copyright: "content-edit/copyright.svg";
|
|
1206
|
+
readonly 'creative-commons': "content-edit/creative-commons.svg";
|
|
1207
|
+
readonly 'document-cloud': "content-edit/document-cloud.svg";
|
|
1208
|
+
readonly 'document-copy': "content-edit/document-copy.svg";
|
|
1209
|
+
readonly 'document-download': "content-edit/document-download.svg";
|
|
1210
|
+
readonly 'document-favorite': "content-edit/document-favorite.svg";
|
|
1211
|
+
readonly 'document-filter': "content-edit/document-filter.svg";
|
|
1212
|
+
readonly 'document-forward': "content-edit/document-forward.svg";
|
|
1213
|
+
readonly 'document-like': "content-edit/document-like.svg";
|
|
1214
|
+
readonly 'document-normal': "content-edit/document-normal.svg";
|
|
1215
|
+
readonly 'document-previous': "content-edit/document-previous.svg";
|
|
1216
|
+
readonly 'document-sketch': "content-edit/document-sketch.svg";
|
|
1217
|
+
readonly 'document-text-1': "content-edit/document-text-1.svg";
|
|
1218
|
+
readonly 'document-text': "content-edit/document-text.svg";
|
|
1219
|
+
readonly 'document-upload': "content-edit/document-upload.svg";
|
|
1220
|
+
readonly document: "content-edit/document.svg";
|
|
1221
|
+
readonly 'edit-2': "content-edit/edit-2.svg";
|
|
1222
|
+
readonly edit: "content-edit/edit.svg";
|
|
1223
|
+
readonly 'menu-board': "content-edit/menu-board.svg";
|
|
1224
|
+
readonly 'note-1': "content-edit/note-1.svg";
|
|
1225
|
+
readonly 'note-add': "content-edit/note-add.svg";
|
|
1226
|
+
readonly 'note-favorite': "content-edit/note-favorite.svg";
|
|
1227
|
+
readonly 'note-remove': "content-edit/note-remove.svg";
|
|
1228
|
+
readonly 'note-text': "content-edit/note-text.svg";
|
|
1229
|
+
readonly note: "content-edit/note.svg";
|
|
1230
|
+
readonly stickynote: "content-edit/stickynote.svg";
|
|
1231
|
+
readonly 'task-square': "content-edit/task-square.svg";
|
|
1232
|
+
readonly task: "content-edit/task.svg";
|
|
1233
|
+
readonly '3d-cube-scan': "delivery/3d-cube-scan.svg";
|
|
1234
|
+
readonly '3d-rotate': "delivery/3d-rotate.svg";
|
|
1235
|
+
readonly '3d-square': "delivery/3d-square.svg";
|
|
1236
|
+
readonly 'box-1': "delivery/box-1.svg";
|
|
1237
|
+
readonly 'box-add': "delivery/box-add.svg";
|
|
1238
|
+
readonly 'box-remove': "delivery/box-remove.svg";
|
|
1239
|
+
readonly 'box-search': "delivery/box-search.svg";
|
|
1240
|
+
readonly 'box-tick': "delivery/box-tick.svg";
|
|
1241
|
+
readonly 'box-time': "delivery/box-time.svg";
|
|
1242
|
+
readonly box: "delivery/box.svg";
|
|
1243
|
+
readonly 'convert-3d-cube': "delivery/convert-3d-cube.svg";
|
|
1244
|
+
readonly 'truck-fast': "delivery/truck-fast.svg";
|
|
1245
|
+
readonly 'truck-remove': "delivery/truck-remove.svg";
|
|
1246
|
+
readonly 'truck-tick': "delivery/truck-tick.svg";
|
|
1247
|
+
readonly 'truck-time': "delivery/truck-time.svg";
|
|
1248
|
+
readonly truck: "delivery/truck.svg";
|
|
1249
|
+
readonly 'folder-2': "files/folder-2.svg";
|
|
1250
|
+
readonly 'folder-add': "files/folder-add.svg";
|
|
1251
|
+
readonly 'folder-cloud': "files/folder-cloud.svg";
|
|
1252
|
+
readonly 'folder-cross': "files/folder-cross.svg";
|
|
1253
|
+
readonly 'folder-favorite': "files/folder-favorite.svg";
|
|
1254
|
+
readonly 'folder-minus': "files/folder-minus.svg";
|
|
1255
|
+
readonly 'folder-open': "files/folder-open.svg";
|
|
1256
|
+
readonly folder: "files/folder.svg";
|
|
1257
|
+
readonly 'arrow-square': "location/arrow-square.svg";
|
|
1258
|
+
readonly arrow: "location/arrow.svg";
|
|
1259
|
+
readonly 'direct-down': "location/direct-down.svg";
|
|
1260
|
+
readonly 'direct-left': "location/direct-left.svg";
|
|
1261
|
+
readonly 'direct-right': "location/direct-right.svg";
|
|
1262
|
+
readonly 'direct-up': "location/direct-up.svg";
|
|
1263
|
+
readonly discover: "location/discover.svg";
|
|
1264
|
+
readonly 'global-edit': "location/global-edit.svg";
|
|
1265
|
+
readonly 'global-refresh': "location/global-refresh.svg";
|
|
1266
|
+
readonly 'global-search': "location/global-search.svg";
|
|
1267
|
+
readonly global: "location/global.svg";
|
|
1268
|
+
readonly 'gps-slash': "location/gps-slash.svg";
|
|
1269
|
+
readonly gps: "location/gps.svg";
|
|
1270
|
+
readonly 'location-add': "location/location-add.svg";
|
|
1271
|
+
readonly 'location-cross': "location/location-cross.svg";
|
|
1272
|
+
readonly 'location-minus': "location/location-minus.svg";
|
|
1273
|
+
readonly 'location-slash': "location/location-slash.svg";
|
|
1274
|
+
readonly 'location-tick': "location/location-tick.svg";
|
|
1275
|
+
readonly location: "location/location.svg";
|
|
1276
|
+
readonly 'map-1': "location/map-1.svg";
|
|
1277
|
+
readonly map: "location/map.svg";
|
|
1278
|
+
readonly 'picture-frame': "location/picture-frame.svg";
|
|
1279
|
+
readonly 'radar-2': "location/radar-2.svg";
|
|
1280
|
+
readonly radar: "location/radar.svg";
|
|
1281
|
+
readonly 'route-square': "location/route-square.svg";
|
|
1282
|
+
readonly 'routing-2': "location/routing-2.svg";
|
|
1283
|
+
readonly routing: "location/routing.svg";
|
|
1284
|
+
readonly 'device-message': "messages/device-message.svg";
|
|
1285
|
+
readonly 'direct-inbox': "messages/direct-inbox.svg";
|
|
1286
|
+
readonly 'direct-normal': "messages/direct-normal.svg";
|
|
1287
|
+
readonly 'direct-notification': "messages/direct-notification.svg";
|
|
1288
|
+
readonly 'direct-send': "messages/direct-send.svg";
|
|
1289
|
+
readonly direct: "messages/direct.svg";
|
|
1290
|
+
readonly 'directbox-default': "messages/directbox-default.svg";
|
|
1291
|
+
readonly 'directbox-notif': "messages/directbox-notif.svg";
|
|
1292
|
+
readonly 'directbox-receive': "messages/directbox-receive.svg";
|
|
1293
|
+
readonly 'directbox-send': "messages/directbox-send.svg";
|
|
1294
|
+
readonly 'message-2': "messages/message-2.svg";
|
|
1295
|
+
readonly 'message-add-1': "messages/message-add-1.svg";
|
|
1296
|
+
readonly 'message-add': "messages/message-add.svg";
|
|
1297
|
+
readonly 'message-circle': "messages/message-circle.svg";
|
|
1298
|
+
readonly 'message-edit': "messages/message-edit.svg";
|
|
1299
|
+
readonly 'message-favorite': "messages/message-favorite.svg";
|
|
1300
|
+
readonly 'message-minus': "messages/message-minus.svg";
|
|
1301
|
+
readonly 'message-notif': "messages/message-notif.svg";
|
|
1302
|
+
readonly 'message-remove': "messages/message-remove.svg";
|
|
1303
|
+
readonly 'message-search': "messages/message-search.svg";
|
|
1304
|
+
readonly 'message-square': "messages/message-square.svg";
|
|
1305
|
+
readonly 'message-text-1': "messages/message-text-1.svg";
|
|
1306
|
+
readonly 'message-text': "messages/message-text.svg";
|
|
1307
|
+
readonly 'message-tick': "messages/message-tick.svg";
|
|
1308
|
+
readonly 'message-time': "messages/message-time.svg";
|
|
1309
|
+
readonly message: "messages/message.svg";
|
|
1310
|
+
readonly 'messages-1': "messages/messages-1.svg";
|
|
1311
|
+
readonly 'messages-2': "messages/messages-2.svg";
|
|
1312
|
+
readonly 'messages-3': "messages/messages-3.svg";
|
|
1313
|
+
readonly messages: "messages/messages.svg";
|
|
1314
|
+
readonly 'sms-edit': "messages/sms-edit.svg";
|
|
1315
|
+
readonly 'sms-notification': "messages/sms-notification.svg";
|
|
1316
|
+
readonly 'sms-search': "messages/sms-search.svg";
|
|
1317
|
+
readonly 'sms-star': "messages/sms-star.svg";
|
|
1318
|
+
readonly 'sms-tracking': "messages/sms-tracking.svg";
|
|
1319
|
+
readonly sms: "messages/sms.svg";
|
|
1320
|
+
readonly 'money-archive': "money/archive.svg";
|
|
1321
|
+
readonly 'card-add': "money/card-add.svg";
|
|
1322
|
+
readonly 'card-edit': "money/card-edit.svg";
|
|
1323
|
+
readonly 'card-pos': "money/card-pos.svg";
|
|
1324
|
+
readonly 'card-receive': "money/card-receive.svg";
|
|
1325
|
+
readonly 'card-remove-1': "money/card-remove-1.svg";
|
|
1326
|
+
readonly 'card-remove': "money/card-remove.svg";
|
|
1327
|
+
readonly 'card-send': "money/card-send.svg";
|
|
1328
|
+
readonly 'card-slash': "money/card-slash.svg";
|
|
1329
|
+
readonly 'card-tick-1': "money/card-tick-1.svg";
|
|
1330
|
+
readonly 'card-tick': "money/card-tick.svg";
|
|
1331
|
+
readonly card: "money/card.svg";
|
|
1332
|
+
readonly cards: "money/cards.svg";
|
|
1333
|
+
readonly 'chart-square': "money/chart-square.svg";
|
|
1334
|
+
readonly 'coin-1': "money/coin-1.svg";
|
|
1335
|
+
readonly coin: "money/coin.svg";
|
|
1336
|
+
readonly 'convert-card': "money/convert-card.svg";
|
|
1337
|
+
readonly 'discount-circle': "money/discount-circle.svg";
|
|
1338
|
+
readonly 'discount-shape': "money/discount-shape.svg";
|
|
1339
|
+
readonly 'money-document': "money/document.svg";
|
|
1340
|
+
readonly 'dollar-circle': "money/dollar-circle.svg";
|
|
1341
|
+
readonly 'dollar-square': "money/dollar-square.svg";
|
|
1342
|
+
readonly 'empty-wallet-add': "money/empty-wallet-add.svg";
|
|
1343
|
+
readonly 'empty-wallet-change': "money/empty-wallet-change.svg";
|
|
1344
|
+
readonly 'empty-wallet-remove': "money/empty-wallet-remove.svg";
|
|
1345
|
+
readonly 'empty-wallet-tick': "money/empty-wallet-tick.svg";
|
|
1346
|
+
readonly 'empty-wallet-time': "money/empty-wallet-time.svg";
|
|
1347
|
+
readonly 'empty-wallet': "money/empty-wallet.svg";
|
|
1348
|
+
readonly math: "money/math.svg";
|
|
1349
|
+
readonly 'money-2': "money/money-2.svg";
|
|
1350
|
+
readonly 'money-3': "money/money-3.svg";
|
|
1351
|
+
readonly 'money-4': "money/money-4.svg";
|
|
1352
|
+
readonly 'money-add': "money/money-add.svg";
|
|
1353
|
+
readonly 'money-change': "money/money-change.svg";
|
|
1354
|
+
readonly 'money-forbidden': "money/money-forbidden.svg";
|
|
1355
|
+
readonly 'money-recive': "money/money-recive.svg";
|
|
1356
|
+
readonly 'money-remove': "money/money-remove.svg";
|
|
1357
|
+
readonly 'money-send': "money/money-send.svg";
|
|
1358
|
+
readonly 'money-tick': "money/money-tick.svg";
|
|
1359
|
+
readonly 'money-time': "money/money-time.svg";
|
|
1360
|
+
readonly money: "money/money.svg";
|
|
1361
|
+
readonly moneys: "money/moneys.svg";
|
|
1362
|
+
readonly 'percentage-circle': "money/percentage-circle.svg";
|
|
1363
|
+
readonly 'percentage-square': "money/percentage-square.svg";
|
|
1364
|
+
readonly 'receipt-2-1': "money/receipt-2-1.svg";
|
|
1365
|
+
readonly 'receipt-2': "money/receipt-2.svg";
|
|
1366
|
+
readonly 'receipt-add': "money/receipt-add.svg";
|
|
1367
|
+
readonly 'receipt-discount': "money/receipt-discount.svg";
|
|
1368
|
+
readonly 'receipt-disscount': "money/receipt-disscount.svg";
|
|
1369
|
+
readonly 'receipt-edit': "money/receipt-edit.svg";
|
|
1370
|
+
readonly 'receipt-item': "money/receipt-item.svg";
|
|
1371
|
+
readonly 'receipt-minus': "money/receipt-minus.svg";
|
|
1372
|
+
readonly 'receipt-search': "money/receipt-search.svg";
|
|
1373
|
+
readonly 'receipt-text': "money/receipt-text.svg";
|
|
1374
|
+
readonly receipt: "money/receipt.svg";
|
|
1375
|
+
readonly 'security-card': "money/security-card.svg";
|
|
1376
|
+
readonly 'strongbox-2': "money/strongbox-2.svg";
|
|
1377
|
+
readonly strongbox: "money/strongbox.svg";
|
|
1378
|
+
readonly 'tag-2': "money/tag-2.svg";
|
|
1379
|
+
readonly tag: "money/tag.svg";
|
|
1380
|
+
readonly 'ticket-2': "money/ticket-2.svg";
|
|
1381
|
+
readonly 'ticket-discount': "money/ticket-discount.svg";
|
|
1382
|
+
readonly 'ticket-expired': "money/ticket-expired.svg";
|
|
1383
|
+
readonly 'ticket-star': "money/ticket-star.svg";
|
|
1384
|
+
readonly ticket: "money/ticket.svg";
|
|
1385
|
+
readonly 'transaction-minus': "money/transaction-minus.svg";
|
|
1386
|
+
readonly 'wallet-1': "money/wallet-1.svg";
|
|
1387
|
+
readonly 'wallet-2': "money/wallet-2.svg";
|
|
1388
|
+
readonly 'wallet-3': "money/wallet-3.svg";
|
|
1389
|
+
readonly 'wallet-add': "money/wallet-add.svg";
|
|
1390
|
+
readonly 'wallet-check': "money/wallet-check.svg";
|
|
1391
|
+
readonly 'wallet-minus': "money/wallet-minus.svg";
|
|
1392
|
+
readonly 'wallet-money': "money/wallet-money.svg";
|
|
1393
|
+
readonly 'wallet-remove': "money/wallet-remove.svg";
|
|
1394
|
+
readonly 'wallet-search': "money/wallet-search.svg";
|
|
1395
|
+
readonly 'wallet-to-add': "money/wallet-to-add.svg";
|
|
1396
|
+
readonly wallet: "money/wallet.svg";
|
|
1397
|
+
readonly 'add-circle': "navigation/add-circle.svg";
|
|
1398
|
+
readonly 'add-square': "navigation/add-square.svg";
|
|
1399
|
+
readonly add: "navigation/add.svg";
|
|
1400
|
+
readonly 'navigation-archive': "navigation/archive.svg";
|
|
1401
|
+
readonly autobrightness: "navigation/autobrightness.svg";
|
|
1402
|
+
readonly 'box-2': "navigation/box-2.svg";
|
|
1403
|
+
readonly broom: "navigation/broom.svg";
|
|
1404
|
+
readonly bubble: "navigation/bubble.svg";
|
|
1405
|
+
readonly check: "navigation/check.svg";
|
|
1406
|
+
readonly 'close-circle': "navigation/close-circle.svg";
|
|
1407
|
+
readonly 'close-square': "navigation/close-square.svg";
|
|
1408
|
+
readonly computing: "navigation/computing.svg";
|
|
1409
|
+
readonly crown: "navigation/crown.svg";
|
|
1410
|
+
readonly cup: "navigation/cup.svg";
|
|
1411
|
+
readonly danger: "navigation/danger.svg";
|
|
1412
|
+
readonly diamonds: "navigation/diamonds.svg";
|
|
1413
|
+
readonly 'navigation-discover': "navigation/discover.svg";
|
|
1414
|
+
readonly dot: "navigation/dot.svg";
|
|
1415
|
+
readonly 'filter-add': "navigation/filter-add.svg";
|
|
1416
|
+
readonly 'filter-edit': "navigation/filter-edit.svg";
|
|
1417
|
+
readonly 'filter-remove': "navigation/filter-remove.svg";
|
|
1418
|
+
readonly 'filter-search': "navigation/filter-search.svg";
|
|
1419
|
+
readonly 'filter-square': "navigation/filter-square.svg";
|
|
1420
|
+
readonly 'filter-tick': "navigation/filter-tick.svg";
|
|
1421
|
+
readonly filter: "navigation/filter.svg";
|
|
1422
|
+
readonly 'flag-2': "navigation/flag-2.svg";
|
|
1423
|
+
readonly flag: "navigation/flag.svg";
|
|
1424
|
+
readonly 'flash-circle': "navigation/flash-circle.svg";
|
|
1425
|
+
readonly 'flash-slash': "navigation/flash-slash.svg";
|
|
1426
|
+
readonly flash: "navigation/flash.svg";
|
|
1427
|
+
readonly 'forbidden-2': "navigation/forbidden-2.svg";
|
|
1428
|
+
readonly forbidden: "navigation/forbidden.svg";
|
|
1429
|
+
readonly glass: "navigation/glass.svg";
|
|
1430
|
+
readonly happyemoji: "navigation/happyemoji.svg";
|
|
1431
|
+
readonly 'home-2': "navigation/home-2.svg";
|
|
1432
|
+
readonly 'home-wifi': "navigation/home-wifi.svg";
|
|
1433
|
+
readonly home: "navigation/home.svg";
|
|
1434
|
+
readonly 'info-circle': "navigation/info-circle.svg";
|
|
1435
|
+
readonly information: "navigation/information.svg";
|
|
1436
|
+
readonly judge: "navigation/judge.svg";
|
|
1437
|
+
readonly lamp: "navigation/lamp.svg";
|
|
1438
|
+
readonly level: "navigation/level.svg";
|
|
1439
|
+
readonly menu: "navigation/menu.svg";
|
|
1440
|
+
readonly 'minus-cirlce': "navigation/minus-cirlce.svg";
|
|
1441
|
+
readonly 'minus-square': "navigation/minus-square.svg";
|
|
1442
|
+
readonly minus: "navigation/minus.svg";
|
|
1443
|
+
readonly mirror: "navigation/mirror.svg";
|
|
1444
|
+
readonly 'more-circle': "navigation/more-circle.svg";
|
|
1445
|
+
readonly 'more-square': "navigation/more-square.svg";
|
|
1446
|
+
readonly 'mouse-circle': "navigation/mouse-circle.svg";
|
|
1447
|
+
readonly 'mouse-square': "navigation/mouse-square.svg";
|
|
1448
|
+
readonly pet: "navigation/pet.svg";
|
|
1449
|
+
readonly ranking: "navigation/ranking.svg";
|
|
1450
|
+
readonly reserve: "navigation/reserve.svg";
|
|
1451
|
+
readonly 'send-2': "navigation/send-2.svg";
|
|
1452
|
+
readonly send: "navigation/send.svg";
|
|
1453
|
+
readonly share: "navigation/share.svg";
|
|
1454
|
+
readonly signpost: "navigation/signpost.svg";
|
|
1455
|
+
readonly slash: "navigation/slash.svg";
|
|
1456
|
+
readonly sort: "navigation/sort.svg";
|
|
1457
|
+
readonly sound: "navigation/sound.svg";
|
|
1458
|
+
readonly status: "navigation/status.svg";
|
|
1459
|
+
readonly sticker: "navigation/sticker.svg";
|
|
1460
|
+
readonly 'tag-cross': "navigation/tag-cross.svg";
|
|
1461
|
+
readonly 'tag-right': "navigation/tag-right.svg";
|
|
1462
|
+
readonly 'tick-circle': "navigation/tick-circle.svg";
|
|
1463
|
+
readonly 'tick-square': "navigation/tick-square.svg";
|
|
1464
|
+
readonly trash: "navigation/trash.svg";
|
|
1465
|
+
readonly tree: "navigation/tree.svg";
|
|
1466
|
+
readonly triangle: "navigation/triangle.svg";
|
|
1467
|
+
readonly 'trush-square': "navigation/trush-square.svg";
|
|
1468
|
+
readonly verify: "navigation/verify.svg";
|
|
1469
|
+
readonly 'warning-2': "navigation/warning-2.svg";
|
|
1470
|
+
readonly 'wifi-square': "navigation/wifi-square.svg";
|
|
1471
|
+
readonly wifi: "navigation/wifi.svg";
|
|
1472
|
+
readonly 'lamp-charge': "notifications/lamp-charge.svg";
|
|
1473
|
+
readonly 'lamp-on': "notifications/lamp-on.svg";
|
|
1474
|
+
readonly 'lamp-slash': "notifications/lamp-slash.svg";
|
|
1475
|
+
readonly 'notification-1': "notifications/notification-1.svg";
|
|
1476
|
+
readonly 'notification-bing': "notifications/notification-bing.svg";
|
|
1477
|
+
readonly 'notification-favorite': "notifications/notification-favorite.svg";
|
|
1478
|
+
readonly 'notification-status': "notifications/notification-status.svg";
|
|
1479
|
+
readonly notification: "notifications/notification.svg";
|
|
1480
|
+
readonly dislike: "reactions/dislike.svg";
|
|
1481
|
+
readonly 'heart-slash': "reactions/heart-slash.svg";
|
|
1482
|
+
readonly heart: "reactions/heart.svg";
|
|
1483
|
+
readonly 'like-shapes': "reactions/like-shapes.svg";
|
|
1484
|
+
readonly like: "reactions/like.svg";
|
|
1485
|
+
readonly 'magic-star': "reactions/magic-star.svg";
|
|
1486
|
+
readonly 'medal-star': "reactions/medal-star.svg";
|
|
1487
|
+
readonly medal: "reactions/medal.svg";
|
|
1488
|
+
readonly 'message-question': "reactions/message-question.svg";
|
|
1489
|
+
readonly 'reactions-ranking': "reactions/ranking.svg";
|
|
1490
|
+
readonly 'star-1': "reactions/star-1.svg";
|
|
1491
|
+
readonly 'star-slash': "reactions/star-slash.svg";
|
|
1492
|
+
readonly star: "reactions/star.svg";
|
|
1493
|
+
readonly 'search-normal': "search/search-normal.svg";
|
|
1494
|
+
readonly 'search-status': "search/search-status.svg";
|
|
1495
|
+
readonly 'search-zoom-in': "search/search-zoom-in.svg";
|
|
1496
|
+
readonly 'search-zoom-out': "search/search-zoom-out.svg";
|
|
1497
|
+
readonly alarm: "security/alarm.svg";
|
|
1498
|
+
readonly 'security-check': "security/check.svg";
|
|
1499
|
+
readonly 'eye-slash': "security/eye-slash.svg";
|
|
1500
|
+
readonly eye: "security/eye.svg";
|
|
1501
|
+
readonly 'finger-cricle': "security/finger-cricle.svg";
|
|
1502
|
+
readonly 'finger-scan': "security/finger-scan.svg";
|
|
1503
|
+
readonly frame: "security/frame.svg";
|
|
1504
|
+
readonly 'key-square': "security/key-square.svg";
|
|
1505
|
+
readonly key: "security/key.svg";
|
|
1506
|
+
readonly 'lock-1': "security/lock-1.svg";
|
|
1507
|
+
readonly 'lock-circle': "security/lock-circle.svg";
|
|
1508
|
+
readonly 'lock-slash': "security/lock-slash.svg";
|
|
1509
|
+
readonly lock: "security/lock.svg";
|
|
1510
|
+
readonly 'password-check': "security/password-check.svg";
|
|
1511
|
+
readonly 'security-radar': "security/radar.svg";
|
|
1512
|
+
readonly 'scan-barcode': "security/scan-barcode.svg";
|
|
1513
|
+
readonly scan: "security/scan.svg";
|
|
1514
|
+
readonly scanner: "security/scanner.svg";
|
|
1515
|
+
readonly scanning: "security/scanning.svg";
|
|
1516
|
+
readonly 'security-safe': "security/security-safe.svg";
|
|
1517
|
+
readonly 'security-user': "security/security-user.svg";
|
|
1518
|
+
readonly security: "security/security.svg";
|
|
1519
|
+
readonly 'shield-cross': "security/shield-cross.svg";
|
|
1520
|
+
readonly 'shield-search': "security/shield-search.svg";
|
|
1521
|
+
readonly 'shield-slash': "security/shield-slash.svg";
|
|
1522
|
+
readonly 'shield-tick': "security/shield-tick.svg";
|
|
1523
|
+
readonly shield: "security/shield.svg";
|
|
1524
|
+
readonly unlock: "security/unlock.svg";
|
|
1525
|
+
readonly 'candle-2': "settings/candle-2.svg";
|
|
1526
|
+
readonly candle: "settings/candle.svg";
|
|
1527
|
+
readonly category: "settings/category.svg";
|
|
1528
|
+
readonly 'more-2': "settings/more-2.svg";
|
|
1529
|
+
readonly more: "settings/more.svg";
|
|
1530
|
+
readonly 'setting-2': "settings/setting-2.svg";
|
|
1531
|
+
readonly 'setting-3': "settings/setting-3.svg";
|
|
1532
|
+
readonly 'setting-4': "settings/setting-4.svg";
|
|
1533
|
+
readonly 'setting-5': "settings/setting-5.svg";
|
|
1534
|
+
readonly setting: "settings/setting.svg";
|
|
1535
|
+
readonly 'calendar-edit': "time/calendar-edit.svg";
|
|
1536
|
+
readonly 'calendar-search': "time/calendar-search.svg";
|
|
1537
|
+
readonly calendar: "time/calendar.svg";
|
|
1538
|
+
readonly clock: "time/clock.svg";
|
|
1539
|
+
readonly 'security-time': "time/security-time.svg";
|
|
1540
|
+
readonly 'timer-pause': "time/timer-pause.svg";
|
|
1541
|
+
readonly 'timer-start': "time/timer-start.svg";
|
|
1542
|
+
readonly timer: "time/timer.svg";
|
|
1543
|
+
readonly 'airplane-square': "transport/airplane-square.svg";
|
|
1544
|
+
readonly airplane: "transport/airplane.svg";
|
|
1545
|
+
readonly bus: "transport/bus.svg";
|
|
1546
|
+
readonly car: "transport/car.svg";
|
|
1547
|
+
readonly driving: "transport/driving.svg";
|
|
1548
|
+
readonly 'gas-station': "transport/gas-station.svg";
|
|
1549
|
+
readonly ship: "transport/ship.svg";
|
|
1550
|
+
readonly 'smart-car': "transport/smart-car.svg";
|
|
1551
|
+
readonly user: "users/User.svg";
|
|
1552
|
+
readonly people: "users/people.svg";
|
|
1553
|
+
readonly 'profile-2user': "users/profile-2user.svg";
|
|
1554
|
+
readonly 'profile-add': "users/profile-add.svg";
|
|
1555
|
+
readonly 'profile-circle': "users/profile-circle.svg";
|
|
1556
|
+
readonly 'profile-delete': "users/profile-delete.svg";
|
|
1557
|
+
readonly 'profile-remove': "users/profile-remove.svg";
|
|
1558
|
+
readonly 'profile-tick': "users/profile-tick.svg";
|
|
1559
|
+
readonly 'tag-user': "users/tag-user.svg";
|
|
1560
|
+
readonly 'user-add': "users/user-add.svg";
|
|
1561
|
+
readonly 'user-cirlce-add': "users/user-cirlce-add.svg";
|
|
1562
|
+
readonly 'user-edit': "users/user-edit.svg";
|
|
1563
|
+
readonly 'user-minus': "users/user-minus.svg";
|
|
1564
|
+
readonly 'user-octagon': "users/user-octagon.svg";
|
|
1565
|
+
readonly 'user-remove': "users/user-remove.svg";
|
|
1566
|
+
readonly 'user-search': "users/user-search.svg";
|
|
1567
|
+
readonly 'user-square': "users/user-square.svg";
|
|
1568
|
+
readonly 'user-tag': "users/user-tag.svg";
|
|
1569
|
+
readonly 'user-tick': "users/user-tick.svg";
|
|
1570
|
+
};
|
|
1571
|
+
declare const iconsByCategory: {
|
|
1572
|
+
readonly archive: readonly ["archive-add", "archive-minus", "archive-slash", "archive-tick", "archive", "book-saved", "book-square", "receipt-square", "save-2", "save-add", "save-minus", "save-remove"];
|
|
1573
|
+
readonly arrow: readonly ["arrow-arrange-circle-2", "arrow-arrange-circle", "arrow-arrange-square-2", "arrow-arrange-square", "arrow-2", "arrow-3", "arrow-bottom", "arrow-circle-down", "arrow-circle-left", "arrow-circle-right", "arrow-circle-up", "arrow-down-1", "arrow-down", "arrow-left-1", "arrow-left-2", "arrow-left", "arrow-right-1", "arrow-right-2", "arrow-right-3", "arrow-right", "arrow-square-down", "arrow-square-left", "arrow-square-up", "arrow-swap-horizontal", "arrow-swap", "arrow-up-1", "arrow-up-2", "arrow-up", "arrow-back-square", "arrow-convert", "arrow-export-1", "arrow-export-2", "arrow-export-3", "arrow-export", "arrow-forward-square", "arrow-frame", "arrow-import-1", "arrow-import-2", "arrow-import", "arrow-login-1", "arrow-login", "arrow-logout-1", "arrow-logout", "arrow-receive-square-2", "arrow-receive-square", "arrow-received", "arrow-redo", "arrow-refresh-2", "arrow-refresh-circle", "arrow-refresh-left-square", "arrow-refresh-right-square", "arrow-refresh-square-2", "arrow-refresh", "arrow-repeat-circle", "arrow-repeat", "arrow-rotate-left", "arrow-rotate-right", "arrow-send-sqaure-2", "arrow-send-square", "arrow-send", "arrow-undo"];
|
|
1574
|
+
readonly building: readonly ["bank", "building-3", "building-4", "building", "buildings-2", "buildings", "buliding", "courthouse", "hospital", "house-2", "house"];
|
|
1575
|
+
readonly business: readonly ["activity", "chart-1", "chart-2", "chart-21", "chart-fail", "chart-success", "chart", "diagram", "favorite-chart", "graph", "hashtag", "health", "home-hashtag", "home-trend-down", "home-trend-up", "personalcard", "presention-chart", "status-up", "trend-down", "trend-up"];
|
|
1576
|
+
readonly chevron: readonly ["chevron-down", "chevron-left", "chevron-right", "chevron-up"];
|
|
1577
|
+
readonly 'content-edit': readonly ["archive-book", "bill", "clipboard-close", "clipboard-export", "clipboard-import", "clipboard-text", "clipboard-tick", "copyright", "creative-commons", "document-cloud", "document-copy", "document-download", "document-favorite", "document-filter", "document-forward", "document-like", "document-normal", "document-previous", "document-sketch", "document-text-1", "document-text", "document-upload", "document", "edit-2", "edit", "menu-board", "note-1", "note-add", "note-favorite", "note-remove", "note-text", "note", "stickynote", "task-square", "task"];
|
|
1578
|
+
readonly delivery: readonly ["3d-cube-scan", "3d-rotate", "3d-square", "box-1", "box-add", "box-remove", "box-search", "box-tick", "box-time", "box", "convert-3d-cube", "truck-fast", "truck-remove", "truck-tick", "truck-time", "truck"];
|
|
1579
|
+
readonly files: readonly ["folder-2", "folder-add", "folder-cloud", "folder-cross", "folder-favorite", "folder-minus", "folder-open", "folder"];
|
|
1580
|
+
readonly location: readonly ["arrow-square", "arrow", "direct-down", "direct-left", "direct-right", "direct-up", "discover", "global-edit", "global-refresh", "global-search", "global", "gps-slash", "gps", "location-add", "location-cross", "location-minus", "location-slash", "location-tick", "location", "map-1", "map", "picture-frame", "radar-2", "radar", "route-square", "routing-2", "routing"];
|
|
1581
|
+
readonly messages: readonly ["device-message", "direct-inbox", "direct-normal", "direct-notification", "direct-send", "direct", "directbox-default", "directbox-notif", "directbox-receive", "directbox-send", "message-2", "message-add-1", "message-add", "message-circle", "message-edit", "message-favorite", "message-minus", "message-notif", "message-remove", "message-search", "message-square", "message-text-1", "message-text", "message-tick", "message-time", "message", "messages-1", "messages-2", "messages-3", "messages", "sms-edit", "sms-notification", "sms-search", "sms-star", "sms-tracking", "sms"];
|
|
1582
|
+
readonly money: readonly ["money-archive", "card-add", "card-edit", "card-pos", "card-receive", "card-remove-1", "card-remove", "card-send", "card-slash", "card-tick-1", "card-tick", "card", "cards", "chart-square", "coin-1", "coin", "convert-card", "discount-circle", "discount-shape", "money-document", "dollar-circle", "dollar-square", "empty-wallet-add", "empty-wallet-change", "empty-wallet-remove", "empty-wallet-tick", "empty-wallet-time", "empty-wallet", "math", "money-2", "money-3", "money-4", "money-add", "money-change", "money-forbidden", "money-recive", "money-remove", "money-send", "money-tick", "money-time", "money", "moneys", "percentage-circle", "percentage-square", "receipt-2-1", "receipt-2", "receipt-add", "receipt-discount", "receipt-disscount", "receipt-edit", "receipt-item", "receipt-minus", "receipt-search", "receipt-text", "receipt", "security-card", "strongbox-2", "strongbox", "tag-2", "tag", "ticket-2", "ticket-discount", "ticket-expired", "ticket-star", "ticket", "transaction-minus", "wallet-1", "wallet-2", "wallet-3", "wallet-add", "wallet-check", "wallet-minus", "wallet-money", "wallet-remove", "wallet-search", "wallet-to-add", "wallet"];
|
|
1583
|
+
readonly navigation: readonly ["add-circle", "add-square", "add", "navigation-archive", "autobrightness", "box-2", "broom", "bubble", "check", "close-circle", "close-square", "computing", "crown", "cup", "danger", "diamonds", "navigation-discover", "dot", "filter-add", "filter-edit", "filter-remove", "filter-search", "filter-square", "filter-tick", "filter", "flag-2", "flag", "flash-circle", "flash-slash", "flash", "forbidden-2", "forbidden", "glass", "happyemoji", "home-2", "home-wifi", "home", "info-circle", "information", "judge", "lamp", "level", "menu", "minus-cirlce", "minus-square", "minus", "mirror", "more-circle", "more-square", "mouse-circle", "mouse-square", "pet", "ranking", "reserve", "send-2", "send", "share", "signpost", "slash", "sort", "sound", "status", "sticker", "tag-cross", "tag-right", "tick-circle", "tick-square", "trash", "tree", "triangle", "trush-square", "verify", "warning-2", "wifi-square", "wifi"];
|
|
1584
|
+
readonly notifications: readonly ["lamp-charge", "lamp-on", "lamp-slash", "notification-1", "notification-bing", "notification-favorite", "notification-status", "notification"];
|
|
1585
|
+
readonly original: readonly [];
|
|
1586
|
+
readonly reactions: readonly ["dislike", "heart-slash", "heart", "like-shapes", "like", "magic-star", "medal-star", "medal", "message-question", "reactions-ranking", "star-1", "star-slash", "star"];
|
|
1587
|
+
readonly search: readonly ["search-normal", "search-status", "search-zoom-in", "search-zoom-out"];
|
|
1588
|
+
readonly security: readonly ["alarm", "security-check", "eye-slash", "eye", "finger-cricle", "finger-scan", "frame", "key-square", "key", "lock-1", "lock-circle", "lock-slash", "lock", "password-check", "security-radar", "scan-barcode", "scan", "scanner", "scanning", "security-safe", "security-user", "security", "shield-cross", "shield-search", "shield-slash", "shield-tick", "shield", "unlock"];
|
|
1589
|
+
readonly settings: readonly ["candle-2", "candle", "category", "more-2", "more", "setting-2", "setting-3", "setting-4", "setting-5", "setting"];
|
|
1590
|
+
readonly time: readonly ["calendar-edit", "calendar-search", "calendar", "clock", "security-time", "timer-pause", "timer-start", "timer"];
|
|
1591
|
+
readonly transport: readonly ["airplane-square", "airplane", "bus", "car", "driving", "gas-station", "ship", "smart-car"];
|
|
1592
|
+
readonly users: readonly ["user", "people", "profile-2user", "profile-add", "profile-circle", "profile-delete", "profile-remove", "profile-tick", "tag-user", "user-add", "user-cirlce-add", "user-edit", "user-minus", "user-octagon", "user-remove", "user-search", "user-square", "user-tag", "user-tick"];
|
|
1593
|
+
};
|
|
1594
|
+
declare const iconVariants: {
|
|
1595
|
+
readonly outline: "outline";
|
|
1596
|
+
readonly filled: "filled";
|
|
1597
|
+
readonly duotone: "duotone";
|
|
1598
|
+
};
|
|
1599
|
+
declare const iconStates: {
|
|
1600
|
+
readonly default: "default";
|
|
1601
|
+
readonly hover: "hover";
|
|
1602
|
+
readonly active: "active";
|
|
1603
|
+
readonly disabled: "disabled";
|
|
1604
|
+
};
|
|
1605
|
+
declare const iconAnimations: {
|
|
1606
|
+
readonly none: "none";
|
|
1607
|
+
readonly spin: "spin";
|
|
1608
|
+
readonly pulse: "pulse";
|
|
1609
|
+
readonly bounce: "bounce";
|
|
1610
|
+
readonly ping: "ping";
|
|
1611
|
+
};
|
|
1612
|
+
type IconSize = keyof typeof iconSizes;
|
|
1613
|
+
type IconColor = keyof typeof iconColors;
|
|
1614
|
+
type IconCategory = keyof typeof iconCategories;
|
|
1615
|
+
type IconName = keyof typeof iconRegistry;
|
|
1616
|
+
type IconVariant = keyof typeof iconVariants;
|
|
1617
|
+
type IconState = keyof typeof iconStates;
|
|
1618
|
+
type IconAnimation = keyof typeof iconAnimations;
|
|
1619
|
+
declare const getIconPath: (name: IconName) => string;
|
|
1620
|
+
declare const getIconsByCategory: (category: IconCategory) => readonly IconName[];
|
|
1621
|
+
declare const getAllIconNames: () => IconName[];
|
|
1622
|
+
interface IconProps {
|
|
1623
|
+
name: IconName;
|
|
1624
|
+
size?: IconSize;
|
|
1625
|
+
color?: IconColor;
|
|
1626
|
+
variant?: IconVariant;
|
|
1627
|
+
animation?: IconAnimation;
|
|
1628
|
+
className?: string;
|
|
1629
|
+
'aria-label'?: string;
|
|
1630
|
+
'aria-hidden'?: boolean;
|
|
1631
|
+
onClick?: () => void;
|
|
1632
|
+
}
|
|
1633
|
+
declare const defaultIconConfig: {
|
|
1634
|
+
size: IconSize;
|
|
1635
|
+
color: IconColor;
|
|
1636
|
+
variant: IconVariant;
|
|
1637
|
+
animation: IconAnimation;
|
|
1638
|
+
};
|
|
1639
|
+
declare const iconTheme: {
|
|
1640
|
+
light: {
|
|
1641
|
+
default: "currentColor";
|
|
1642
|
+
muted: "hsl(var(--muted-foreground))";
|
|
1643
|
+
};
|
|
1644
|
+
dark: {
|
|
1645
|
+
default: "currentColor";
|
|
1646
|
+
muted: "hsl(var(--muted-foreground))";
|
|
1647
|
+
};
|
|
1648
|
+
};
|
|
1649
|
+
declare const iconTokens: {
|
|
1650
|
+
sizes: {
|
|
1651
|
+
readonly xs: "16px";
|
|
1652
|
+
readonly sm: "20px";
|
|
1653
|
+
readonly md: "24px";
|
|
1654
|
+
readonly lg: "32px";
|
|
1655
|
+
readonly xl: "48px";
|
|
1656
|
+
};
|
|
1657
|
+
sizeClasses: {
|
|
1658
|
+
readonly xs: "w-4 h-4";
|
|
1659
|
+
readonly sm: "w-5 h-5";
|
|
1660
|
+
readonly md: "w-6 h-6";
|
|
1661
|
+
readonly lg: "w-8 h-8";
|
|
1662
|
+
readonly xl: "w-12 h-12";
|
|
1663
|
+
};
|
|
1664
|
+
colors: {
|
|
1665
|
+
readonly default: "currentColor";
|
|
1666
|
+
readonly primary: "hsl(var(--primary))";
|
|
1667
|
+
readonly secondary: "hsl(var(--secondary))";
|
|
1668
|
+
readonly muted: "hsl(var(--muted-foreground))";
|
|
1669
|
+
readonly destructive: "hsl(var(--destructive))";
|
|
1670
|
+
readonly success: "#10b981";
|
|
1671
|
+
readonly warning: "#f59e0b";
|
|
1672
|
+
readonly info: "#3b82f6";
|
|
1673
|
+
};
|
|
1674
|
+
categories: {
|
|
1675
|
+
readonly archive: "Archive";
|
|
1676
|
+
readonly arrow: "Arrow";
|
|
1677
|
+
readonly building: "Building";
|
|
1678
|
+
readonly business: "Business";
|
|
1679
|
+
readonly chevron: "Chevron";
|
|
1680
|
+
readonly 'content-edit': "Content edit";
|
|
1681
|
+
readonly delivery: "Delivery";
|
|
1682
|
+
readonly files: "Files";
|
|
1683
|
+
readonly location: "Location";
|
|
1684
|
+
readonly messages: "Messages";
|
|
1685
|
+
readonly money: "Money";
|
|
1686
|
+
readonly navigation: "Navigation";
|
|
1687
|
+
readonly notifications: "Notifications";
|
|
1688
|
+
readonly original: "Original";
|
|
1689
|
+
readonly reactions: "Reactions";
|
|
1690
|
+
readonly search: "Search";
|
|
1691
|
+
readonly security: "Security";
|
|
1692
|
+
readonly settings: "Settings";
|
|
1693
|
+
readonly time: "Time";
|
|
1694
|
+
readonly transport: "Transport";
|
|
1695
|
+
readonly users: "Users";
|
|
1696
|
+
};
|
|
1697
|
+
registry: {
|
|
1698
|
+
readonly 'archive-add': "archive/archive-add.svg";
|
|
1699
|
+
readonly 'archive-minus': "archive/archive-minus.svg";
|
|
1700
|
+
readonly 'archive-slash': "archive/archive-slash.svg";
|
|
1701
|
+
readonly 'archive-tick': "archive/archive-tick.svg";
|
|
1702
|
+
readonly archive: "archive/archive.svg";
|
|
1703
|
+
readonly 'book-saved': "archive/book-saved.svg";
|
|
1704
|
+
readonly 'book-square': "archive/book-square.svg";
|
|
1705
|
+
readonly 'receipt-square': "archive/receipt-square.svg";
|
|
1706
|
+
readonly 'save-2': "archive/save-2.svg";
|
|
1707
|
+
readonly 'save-add': "archive/save-add.svg";
|
|
1708
|
+
readonly 'save-minus': "archive/save-minus.svg";
|
|
1709
|
+
readonly 'save-remove': "archive/save-remove.svg";
|
|
1710
|
+
readonly 'arrow-arrange-circle-2': "arrow/arrange-circle-2.svg";
|
|
1711
|
+
readonly 'arrow-arrange-circle': "arrow/arrange-circle.svg";
|
|
1712
|
+
readonly 'arrow-arrange-square-2': "arrow/arrange-square-2.svg";
|
|
1713
|
+
readonly 'arrow-arrange-square': "arrow/arrange-square.svg";
|
|
1714
|
+
readonly 'arrow-2': "arrow/arrow-2.svg";
|
|
1715
|
+
readonly 'arrow-3': "arrow/arrow-3.svg";
|
|
1716
|
+
readonly 'arrow-bottom': "arrow/arrow-bottom.svg";
|
|
1717
|
+
readonly 'arrow-circle-down': "arrow/arrow-circle-down.svg";
|
|
1718
|
+
readonly 'arrow-circle-left': "arrow/arrow-circle-left.svg";
|
|
1719
|
+
readonly 'arrow-circle-right': "arrow/arrow-circle-right.svg";
|
|
1720
|
+
readonly 'arrow-circle-up': "arrow/arrow-circle-up.svg";
|
|
1721
|
+
readonly 'arrow-down-1': "arrow/arrow-down-1.svg";
|
|
1722
|
+
readonly 'arrow-down': "arrow/arrow-down.svg";
|
|
1723
|
+
readonly 'arrow-left-1': "arrow/arrow-left-1.svg";
|
|
1724
|
+
readonly 'arrow-left-2': "arrow/arrow-left-2.svg";
|
|
1725
|
+
readonly 'arrow-left': "arrow/arrow-left.svg";
|
|
1726
|
+
readonly 'arrow-right-1': "arrow/arrow-right-1.svg";
|
|
1727
|
+
readonly 'arrow-right-2': "arrow/arrow-right-2.svg";
|
|
1728
|
+
readonly 'arrow-right-3': "arrow/arrow-right-3.svg";
|
|
1729
|
+
readonly 'arrow-right': "arrow/arrow-right.svg";
|
|
1730
|
+
readonly 'arrow-square-down': "arrow/arrow-square-down.svg";
|
|
1731
|
+
readonly 'arrow-square-left': "arrow/arrow-square-left.svg";
|
|
1732
|
+
readonly 'arrow-square-up': "arrow/arrow-square-up.svg";
|
|
1733
|
+
readonly 'arrow-swap-horizontal': "arrow/arrow-swap-horizontal.svg";
|
|
1734
|
+
readonly 'arrow-swap': "arrow/arrow-swap.svg";
|
|
1735
|
+
readonly 'arrow-up-1': "arrow/arrow-up-1.svg";
|
|
1736
|
+
readonly 'arrow-up-2': "arrow/arrow-up-2.svg";
|
|
1737
|
+
readonly 'arrow-up': "arrow/arrow-up.svg";
|
|
1738
|
+
readonly 'arrow-back-square': "arrow/back-square.svg";
|
|
1739
|
+
readonly 'arrow-convert': "arrow/convert.svg";
|
|
1740
|
+
readonly 'arrow-export-1': "arrow/export-1.svg";
|
|
1741
|
+
readonly 'arrow-export-2': "arrow/export-2.svg";
|
|
1742
|
+
readonly 'arrow-export-3': "arrow/export-3.svg";
|
|
1743
|
+
readonly 'arrow-export': "arrow/export.svg";
|
|
1744
|
+
readonly 'arrow-forward-square': "arrow/forward-square.svg";
|
|
1745
|
+
readonly 'arrow-frame': "arrow/frame.svg";
|
|
1746
|
+
readonly 'arrow-import-1': "arrow/import-1.svg";
|
|
1747
|
+
readonly 'arrow-import-2': "arrow/import-2.svg";
|
|
1748
|
+
readonly 'arrow-import': "arrow/import.svg";
|
|
1749
|
+
readonly 'arrow-login-1': "arrow/login-1.svg";
|
|
1750
|
+
readonly 'arrow-login': "arrow/login.svg";
|
|
1751
|
+
readonly 'arrow-logout-1': "arrow/logout-1.svg";
|
|
1752
|
+
readonly 'arrow-logout': "arrow/logout.svg";
|
|
1753
|
+
readonly 'arrow-receive-square-2': "arrow/receive-square-2.svg";
|
|
1754
|
+
readonly 'arrow-receive-square': "arrow/receive-square.svg";
|
|
1755
|
+
readonly 'arrow-received': "arrow/received.svg";
|
|
1756
|
+
readonly 'arrow-redo': "arrow/redo.svg";
|
|
1757
|
+
readonly 'arrow-refresh-2': "arrow/refresh-2.svg";
|
|
1758
|
+
readonly 'arrow-refresh-circle': "arrow/refresh-circle.svg";
|
|
1759
|
+
readonly 'arrow-refresh-left-square': "arrow/refresh-left-square.svg";
|
|
1760
|
+
readonly 'arrow-refresh-right-square': "arrow/refresh-right-square.svg";
|
|
1761
|
+
readonly 'arrow-refresh-square-2': "arrow/refresh-square-2.svg";
|
|
1762
|
+
readonly 'arrow-refresh': "arrow/refresh.svg";
|
|
1763
|
+
readonly 'arrow-repeat-circle': "arrow/repeat-circle.svg";
|
|
1764
|
+
readonly 'arrow-repeat': "arrow/repeat.svg";
|
|
1765
|
+
readonly 'arrow-rotate-left': "arrow/rotate-left.svg";
|
|
1766
|
+
readonly 'arrow-rotate-right': "arrow/rotate-right.svg";
|
|
1767
|
+
readonly 'arrow-send-sqaure-2': "arrow/send-sqaure-2.svg";
|
|
1768
|
+
readonly 'arrow-send-square': "arrow/send-square.svg";
|
|
1769
|
+
readonly 'arrow-send': "arrow/send.svg";
|
|
1770
|
+
readonly 'arrow-undo': "arrow/undo.svg";
|
|
1771
|
+
readonly bank: "building/bank.svg";
|
|
1772
|
+
readonly 'building-3': "building/building-3.svg";
|
|
1773
|
+
readonly 'building-4': "building/building-4.svg";
|
|
1774
|
+
readonly building: "building/building.svg";
|
|
1775
|
+
readonly 'buildings-2': "building/buildings-2.svg";
|
|
1776
|
+
readonly buildings: "building/buildings.svg";
|
|
1777
|
+
readonly buliding: "building/buliding.svg";
|
|
1778
|
+
readonly courthouse: "building/courthouse.svg";
|
|
1779
|
+
readonly hospital: "building/hospital.svg";
|
|
1780
|
+
readonly 'house-2': "building/house-2.svg";
|
|
1781
|
+
readonly house: "building/house.svg";
|
|
1782
|
+
readonly activity: "business/activity.svg";
|
|
1783
|
+
readonly 'chart-1': "business/chart-1.svg";
|
|
1784
|
+
readonly 'chart-2': "business/chart-2.svg";
|
|
1785
|
+
readonly 'chart-21': "business/chart-21.svg";
|
|
1786
|
+
readonly 'chart-fail': "business/chart-fail.svg";
|
|
1787
|
+
readonly 'chart-success': "business/chart-success.svg";
|
|
1788
|
+
readonly chart: "business/chart.svg";
|
|
1789
|
+
readonly diagram: "business/diagram.svg";
|
|
1790
|
+
readonly 'favorite-chart': "business/favorite-chart.svg";
|
|
1791
|
+
readonly graph: "business/graph.svg";
|
|
1792
|
+
readonly hashtag: "business/hashtag.svg";
|
|
1793
|
+
readonly health: "business/health.svg";
|
|
1794
|
+
readonly 'home-hashtag': "business/home-hashtag.svg";
|
|
1795
|
+
readonly 'home-trend-down': "business/home-trend-down.svg";
|
|
1796
|
+
readonly 'home-trend-up': "business/home-trend-up.svg";
|
|
1797
|
+
readonly personalcard: "business/personalcard.svg";
|
|
1798
|
+
readonly 'presention-chart': "business/presention-chart.svg";
|
|
1799
|
+
readonly 'status-up': "business/status-up.svg";
|
|
1800
|
+
readonly 'trend-down': "business/trend-down.svg";
|
|
1801
|
+
readonly 'trend-up': "business/trend-up.svg";
|
|
1802
|
+
readonly 'chevron-down': "chevron/down.svg";
|
|
1803
|
+
readonly 'chevron-left': "chevron/left.svg";
|
|
1804
|
+
readonly 'chevron-right': "chevron/right.svg";
|
|
1805
|
+
readonly 'chevron-up': "chevron/up.svg";
|
|
1806
|
+
readonly 'archive-book': "content-edit/archive-book.svg";
|
|
1807
|
+
readonly bill: "content-edit/bill.svg";
|
|
1808
|
+
readonly 'clipboard-close': "content-edit/clipboard-close.svg";
|
|
1809
|
+
readonly 'clipboard-export': "content-edit/clipboard-export.svg";
|
|
1810
|
+
readonly 'clipboard-import': "content-edit/clipboard-import.svg";
|
|
1811
|
+
readonly 'clipboard-text': "content-edit/clipboard-text.svg";
|
|
1812
|
+
readonly 'clipboard-tick': "content-edit/clipboard-tick.svg";
|
|
1813
|
+
readonly copyright: "content-edit/copyright.svg";
|
|
1814
|
+
readonly 'creative-commons': "content-edit/creative-commons.svg";
|
|
1815
|
+
readonly 'document-cloud': "content-edit/document-cloud.svg";
|
|
1816
|
+
readonly 'document-copy': "content-edit/document-copy.svg";
|
|
1817
|
+
readonly 'document-download': "content-edit/document-download.svg";
|
|
1818
|
+
readonly 'document-favorite': "content-edit/document-favorite.svg";
|
|
1819
|
+
readonly 'document-filter': "content-edit/document-filter.svg";
|
|
1820
|
+
readonly 'document-forward': "content-edit/document-forward.svg";
|
|
1821
|
+
readonly 'document-like': "content-edit/document-like.svg";
|
|
1822
|
+
readonly 'document-normal': "content-edit/document-normal.svg";
|
|
1823
|
+
readonly 'document-previous': "content-edit/document-previous.svg";
|
|
1824
|
+
readonly 'document-sketch': "content-edit/document-sketch.svg";
|
|
1825
|
+
readonly 'document-text-1': "content-edit/document-text-1.svg";
|
|
1826
|
+
readonly 'document-text': "content-edit/document-text.svg";
|
|
1827
|
+
readonly 'document-upload': "content-edit/document-upload.svg";
|
|
1828
|
+
readonly document: "content-edit/document.svg";
|
|
1829
|
+
readonly 'edit-2': "content-edit/edit-2.svg";
|
|
1830
|
+
readonly edit: "content-edit/edit.svg";
|
|
1831
|
+
readonly 'menu-board': "content-edit/menu-board.svg";
|
|
1832
|
+
readonly 'note-1': "content-edit/note-1.svg";
|
|
1833
|
+
readonly 'note-add': "content-edit/note-add.svg";
|
|
1834
|
+
readonly 'note-favorite': "content-edit/note-favorite.svg";
|
|
1835
|
+
readonly 'note-remove': "content-edit/note-remove.svg";
|
|
1836
|
+
readonly 'note-text': "content-edit/note-text.svg";
|
|
1837
|
+
readonly note: "content-edit/note.svg";
|
|
1838
|
+
readonly stickynote: "content-edit/stickynote.svg";
|
|
1839
|
+
readonly 'task-square': "content-edit/task-square.svg";
|
|
1840
|
+
readonly task: "content-edit/task.svg";
|
|
1841
|
+
readonly '3d-cube-scan': "delivery/3d-cube-scan.svg";
|
|
1842
|
+
readonly '3d-rotate': "delivery/3d-rotate.svg";
|
|
1843
|
+
readonly '3d-square': "delivery/3d-square.svg";
|
|
1844
|
+
readonly 'box-1': "delivery/box-1.svg";
|
|
1845
|
+
readonly 'box-add': "delivery/box-add.svg";
|
|
1846
|
+
readonly 'box-remove': "delivery/box-remove.svg";
|
|
1847
|
+
readonly 'box-search': "delivery/box-search.svg";
|
|
1848
|
+
readonly 'box-tick': "delivery/box-tick.svg";
|
|
1849
|
+
readonly 'box-time': "delivery/box-time.svg";
|
|
1850
|
+
readonly box: "delivery/box.svg";
|
|
1851
|
+
readonly 'convert-3d-cube': "delivery/convert-3d-cube.svg";
|
|
1852
|
+
readonly 'truck-fast': "delivery/truck-fast.svg";
|
|
1853
|
+
readonly 'truck-remove': "delivery/truck-remove.svg";
|
|
1854
|
+
readonly 'truck-tick': "delivery/truck-tick.svg";
|
|
1855
|
+
readonly 'truck-time': "delivery/truck-time.svg";
|
|
1856
|
+
readonly truck: "delivery/truck.svg";
|
|
1857
|
+
readonly 'folder-2': "files/folder-2.svg";
|
|
1858
|
+
readonly 'folder-add': "files/folder-add.svg";
|
|
1859
|
+
readonly 'folder-cloud': "files/folder-cloud.svg";
|
|
1860
|
+
readonly 'folder-cross': "files/folder-cross.svg";
|
|
1861
|
+
readonly 'folder-favorite': "files/folder-favorite.svg";
|
|
1862
|
+
readonly 'folder-minus': "files/folder-minus.svg";
|
|
1863
|
+
readonly 'folder-open': "files/folder-open.svg";
|
|
1864
|
+
readonly folder: "files/folder.svg";
|
|
1865
|
+
readonly 'arrow-square': "location/arrow-square.svg";
|
|
1866
|
+
readonly arrow: "location/arrow.svg";
|
|
1867
|
+
readonly 'direct-down': "location/direct-down.svg";
|
|
1868
|
+
readonly 'direct-left': "location/direct-left.svg";
|
|
1869
|
+
readonly 'direct-right': "location/direct-right.svg";
|
|
1870
|
+
readonly 'direct-up': "location/direct-up.svg";
|
|
1871
|
+
readonly discover: "location/discover.svg";
|
|
1872
|
+
readonly 'global-edit': "location/global-edit.svg";
|
|
1873
|
+
readonly 'global-refresh': "location/global-refresh.svg";
|
|
1874
|
+
readonly 'global-search': "location/global-search.svg";
|
|
1875
|
+
readonly global: "location/global.svg";
|
|
1876
|
+
readonly 'gps-slash': "location/gps-slash.svg";
|
|
1877
|
+
readonly gps: "location/gps.svg";
|
|
1878
|
+
readonly 'location-add': "location/location-add.svg";
|
|
1879
|
+
readonly 'location-cross': "location/location-cross.svg";
|
|
1880
|
+
readonly 'location-minus': "location/location-minus.svg";
|
|
1881
|
+
readonly 'location-slash': "location/location-slash.svg";
|
|
1882
|
+
readonly 'location-tick': "location/location-tick.svg";
|
|
1883
|
+
readonly location: "location/location.svg";
|
|
1884
|
+
readonly 'map-1': "location/map-1.svg";
|
|
1885
|
+
readonly map: "location/map.svg";
|
|
1886
|
+
readonly 'picture-frame': "location/picture-frame.svg";
|
|
1887
|
+
readonly 'radar-2': "location/radar-2.svg";
|
|
1888
|
+
readonly radar: "location/radar.svg";
|
|
1889
|
+
readonly 'route-square': "location/route-square.svg";
|
|
1890
|
+
readonly 'routing-2': "location/routing-2.svg";
|
|
1891
|
+
readonly routing: "location/routing.svg";
|
|
1892
|
+
readonly 'device-message': "messages/device-message.svg";
|
|
1893
|
+
readonly 'direct-inbox': "messages/direct-inbox.svg";
|
|
1894
|
+
readonly 'direct-normal': "messages/direct-normal.svg";
|
|
1895
|
+
readonly 'direct-notification': "messages/direct-notification.svg";
|
|
1896
|
+
readonly 'direct-send': "messages/direct-send.svg";
|
|
1897
|
+
readonly direct: "messages/direct.svg";
|
|
1898
|
+
readonly 'directbox-default': "messages/directbox-default.svg";
|
|
1899
|
+
readonly 'directbox-notif': "messages/directbox-notif.svg";
|
|
1900
|
+
readonly 'directbox-receive': "messages/directbox-receive.svg";
|
|
1901
|
+
readonly 'directbox-send': "messages/directbox-send.svg";
|
|
1902
|
+
readonly 'message-2': "messages/message-2.svg";
|
|
1903
|
+
readonly 'message-add-1': "messages/message-add-1.svg";
|
|
1904
|
+
readonly 'message-add': "messages/message-add.svg";
|
|
1905
|
+
readonly 'message-circle': "messages/message-circle.svg";
|
|
1906
|
+
readonly 'message-edit': "messages/message-edit.svg";
|
|
1907
|
+
readonly 'message-favorite': "messages/message-favorite.svg";
|
|
1908
|
+
readonly 'message-minus': "messages/message-minus.svg";
|
|
1909
|
+
readonly 'message-notif': "messages/message-notif.svg";
|
|
1910
|
+
readonly 'message-remove': "messages/message-remove.svg";
|
|
1911
|
+
readonly 'message-search': "messages/message-search.svg";
|
|
1912
|
+
readonly 'message-square': "messages/message-square.svg";
|
|
1913
|
+
readonly 'message-text-1': "messages/message-text-1.svg";
|
|
1914
|
+
readonly 'message-text': "messages/message-text.svg";
|
|
1915
|
+
readonly 'message-tick': "messages/message-tick.svg";
|
|
1916
|
+
readonly 'message-time': "messages/message-time.svg";
|
|
1917
|
+
readonly message: "messages/message.svg";
|
|
1918
|
+
readonly 'messages-1': "messages/messages-1.svg";
|
|
1919
|
+
readonly 'messages-2': "messages/messages-2.svg";
|
|
1920
|
+
readonly 'messages-3': "messages/messages-3.svg";
|
|
1921
|
+
readonly messages: "messages/messages.svg";
|
|
1922
|
+
readonly 'sms-edit': "messages/sms-edit.svg";
|
|
1923
|
+
readonly 'sms-notification': "messages/sms-notification.svg";
|
|
1924
|
+
readonly 'sms-search': "messages/sms-search.svg";
|
|
1925
|
+
readonly 'sms-star': "messages/sms-star.svg";
|
|
1926
|
+
readonly 'sms-tracking': "messages/sms-tracking.svg";
|
|
1927
|
+
readonly sms: "messages/sms.svg";
|
|
1928
|
+
readonly 'money-archive': "money/archive.svg";
|
|
1929
|
+
readonly 'card-add': "money/card-add.svg";
|
|
1930
|
+
readonly 'card-edit': "money/card-edit.svg";
|
|
1931
|
+
readonly 'card-pos': "money/card-pos.svg";
|
|
1932
|
+
readonly 'card-receive': "money/card-receive.svg";
|
|
1933
|
+
readonly 'card-remove-1': "money/card-remove-1.svg";
|
|
1934
|
+
readonly 'card-remove': "money/card-remove.svg";
|
|
1935
|
+
readonly 'card-send': "money/card-send.svg";
|
|
1936
|
+
readonly 'card-slash': "money/card-slash.svg";
|
|
1937
|
+
readonly 'card-tick-1': "money/card-tick-1.svg";
|
|
1938
|
+
readonly 'card-tick': "money/card-tick.svg";
|
|
1939
|
+
readonly card: "money/card.svg";
|
|
1940
|
+
readonly cards: "money/cards.svg";
|
|
1941
|
+
readonly 'chart-square': "money/chart-square.svg";
|
|
1942
|
+
readonly 'coin-1': "money/coin-1.svg";
|
|
1943
|
+
readonly coin: "money/coin.svg";
|
|
1944
|
+
readonly 'convert-card': "money/convert-card.svg";
|
|
1945
|
+
readonly 'discount-circle': "money/discount-circle.svg";
|
|
1946
|
+
readonly 'discount-shape': "money/discount-shape.svg";
|
|
1947
|
+
readonly 'money-document': "money/document.svg";
|
|
1948
|
+
readonly 'dollar-circle': "money/dollar-circle.svg";
|
|
1949
|
+
readonly 'dollar-square': "money/dollar-square.svg";
|
|
1950
|
+
readonly 'empty-wallet-add': "money/empty-wallet-add.svg";
|
|
1951
|
+
readonly 'empty-wallet-change': "money/empty-wallet-change.svg";
|
|
1952
|
+
readonly 'empty-wallet-remove': "money/empty-wallet-remove.svg";
|
|
1953
|
+
readonly 'empty-wallet-tick': "money/empty-wallet-tick.svg";
|
|
1954
|
+
readonly 'empty-wallet-time': "money/empty-wallet-time.svg";
|
|
1955
|
+
readonly 'empty-wallet': "money/empty-wallet.svg";
|
|
1956
|
+
readonly math: "money/math.svg";
|
|
1957
|
+
readonly 'money-2': "money/money-2.svg";
|
|
1958
|
+
readonly 'money-3': "money/money-3.svg";
|
|
1959
|
+
readonly 'money-4': "money/money-4.svg";
|
|
1960
|
+
readonly 'money-add': "money/money-add.svg";
|
|
1961
|
+
readonly 'money-change': "money/money-change.svg";
|
|
1962
|
+
readonly 'money-forbidden': "money/money-forbidden.svg";
|
|
1963
|
+
readonly 'money-recive': "money/money-recive.svg";
|
|
1964
|
+
readonly 'money-remove': "money/money-remove.svg";
|
|
1965
|
+
readonly 'money-send': "money/money-send.svg";
|
|
1966
|
+
readonly 'money-tick': "money/money-tick.svg";
|
|
1967
|
+
readonly 'money-time': "money/money-time.svg";
|
|
1968
|
+
readonly money: "money/money.svg";
|
|
1969
|
+
readonly moneys: "money/moneys.svg";
|
|
1970
|
+
readonly 'percentage-circle': "money/percentage-circle.svg";
|
|
1971
|
+
readonly 'percentage-square': "money/percentage-square.svg";
|
|
1972
|
+
readonly 'receipt-2-1': "money/receipt-2-1.svg";
|
|
1973
|
+
readonly 'receipt-2': "money/receipt-2.svg";
|
|
1974
|
+
readonly 'receipt-add': "money/receipt-add.svg";
|
|
1975
|
+
readonly 'receipt-discount': "money/receipt-discount.svg";
|
|
1976
|
+
readonly 'receipt-disscount': "money/receipt-disscount.svg";
|
|
1977
|
+
readonly 'receipt-edit': "money/receipt-edit.svg";
|
|
1978
|
+
readonly 'receipt-item': "money/receipt-item.svg";
|
|
1979
|
+
readonly 'receipt-minus': "money/receipt-minus.svg";
|
|
1980
|
+
readonly 'receipt-search': "money/receipt-search.svg";
|
|
1981
|
+
readonly 'receipt-text': "money/receipt-text.svg";
|
|
1982
|
+
readonly receipt: "money/receipt.svg";
|
|
1983
|
+
readonly 'security-card': "money/security-card.svg";
|
|
1984
|
+
readonly 'strongbox-2': "money/strongbox-2.svg";
|
|
1985
|
+
readonly strongbox: "money/strongbox.svg";
|
|
1986
|
+
readonly 'tag-2': "money/tag-2.svg";
|
|
1987
|
+
readonly tag: "money/tag.svg";
|
|
1988
|
+
readonly 'ticket-2': "money/ticket-2.svg";
|
|
1989
|
+
readonly 'ticket-discount': "money/ticket-discount.svg";
|
|
1990
|
+
readonly 'ticket-expired': "money/ticket-expired.svg";
|
|
1991
|
+
readonly 'ticket-star': "money/ticket-star.svg";
|
|
1992
|
+
readonly ticket: "money/ticket.svg";
|
|
1993
|
+
readonly 'transaction-minus': "money/transaction-minus.svg";
|
|
1994
|
+
readonly 'wallet-1': "money/wallet-1.svg";
|
|
1995
|
+
readonly 'wallet-2': "money/wallet-2.svg";
|
|
1996
|
+
readonly 'wallet-3': "money/wallet-3.svg";
|
|
1997
|
+
readonly 'wallet-add': "money/wallet-add.svg";
|
|
1998
|
+
readonly 'wallet-check': "money/wallet-check.svg";
|
|
1999
|
+
readonly 'wallet-minus': "money/wallet-minus.svg";
|
|
2000
|
+
readonly 'wallet-money': "money/wallet-money.svg";
|
|
2001
|
+
readonly 'wallet-remove': "money/wallet-remove.svg";
|
|
2002
|
+
readonly 'wallet-search': "money/wallet-search.svg";
|
|
2003
|
+
readonly 'wallet-to-add': "money/wallet-to-add.svg";
|
|
2004
|
+
readonly wallet: "money/wallet.svg";
|
|
2005
|
+
readonly 'add-circle': "navigation/add-circle.svg";
|
|
2006
|
+
readonly 'add-square': "navigation/add-square.svg";
|
|
2007
|
+
readonly add: "navigation/add.svg";
|
|
2008
|
+
readonly 'navigation-archive': "navigation/archive.svg";
|
|
2009
|
+
readonly autobrightness: "navigation/autobrightness.svg";
|
|
2010
|
+
readonly 'box-2': "navigation/box-2.svg";
|
|
2011
|
+
readonly broom: "navigation/broom.svg";
|
|
2012
|
+
readonly bubble: "navigation/bubble.svg";
|
|
2013
|
+
readonly check: "navigation/check.svg";
|
|
2014
|
+
readonly 'close-circle': "navigation/close-circle.svg";
|
|
2015
|
+
readonly 'close-square': "navigation/close-square.svg";
|
|
2016
|
+
readonly computing: "navigation/computing.svg";
|
|
2017
|
+
readonly crown: "navigation/crown.svg";
|
|
2018
|
+
readonly cup: "navigation/cup.svg";
|
|
2019
|
+
readonly danger: "navigation/danger.svg";
|
|
2020
|
+
readonly diamonds: "navigation/diamonds.svg";
|
|
2021
|
+
readonly 'navigation-discover': "navigation/discover.svg";
|
|
2022
|
+
readonly dot: "navigation/dot.svg";
|
|
2023
|
+
readonly 'filter-add': "navigation/filter-add.svg";
|
|
2024
|
+
readonly 'filter-edit': "navigation/filter-edit.svg";
|
|
2025
|
+
readonly 'filter-remove': "navigation/filter-remove.svg";
|
|
2026
|
+
readonly 'filter-search': "navigation/filter-search.svg";
|
|
2027
|
+
readonly 'filter-square': "navigation/filter-square.svg";
|
|
2028
|
+
readonly 'filter-tick': "navigation/filter-tick.svg";
|
|
2029
|
+
readonly filter: "navigation/filter.svg";
|
|
2030
|
+
readonly 'flag-2': "navigation/flag-2.svg";
|
|
2031
|
+
readonly flag: "navigation/flag.svg";
|
|
2032
|
+
readonly 'flash-circle': "navigation/flash-circle.svg";
|
|
2033
|
+
readonly 'flash-slash': "navigation/flash-slash.svg";
|
|
2034
|
+
readonly flash: "navigation/flash.svg";
|
|
2035
|
+
readonly 'forbidden-2': "navigation/forbidden-2.svg";
|
|
2036
|
+
readonly forbidden: "navigation/forbidden.svg";
|
|
2037
|
+
readonly glass: "navigation/glass.svg";
|
|
2038
|
+
readonly happyemoji: "navigation/happyemoji.svg";
|
|
2039
|
+
readonly 'home-2': "navigation/home-2.svg";
|
|
2040
|
+
readonly 'home-wifi': "navigation/home-wifi.svg";
|
|
2041
|
+
readonly home: "navigation/home.svg";
|
|
2042
|
+
readonly 'info-circle': "navigation/info-circle.svg";
|
|
2043
|
+
readonly information: "navigation/information.svg";
|
|
2044
|
+
readonly judge: "navigation/judge.svg";
|
|
2045
|
+
readonly lamp: "navigation/lamp.svg";
|
|
2046
|
+
readonly level: "navigation/level.svg";
|
|
2047
|
+
readonly menu: "navigation/menu.svg";
|
|
2048
|
+
readonly 'minus-cirlce': "navigation/minus-cirlce.svg";
|
|
2049
|
+
readonly 'minus-square': "navigation/minus-square.svg";
|
|
2050
|
+
readonly minus: "navigation/minus.svg";
|
|
2051
|
+
readonly mirror: "navigation/mirror.svg";
|
|
2052
|
+
readonly 'more-circle': "navigation/more-circle.svg";
|
|
2053
|
+
readonly 'more-square': "navigation/more-square.svg";
|
|
2054
|
+
readonly 'mouse-circle': "navigation/mouse-circle.svg";
|
|
2055
|
+
readonly 'mouse-square': "navigation/mouse-square.svg";
|
|
2056
|
+
readonly pet: "navigation/pet.svg";
|
|
2057
|
+
readonly ranking: "navigation/ranking.svg";
|
|
2058
|
+
readonly reserve: "navigation/reserve.svg";
|
|
2059
|
+
readonly 'send-2': "navigation/send-2.svg";
|
|
2060
|
+
readonly send: "navigation/send.svg";
|
|
2061
|
+
readonly share: "navigation/share.svg";
|
|
2062
|
+
readonly signpost: "navigation/signpost.svg";
|
|
2063
|
+
readonly slash: "navigation/slash.svg";
|
|
2064
|
+
readonly sort: "navigation/sort.svg";
|
|
2065
|
+
readonly sound: "navigation/sound.svg";
|
|
2066
|
+
readonly status: "navigation/status.svg";
|
|
2067
|
+
readonly sticker: "navigation/sticker.svg";
|
|
2068
|
+
readonly 'tag-cross': "navigation/tag-cross.svg";
|
|
2069
|
+
readonly 'tag-right': "navigation/tag-right.svg";
|
|
2070
|
+
readonly 'tick-circle': "navigation/tick-circle.svg";
|
|
2071
|
+
readonly 'tick-square': "navigation/tick-square.svg";
|
|
2072
|
+
readonly trash: "navigation/trash.svg";
|
|
2073
|
+
readonly tree: "navigation/tree.svg";
|
|
2074
|
+
readonly triangle: "navigation/triangle.svg";
|
|
2075
|
+
readonly 'trush-square': "navigation/trush-square.svg";
|
|
2076
|
+
readonly verify: "navigation/verify.svg";
|
|
2077
|
+
readonly 'warning-2': "navigation/warning-2.svg";
|
|
2078
|
+
readonly 'wifi-square': "navigation/wifi-square.svg";
|
|
2079
|
+
readonly wifi: "navigation/wifi.svg";
|
|
2080
|
+
readonly 'lamp-charge': "notifications/lamp-charge.svg";
|
|
2081
|
+
readonly 'lamp-on': "notifications/lamp-on.svg";
|
|
2082
|
+
readonly 'lamp-slash': "notifications/lamp-slash.svg";
|
|
2083
|
+
readonly 'notification-1': "notifications/notification-1.svg";
|
|
2084
|
+
readonly 'notification-bing': "notifications/notification-bing.svg";
|
|
2085
|
+
readonly 'notification-favorite': "notifications/notification-favorite.svg";
|
|
2086
|
+
readonly 'notification-status': "notifications/notification-status.svg";
|
|
2087
|
+
readonly notification: "notifications/notification.svg";
|
|
2088
|
+
readonly dislike: "reactions/dislike.svg";
|
|
2089
|
+
readonly 'heart-slash': "reactions/heart-slash.svg";
|
|
2090
|
+
readonly heart: "reactions/heart.svg";
|
|
2091
|
+
readonly 'like-shapes': "reactions/like-shapes.svg";
|
|
2092
|
+
readonly like: "reactions/like.svg";
|
|
2093
|
+
readonly 'magic-star': "reactions/magic-star.svg";
|
|
2094
|
+
readonly 'medal-star': "reactions/medal-star.svg";
|
|
2095
|
+
readonly medal: "reactions/medal.svg";
|
|
2096
|
+
readonly 'message-question': "reactions/message-question.svg";
|
|
2097
|
+
readonly 'reactions-ranking': "reactions/ranking.svg";
|
|
2098
|
+
readonly 'star-1': "reactions/star-1.svg";
|
|
2099
|
+
readonly 'star-slash': "reactions/star-slash.svg";
|
|
2100
|
+
readonly star: "reactions/star.svg";
|
|
2101
|
+
readonly 'search-normal': "search/search-normal.svg";
|
|
2102
|
+
readonly 'search-status': "search/search-status.svg";
|
|
2103
|
+
readonly 'search-zoom-in': "search/search-zoom-in.svg";
|
|
2104
|
+
readonly 'search-zoom-out': "search/search-zoom-out.svg";
|
|
2105
|
+
readonly alarm: "security/alarm.svg";
|
|
2106
|
+
readonly 'security-check': "security/check.svg";
|
|
2107
|
+
readonly 'eye-slash': "security/eye-slash.svg";
|
|
2108
|
+
readonly eye: "security/eye.svg";
|
|
2109
|
+
readonly 'finger-cricle': "security/finger-cricle.svg";
|
|
2110
|
+
readonly 'finger-scan': "security/finger-scan.svg";
|
|
2111
|
+
readonly frame: "security/frame.svg";
|
|
2112
|
+
readonly 'key-square': "security/key-square.svg";
|
|
2113
|
+
readonly key: "security/key.svg";
|
|
2114
|
+
readonly 'lock-1': "security/lock-1.svg";
|
|
2115
|
+
readonly 'lock-circle': "security/lock-circle.svg";
|
|
2116
|
+
readonly 'lock-slash': "security/lock-slash.svg";
|
|
2117
|
+
readonly lock: "security/lock.svg";
|
|
2118
|
+
readonly 'password-check': "security/password-check.svg";
|
|
2119
|
+
readonly 'security-radar': "security/radar.svg";
|
|
2120
|
+
readonly 'scan-barcode': "security/scan-barcode.svg";
|
|
2121
|
+
readonly scan: "security/scan.svg";
|
|
2122
|
+
readonly scanner: "security/scanner.svg";
|
|
2123
|
+
readonly scanning: "security/scanning.svg";
|
|
2124
|
+
readonly 'security-safe': "security/security-safe.svg";
|
|
2125
|
+
readonly 'security-user': "security/security-user.svg";
|
|
2126
|
+
readonly security: "security/security.svg";
|
|
2127
|
+
readonly 'shield-cross': "security/shield-cross.svg";
|
|
2128
|
+
readonly 'shield-search': "security/shield-search.svg";
|
|
2129
|
+
readonly 'shield-slash': "security/shield-slash.svg";
|
|
2130
|
+
readonly 'shield-tick': "security/shield-tick.svg";
|
|
2131
|
+
readonly shield: "security/shield.svg";
|
|
2132
|
+
readonly unlock: "security/unlock.svg";
|
|
2133
|
+
readonly 'candle-2': "settings/candle-2.svg";
|
|
2134
|
+
readonly candle: "settings/candle.svg";
|
|
2135
|
+
readonly category: "settings/category.svg";
|
|
2136
|
+
readonly 'more-2': "settings/more-2.svg";
|
|
2137
|
+
readonly more: "settings/more.svg";
|
|
2138
|
+
readonly 'setting-2': "settings/setting-2.svg";
|
|
2139
|
+
readonly 'setting-3': "settings/setting-3.svg";
|
|
2140
|
+
readonly 'setting-4': "settings/setting-4.svg";
|
|
2141
|
+
readonly 'setting-5': "settings/setting-5.svg";
|
|
2142
|
+
readonly setting: "settings/setting.svg";
|
|
2143
|
+
readonly 'calendar-edit': "time/calendar-edit.svg";
|
|
2144
|
+
readonly 'calendar-search': "time/calendar-search.svg";
|
|
2145
|
+
readonly calendar: "time/calendar.svg";
|
|
2146
|
+
readonly clock: "time/clock.svg";
|
|
2147
|
+
readonly 'security-time': "time/security-time.svg";
|
|
2148
|
+
readonly 'timer-pause': "time/timer-pause.svg";
|
|
2149
|
+
readonly 'timer-start': "time/timer-start.svg";
|
|
2150
|
+
readonly timer: "time/timer.svg";
|
|
2151
|
+
readonly 'airplane-square': "transport/airplane-square.svg";
|
|
2152
|
+
readonly airplane: "transport/airplane.svg";
|
|
2153
|
+
readonly bus: "transport/bus.svg";
|
|
2154
|
+
readonly car: "transport/car.svg";
|
|
2155
|
+
readonly driving: "transport/driving.svg";
|
|
2156
|
+
readonly 'gas-station': "transport/gas-station.svg";
|
|
2157
|
+
readonly ship: "transport/ship.svg";
|
|
2158
|
+
readonly 'smart-car': "transport/smart-car.svg";
|
|
2159
|
+
readonly user: "users/User.svg";
|
|
2160
|
+
readonly people: "users/people.svg";
|
|
2161
|
+
readonly 'profile-2user': "users/profile-2user.svg";
|
|
2162
|
+
readonly 'profile-add': "users/profile-add.svg";
|
|
2163
|
+
readonly 'profile-circle': "users/profile-circle.svg";
|
|
2164
|
+
readonly 'profile-delete': "users/profile-delete.svg";
|
|
2165
|
+
readonly 'profile-remove': "users/profile-remove.svg";
|
|
2166
|
+
readonly 'profile-tick': "users/profile-tick.svg";
|
|
2167
|
+
readonly 'tag-user': "users/tag-user.svg";
|
|
2168
|
+
readonly 'user-add': "users/user-add.svg";
|
|
2169
|
+
readonly 'user-cirlce-add': "users/user-cirlce-add.svg";
|
|
2170
|
+
readonly 'user-edit': "users/user-edit.svg";
|
|
2171
|
+
readonly 'user-minus': "users/user-minus.svg";
|
|
2172
|
+
readonly 'user-octagon': "users/user-octagon.svg";
|
|
2173
|
+
readonly 'user-remove': "users/user-remove.svg";
|
|
2174
|
+
readonly 'user-search': "users/user-search.svg";
|
|
2175
|
+
readonly 'user-square': "users/user-square.svg";
|
|
2176
|
+
readonly 'user-tag': "users/user-tag.svg";
|
|
2177
|
+
readonly 'user-tick': "users/user-tick.svg";
|
|
2178
|
+
};
|
|
2179
|
+
byCategory: {
|
|
2180
|
+
readonly archive: readonly ["archive-add", "archive-minus", "archive-slash", "archive-tick", "archive", "book-saved", "book-square", "receipt-square", "save-2", "save-add", "save-minus", "save-remove"];
|
|
2181
|
+
readonly arrow: readonly ["arrow-arrange-circle-2", "arrow-arrange-circle", "arrow-arrange-square-2", "arrow-arrange-square", "arrow-2", "arrow-3", "arrow-bottom", "arrow-circle-down", "arrow-circle-left", "arrow-circle-right", "arrow-circle-up", "arrow-down-1", "arrow-down", "arrow-left-1", "arrow-left-2", "arrow-left", "arrow-right-1", "arrow-right-2", "arrow-right-3", "arrow-right", "arrow-square-down", "arrow-square-left", "arrow-square-up", "arrow-swap-horizontal", "arrow-swap", "arrow-up-1", "arrow-up-2", "arrow-up", "arrow-back-square", "arrow-convert", "arrow-export-1", "arrow-export-2", "arrow-export-3", "arrow-export", "arrow-forward-square", "arrow-frame", "arrow-import-1", "arrow-import-2", "arrow-import", "arrow-login-1", "arrow-login", "arrow-logout-1", "arrow-logout", "arrow-receive-square-2", "arrow-receive-square", "arrow-received", "arrow-redo", "arrow-refresh-2", "arrow-refresh-circle", "arrow-refresh-left-square", "arrow-refresh-right-square", "arrow-refresh-square-2", "arrow-refresh", "arrow-repeat-circle", "arrow-repeat", "arrow-rotate-left", "arrow-rotate-right", "arrow-send-sqaure-2", "arrow-send-square", "arrow-send", "arrow-undo"];
|
|
2182
|
+
readonly building: readonly ["bank", "building-3", "building-4", "building", "buildings-2", "buildings", "buliding", "courthouse", "hospital", "house-2", "house"];
|
|
2183
|
+
readonly business: readonly ["activity", "chart-1", "chart-2", "chart-21", "chart-fail", "chart-success", "chart", "diagram", "favorite-chart", "graph", "hashtag", "health", "home-hashtag", "home-trend-down", "home-trend-up", "personalcard", "presention-chart", "status-up", "trend-down", "trend-up"];
|
|
2184
|
+
readonly chevron: readonly ["chevron-down", "chevron-left", "chevron-right", "chevron-up"];
|
|
2185
|
+
readonly 'content-edit': readonly ["archive-book", "bill", "clipboard-close", "clipboard-export", "clipboard-import", "clipboard-text", "clipboard-tick", "copyright", "creative-commons", "document-cloud", "document-copy", "document-download", "document-favorite", "document-filter", "document-forward", "document-like", "document-normal", "document-previous", "document-sketch", "document-text-1", "document-text", "document-upload", "document", "edit-2", "edit", "menu-board", "note-1", "note-add", "note-favorite", "note-remove", "note-text", "note", "stickynote", "task-square", "task"];
|
|
2186
|
+
readonly delivery: readonly ["3d-cube-scan", "3d-rotate", "3d-square", "box-1", "box-add", "box-remove", "box-search", "box-tick", "box-time", "box", "convert-3d-cube", "truck-fast", "truck-remove", "truck-tick", "truck-time", "truck"];
|
|
2187
|
+
readonly files: readonly ["folder-2", "folder-add", "folder-cloud", "folder-cross", "folder-favorite", "folder-minus", "folder-open", "folder"];
|
|
2188
|
+
readonly location: readonly ["arrow-square", "arrow", "direct-down", "direct-left", "direct-right", "direct-up", "discover", "global-edit", "global-refresh", "global-search", "global", "gps-slash", "gps", "location-add", "location-cross", "location-minus", "location-slash", "location-tick", "location", "map-1", "map", "picture-frame", "radar-2", "radar", "route-square", "routing-2", "routing"];
|
|
2189
|
+
readonly messages: readonly ["device-message", "direct-inbox", "direct-normal", "direct-notification", "direct-send", "direct", "directbox-default", "directbox-notif", "directbox-receive", "directbox-send", "message-2", "message-add-1", "message-add", "message-circle", "message-edit", "message-favorite", "message-minus", "message-notif", "message-remove", "message-search", "message-square", "message-text-1", "message-text", "message-tick", "message-time", "message", "messages-1", "messages-2", "messages-3", "messages", "sms-edit", "sms-notification", "sms-search", "sms-star", "sms-tracking", "sms"];
|
|
2190
|
+
readonly money: readonly ["money-archive", "card-add", "card-edit", "card-pos", "card-receive", "card-remove-1", "card-remove", "card-send", "card-slash", "card-tick-1", "card-tick", "card", "cards", "chart-square", "coin-1", "coin", "convert-card", "discount-circle", "discount-shape", "money-document", "dollar-circle", "dollar-square", "empty-wallet-add", "empty-wallet-change", "empty-wallet-remove", "empty-wallet-tick", "empty-wallet-time", "empty-wallet", "math", "money-2", "money-3", "money-4", "money-add", "money-change", "money-forbidden", "money-recive", "money-remove", "money-send", "money-tick", "money-time", "money", "moneys", "percentage-circle", "percentage-square", "receipt-2-1", "receipt-2", "receipt-add", "receipt-discount", "receipt-disscount", "receipt-edit", "receipt-item", "receipt-minus", "receipt-search", "receipt-text", "receipt", "security-card", "strongbox-2", "strongbox", "tag-2", "tag", "ticket-2", "ticket-discount", "ticket-expired", "ticket-star", "ticket", "transaction-minus", "wallet-1", "wallet-2", "wallet-3", "wallet-add", "wallet-check", "wallet-minus", "wallet-money", "wallet-remove", "wallet-search", "wallet-to-add", "wallet"];
|
|
2191
|
+
readonly navigation: readonly ["add-circle", "add-square", "add", "navigation-archive", "autobrightness", "box-2", "broom", "bubble", "check", "close-circle", "close-square", "computing", "crown", "cup", "danger", "diamonds", "navigation-discover", "dot", "filter-add", "filter-edit", "filter-remove", "filter-search", "filter-square", "filter-tick", "filter", "flag-2", "flag", "flash-circle", "flash-slash", "flash", "forbidden-2", "forbidden", "glass", "happyemoji", "home-2", "home-wifi", "home", "info-circle", "information", "judge", "lamp", "level", "menu", "minus-cirlce", "minus-square", "minus", "mirror", "more-circle", "more-square", "mouse-circle", "mouse-square", "pet", "ranking", "reserve", "send-2", "send", "share", "signpost", "slash", "sort", "sound", "status", "sticker", "tag-cross", "tag-right", "tick-circle", "tick-square", "trash", "tree", "triangle", "trush-square", "verify", "warning-2", "wifi-square", "wifi"];
|
|
2192
|
+
readonly notifications: readonly ["lamp-charge", "lamp-on", "lamp-slash", "notification-1", "notification-bing", "notification-favorite", "notification-status", "notification"];
|
|
2193
|
+
readonly original: readonly [];
|
|
2194
|
+
readonly reactions: readonly ["dislike", "heart-slash", "heart", "like-shapes", "like", "magic-star", "medal-star", "medal", "message-question", "reactions-ranking", "star-1", "star-slash", "star"];
|
|
2195
|
+
readonly search: readonly ["search-normal", "search-status", "search-zoom-in", "search-zoom-out"];
|
|
2196
|
+
readonly security: readonly ["alarm", "security-check", "eye-slash", "eye", "finger-cricle", "finger-scan", "frame", "key-square", "key", "lock-1", "lock-circle", "lock-slash", "lock", "password-check", "security-radar", "scan-barcode", "scan", "scanner", "scanning", "security-safe", "security-user", "security", "shield-cross", "shield-search", "shield-slash", "shield-tick", "shield", "unlock"];
|
|
2197
|
+
readonly settings: readonly ["candle-2", "candle", "category", "more-2", "more", "setting-2", "setting-3", "setting-4", "setting-5", "setting"];
|
|
2198
|
+
readonly time: readonly ["calendar-edit", "calendar-search", "calendar", "clock", "security-time", "timer-pause", "timer-start", "timer"];
|
|
2199
|
+
readonly transport: readonly ["airplane-square", "airplane", "bus", "car", "driving", "gas-station", "ship", "smart-car"];
|
|
2200
|
+
readonly users: readonly ["user", "people", "profile-2user", "profile-add", "profile-circle", "profile-delete", "profile-remove", "profile-tick", "tag-user", "user-add", "user-cirlce-add", "user-edit", "user-minus", "user-octagon", "user-remove", "user-search", "user-square", "user-tag", "user-tick"];
|
|
2201
|
+
};
|
|
2202
|
+
variants: {
|
|
2203
|
+
readonly outline: "outline";
|
|
2204
|
+
readonly filled: "filled";
|
|
2205
|
+
readonly duotone: "duotone";
|
|
2206
|
+
};
|
|
2207
|
+
states: {
|
|
2208
|
+
readonly default: "default";
|
|
2209
|
+
readonly hover: "hover";
|
|
2210
|
+
readonly active: "active";
|
|
2211
|
+
readonly disabled: "disabled";
|
|
2212
|
+
};
|
|
2213
|
+
animations: {
|
|
2214
|
+
readonly none: "none";
|
|
2215
|
+
readonly spin: "spin";
|
|
2216
|
+
readonly pulse: "pulse";
|
|
2217
|
+
readonly bounce: "bounce";
|
|
2218
|
+
readonly ping: "ping";
|
|
2219
|
+
};
|
|
2220
|
+
defaultConfig: {
|
|
2221
|
+
size: IconSize;
|
|
2222
|
+
color: IconColor;
|
|
2223
|
+
variant: IconVariant;
|
|
2224
|
+
animation: IconAnimation;
|
|
2225
|
+
};
|
|
2226
|
+
theme: {
|
|
2227
|
+
light: {
|
|
2228
|
+
default: "currentColor";
|
|
2229
|
+
muted: "hsl(var(--muted-foreground))";
|
|
2230
|
+
};
|
|
2231
|
+
dark: {
|
|
2232
|
+
default: "currentColor";
|
|
2233
|
+
muted: "hsl(var(--muted-foreground))";
|
|
2234
|
+
};
|
|
2235
|
+
};
|
|
2236
|
+
};
|
|
2237
|
+
|
|
2238
|
+
/**
|
|
2239
|
+
* Icon Component - Raya Design System
|
|
2240
|
+
*
|
|
2241
|
+
* A flexible SVG icon component that supports multiple sizes,
|
|
2242
|
+
* colors, animations, and accessibility features.
|
|
2243
|
+
*
|
|
2244
|
+
* Now supports all 479+ icons from the complete icon library.
|
|
2245
|
+
*/
|
|
2246
|
+
interface IconComponentProps extends Omit<IconProps, 'name'> {
|
|
2247
|
+
name: IconName;
|
|
2248
|
+
size?: IconSize;
|
|
2249
|
+
color?: IconColor;
|
|
2250
|
+
animation?: IconAnimation;
|
|
2251
|
+
className?: string;
|
|
2252
|
+
'aria-label'?: string;
|
|
2253
|
+
'aria-hidden'?: boolean;
|
|
2254
|
+
onClick?: () => void;
|
|
2255
|
+
style?: React__default.CSSProperties;
|
|
2256
|
+
}
|
|
2257
|
+
declare const Icon: React__default.ForwardRefExoticComponent<IconComponentProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
2258
|
+
|
|
2259
|
+
declare const badgeVariants: (props?: ({
|
|
2260
|
+
variant?: "default" | "danger" | "success" | "pending" | "in-progress" | null | undefined;
|
|
2261
|
+
shape?: "rounded" | "circular" | null | undefined;
|
|
2262
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2263
|
+
visual?: "solid" | "dot" | null | undefined;
|
|
2264
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
2265
|
+
interface BadgeProps extends React__default.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
2266
|
+
}
|
|
2267
|
+
declare function Badge({ className, variant, size, visual, shape, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
|
|
2268
|
+
|
|
2269
|
+
declare const tagVariants: (props?: ({
|
|
2270
|
+
variant?: "default" | "danger" | "success" | "warning" | null | undefined;
|
|
2271
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
2272
|
+
interface TagProps extends React__default.HTMLAttributes<HTMLDivElement>, VariantProps<typeof tagVariants> {
|
|
2273
|
+
showBullet?: boolean;
|
|
2274
|
+
onClose?: () => void;
|
|
2275
|
+
}
|
|
2276
|
+
declare const Tag: React__default.ForwardRefExoticComponent<TagProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2277
|
+
|
|
2278
|
+
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
2279
|
+
error?: string | boolean;
|
|
2280
|
+
helperText?: string;
|
|
2281
|
+
label?: string;
|
|
2282
|
+
required?: boolean;
|
|
2283
|
+
}
|
|
2284
|
+
declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
2285
|
+
|
|
2286
|
+
declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2287
|
+
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2288
|
+
|
|
2289
|
+
declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2290
|
+
|
|
2291
|
+
declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2292
|
+
|
|
2293
|
+
declare const Card: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2294
|
+
declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2295
|
+
declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2296
|
+
declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2297
|
+
declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2298
|
+
declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2299
|
+
|
|
2300
|
+
interface FormProps extends React$1.FormHTMLAttributes<HTMLFormElement> {
|
|
2301
|
+
}
|
|
2302
|
+
declare const Form: React$1.ForwardRefExoticComponent<FormProps & React$1.RefAttributes<HTMLFormElement>>;
|
|
2303
|
+
interface FormFieldProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2304
|
+
error?: boolean;
|
|
2305
|
+
}
|
|
2306
|
+
declare const FormField: React$1.ForwardRefExoticComponent<FormFieldProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2307
|
+
interface FormLabelProps extends React$1.LabelHTMLAttributes<HTMLLabelElement> {
|
|
2308
|
+
required?: boolean;
|
|
2309
|
+
}
|
|
2310
|
+
declare const FormLabel: React$1.ForwardRefExoticComponent<FormLabelProps & React$1.RefAttributes<HTMLLabelElement>>;
|
|
2311
|
+
interface FormMessageProps extends React$1.HTMLAttributes<HTMLParagraphElement> {
|
|
2312
|
+
type?: 'error' | 'helper' | 'success';
|
|
2313
|
+
}
|
|
2314
|
+
declare const FormMessage: React$1.ForwardRefExoticComponent<FormMessageProps & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
2315
|
+
|
|
2316
|
+
declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2317
|
+
declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2318
|
+
declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2319
|
+
declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
2320
|
+
|
|
2321
|
+
declare const progressBarContainerVariants: (props?: ({
|
|
2322
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
2323
|
+
} & class_variance_authority_dist_types.ClassProp) | undefined) => string;
|
|
2324
|
+
interface ProgressBarProps extends React__default.HTMLAttributes<HTMLDivElement>, VariantProps<typeof progressBarContainerVariants> {
|
|
2325
|
+
value: number;
|
|
2326
|
+
label?: string;
|
|
2327
|
+
showPercentage?: boolean;
|
|
2328
|
+
}
|
|
2329
|
+
declare const ProgressBar: React__default.ForwardRefExoticComponent<ProgressBarProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
2330
|
+
|
|
2331
|
+
interface ModalProps {
|
|
2332
|
+
open: boolean;
|
|
2333
|
+
onClose: () => void;
|
|
2334
|
+
children: ReactNode;
|
|
2335
|
+
}
|
|
2336
|
+
declare function Modal({ open, onClose, children }: ModalProps): react_jsx_runtime.JSX.Element | null;
|
|
2337
|
+
|
|
2338
|
+
interface AuthLayoutProps {
|
|
2339
|
+
children: ReactNode;
|
|
2340
|
+
}
|
|
2341
|
+
declare function AuthLayout({ children }: AuthLayoutProps): react_jsx_runtime.JSX.Element;
|
|
2342
|
+
|
|
2343
|
+
declare function useModal(initialOpen?: boolean): {
|
|
2344
|
+
open: boolean;
|
|
2345
|
+
openModal: () => void;
|
|
2346
|
+
closeModal: () => void;
|
|
2347
|
+
};
|
|
2348
|
+
|
|
2349
|
+
type Size = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
2350
|
+
|
|
2351
|
+
export { AuthLayout, Badge, type BadgeProps, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Form, FormField, type FormFieldProps, FormLabel, type FormLabelProps, FormMessage, type FormMessageProps, type FormProps, Icon, type IconAnimation, type IconCategory, type IconColor, type IconComponentProps, type IconName, type IconProps, type IconSize, type IconState, type IconVariant, Input, Label, Modal, ProgressBar, type ProgressBarProps, RadioGroup, RadioGroupItem, type Size, type SpacingToken, type StrokeColorToken, type StrokeDirection, type StrokeToken, Switch, Tabs, TabsContent, TabsList, TabsTrigger, Tag, type TagProps, Textarea, type TextareaProps, ThemeProvider, badgeTokens, badgeVariants, classNames, cn, colors, componentStrokes, createStroke, defaultIconConfig, fontFamily, fontSize, fontWeight, generateSpacingCSS, generateStrokesCSS, generateTypographyCSS, getAllIconNames, getIconPath, getIconsByCategory, getSpacing, getSpacingPx, getStroke, getStrokeColor, iconAnimations, iconCategories, iconColors, iconRegistry, iconSizeClasses, iconSizes, iconStates, iconTheme, iconTokens, iconVariants, iconsByCategory, letterSpacing, lineHeight, presets, responsiveStrokes, spacing, spacingPx, spacingStyles, stroke, strokeColors, strokeDirections, strokeStyles, strokeTransitions, tagTokens, tailwindSpacing, tailwindStrokes, typography, typographyVars, useModal, useTheme };
|