draft-components 0.75.3 → 1.0.0-beta
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 +1 -53
- package/css/draft-components-utilities.css +1575 -0
- package/css/draft-components-utilities.min.css +1 -0
- package/css/draft-components.css +3493 -2
- package/css/draft-components.dark.css +501 -0
- package/css/draft-components.dark.min.css +1 -0
- package/css/draft-components.min.css +1 -0
- package/dist/components/alert/alert.d.ts +10 -0
- package/dist/components/alert/alert.js +16 -0
- package/{components → dist/components}/alert/index.d.ts +0 -0
- package/{components → dist/components}/alert/index.js +0 -0
- package/dist/components/avatar/avatar.d.ts +13 -0
- package/dist/components/avatar/avatar.js +29 -0
- package/{components → dist/components}/avatar/index.d.ts +0 -0
- package/{components → dist/components}/avatar/index.js +0 -0
- package/dist/components/avatar-group/avatar-group.d.ts +7 -0
- package/dist/components/avatar-group/avatar-group.js +9 -0
- package/dist/components/avatar-group/index.d.ts +1 -0
- package/dist/components/avatar-group/index.js +17 -0
- package/dist/components/badge/badge.d.ts +8 -0
- package/dist/components/badge/badge.js +22 -0
- package/dist/components/badge/index.d.ts +1 -0
- package/dist/components/badge/index.js +17 -0
- package/dist/components/breadcrumbs/breadcrumbs-context.d.ts +9 -0
- package/dist/components/breadcrumbs/breadcrumbs-context.js +18 -0
- package/dist/components/breadcrumbs/breadcrumbs-item.d.ts +12 -0
- package/dist/components/breadcrumbs/breadcrumbs-item.js +20 -0
- package/dist/components/breadcrumbs/breadcrumbs.d.ts +7 -0
- package/dist/components/breadcrumbs/breadcrumbs.js +11 -0
- package/dist/components/breadcrumbs/index.d.ts +2 -0
- package/dist/components/breadcrumbs/index.js +18 -0
- package/dist/components/button/button.d.ts +19 -0
- package/dist/components/button/button.js +37 -0
- package/dist/components/button/icon-button.d.ts +6 -0
- package/dist/components/button/icon-button.js +10 -0
- package/dist/components/button/index.d.ts +2 -0
- package/dist/components/button/index.js +18 -0
- package/dist/components/button-group/button-group.d.ts +7 -0
- package/dist/components/button-group/button-group.js +9 -0
- package/dist/components/button-group/index.d.ts +1 -0
- package/dist/components/button-group/index.js +17 -0
- package/dist/components/caption/caption.d.ts +7 -0
- package/dist/components/caption/caption.js +25 -0
- package/dist/components/caption/icons.d.ts +5 -0
- package/dist/components/caption/icons.js +20 -0
- package/dist/components/caption/index.d.ts +1 -0
- package/dist/components/caption/index.js +17 -0
- package/dist/components/checkbox/checkbox.d.ts +10 -0
- package/dist/components/checkbox/checkbox.js +14 -0
- package/{components → dist/components}/checkbox/index.d.ts +0 -0
- package/{components → dist/components}/checkbox/index.js +0 -0
- package/dist/components/color-picker/color-picker-button.d.ts +12 -0
- package/dist/components/color-picker/color-picker-button.js +15 -0
- package/dist/components/color-picker/color-picker.d.ts +13 -0
- package/dist/components/color-picker/color-picker.js +13 -0
- package/dist/components/color-picker/index.d.ts +1 -0
- package/dist/components/color-picker/index.js +17 -0
- package/dist/components/date-picker/calendar-day.d.ts +17 -0
- package/dist/components/date-picker/calendar-day.js +16 -0
- package/dist/components/date-picker/calendar-grid-head.d.ts +7 -0
- package/dist/components/date-picker/calendar-grid-head.js +15 -0
- package/dist/components/date-picker/calendar-grid.d.ts +17 -0
- package/dist/components/date-picker/calendar-grid.js +105 -0
- package/dist/components/date-picker/calendar-header.d.ts +12 -0
- package/dist/components/date-picker/calendar-header.js +46 -0
- package/dist/components/date-picker/calendar.d.ts +11 -0
- package/dist/components/date-picker/calendar.js +23 -0
- package/dist/components/date-picker/date-helpers.d.ts +22 -0
- package/dist/components/date-picker/date-helpers.js +108 -0
- package/dist/components/date-picker/date-picker.d.ts +13 -0
- package/dist/components/date-picker/date-picker.js +19 -0
- package/dist/components/date-picker/date-range-picker.d.ts +14 -0
- package/dist/components/date-picker/date-range-picker.js +60 -0
- package/dist/components/date-picker/date-range.d.ts +13 -0
- package/dist/components/date-picker/date-range.js +27 -0
- package/dist/components/date-picker/icons.d.ts +3 -0
- package/dist/components/date-picker/icons.js +12 -0
- package/dist/components/date-picker/index.d.ts +2 -0
- package/dist/components/date-picker/index.js +18 -0
- package/dist/components/date-picker/parse-min-max-props.d.ts +8 -0
- package/dist/components/date-picker/parse-min-max-props.js +19 -0
- package/dist/components/date-picker-popover/date-picker-popover.d.ts +13 -0
- package/dist/components/date-picker-popover/date-picker-popover.js +20 -0
- package/{components → dist/components}/date-picker-popover/index.d.ts +0 -0
- package/{components → dist/components}/date-picker-popover/index.js +0 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-footer.d.ts +9 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-footer.js +9 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-presets.d.ts +10 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover-presets.js +34 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover.d.ts +26 -0
- package/dist/components/date-range-picker-popover/date-range-picker-popover.js +54 -0
- package/dist/components/date-range-picker-popover/helpers.d.ts +2 -0
- package/dist/components/date-range-picker-popover/helpers.js +15 -0
- package/dist/components/date-range-picker-popover/index.d.ts +2 -0
- package/dist/components/date-range-picker-popover/index.js +18 -0
- package/dist/components/date-range-picker-popover/types.d.ts +10 -0
- package/{components/avatar → dist/components/date-range-picker-popover}/types.js +0 -0
- package/dist/components/date-range-picker-popover/use-is-compact-view.d.ts +1 -0
- package/dist/components/date-range-picker-popover/use-is-compact-view.js +26 -0
- package/dist/components/dialog/dialog-body.d.ts +8 -0
- package/dist/components/dialog/dialog-body.js +51 -0
- package/dist/components/dialog/dialog-context.d.ts +15 -0
- package/dist/components/dialog/dialog-context.js +23 -0
- package/dist/components/dialog/dialog-footer.d.ts +5 -0
- package/dist/components/dialog/dialog-footer.js +9 -0
- package/dist/components/dialog/dialog-header.d.ts +8 -0
- package/dist/components/dialog/dialog-header.js +16 -0
- package/dist/components/dialog/dialog.d.ts +12 -0
- package/dist/components/dialog/dialog.js +46 -0
- package/dist/components/dialog/index.d.ts +4 -0
- package/dist/components/dialog/index.js +20 -0
- package/dist/components/dialog/x-mark-icon.d.ts +2 -0
- package/dist/components/dialog/x-mark-icon.js +8 -0
- package/dist/components/empty-state/empty-state.d.ts +11 -0
- package/dist/components/empty-state/empty-state.js +9 -0
- package/dist/components/empty-state/index.d.ts +1 -0
- package/dist/components/empty-state/index.js +17 -0
- package/dist/components/file-picker/file-picker.d.ts +13 -0
- package/dist/components/file-picker/file-picker.js +44 -0
- package/dist/components/file-picker/index.d.ts +1 -0
- package/dist/components/file-picker/index.js +17 -0
- package/dist/components/filter-buttons/filter-button.d.ts +7 -0
- package/dist/components/filter-buttons/filter-button.js +9 -0
- package/dist/components/filter-buttons/filter-buttons.d.ts +5 -0
- package/dist/components/filter-buttons/filter-buttons.js +26 -0
- package/dist/components/filter-buttons/index.d.ts +2 -0
- package/dist/components/filter-buttons/index.js +18 -0
- package/dist/components/form-field/form-field.d.ts +15 -0
- package/dist/components/form-field/form-field.js +25 -0
- package/{components → dist/components}/form-field/index.d.ts +0 -0
- package/{components → dist/components}/form-field/index.js +0 -0
- package/{components → dist/components}/label/index.d.ts +0 -0
- package/{components → dist/components}/label/index.js +0 -0
- package/dist/components/label/label.d.ts +5 -0
- package/dist/components/label/label.js +11 -0
- package/dist/components/menu/index.d.ts +3 -0
- package/dist/components/menu/index.js +19 -0
- package/dist/components/menu/menu-item.d.ts +11 -0
- package/dist/components/menu/menu-item.js +12 -0
- package/dist/components/menu/menu-separator.d.ts +6 -0
- package/dist/components/menu/menu-separator.js +9 -0
- package/dist/components/menu/menu.d.ts +31 -0
- package/dist/components/menu/menu.js +194 -0
- package/dist/components/nav-list/index.d.ts +3 -0
- package/dist/components/nav-list/index.js +19 -0
- package/dist/components/nav-list/nav-list-item.d.ts +13 -0
- package/dist/components/nav-list/nav-list-item.js +19 -0
- package/dist/components/nav-list/nav-list-title.d.ts +8 -0
- package/dist/components/nav-list/nav-list-title.js +9 -0
- package/dist/components/nav-list/nav-list.d.ts +5 -0
- package/dist/components/nav-list/nav-list.js +9 -0
- package/dist/components/password-input/icons.d.ts +3 -0
- package/dist/components/password-input/icons.js +12 -0
- package/{components → dist/components}/password-input/index.d.ts +0 -0
- package/{components → dist/components}/password-input/index.js +0 -0
- package/dist/components/password-input/password-input.d.ts +10 -0
- package/dist/components/password-input/password-input.js +28 -0
- package/{components → dist/components}/popover/index.d.ts +0 -0
- package/{components → dist/components}/popover/index.js +0 -0
- package/dist/components/popover/popover.d.ts +49 -0
- package/dist/components/popover/popover.js +97 -0
- package/dist/components/popover/use-page-click.d.ts +16 -0
- package/dist/components/popover/use-page-click.js +50 -0
- package/{components → dist/components}/portal/index.d.ts +0 -0
- package/{components → dist/components}/portal/index.js +0 -0
- package/dist/components/portal/portal-context.d.ts +6 -0
- package/dist/components/portal/portal-context.js +26 -0
- package/dist/components/portal/portal.d.ts +5 -0
- package/dist/components/portal/portal.js +10 -0
- package/dist/components/positioner/calc-position.d.ts +32 -0
- package/dist/components/positioner/calc-position.js +117 -0
- package/{components → dist/components}/positioner/index.d.ts +0 -0
- package/{components → dist/components}/positioner/index.js +0 -0
- package/dist/components/positioner/positioner.d.ts +20 -0
- package/dist/components/positioner/positioner.js +63 -0
- package/dist/components/positioner/types.d.ts +14 -0
- package/{components → dist/components}/positioner/types.js +0 -0
- package/dist/components/radio/index.d.ts +1 -0
- package/dist/components/radio/index.js +17 -0
- package/dist/components/radio/radio.d.ts +11 -0
- package/dist/components/radio/radio.js +22 -0
- package/{components → dist/components}/segmented-control/index.d.ts +0 -0
- package/{components → dist/components}/segmented-control/index.js +0 -0
- package/dist/components/segmented-control/segmented-control-button.d.ts +10 -0
- package/dist/components/segmented-control/segmented-control-button.js +14 -0
- package/dist/components/segmented-control/segmented-control.d.ts +15 -0
- package/dist/components/segmented-control/segmented-control.js +47 -0
- package/{components → dist/components}/select/index.d.ts +0 -0
- package/{components → dist/components}/select/index.js +0 -0
- package/dist/components/select/select.d.ts +46 -0
- package/dist/components/select/select.js +25 -0
- package/{components → dist/components}/selection-control/index.d.ts +0 -0
- package/{components → dist/components}/selection-control/index.js +0 -0
- package/dist/components/selection-control/selection-control.d.ts +14 -0
- package/dist/components/selection-control/selection-control.js +17 -0
- package/dist/components/slider/index.d.ts +2 -0
- package/dist/components/slider/index.js +20 -0
- package/dist/components/slider/slider-tick-marks.d.ts +7 -0
- package/dist/components/slider/slider-tick-marks.js +16 -0
- package/dist/components/slider/slider.d.ts +17 -0
- package/dist/components/slider/slider.js +39 -0
- package/dist/components/spinner/index.d.ts +1 -0
- package/dist/components/spinner/index.js +17 -0
- package/dist/components/spinner/spinner.d.ts +7 -0
- package/dist/components/spinner/spinner.js +9 -0
- package/{components → dist/components}/switch/index.d.ts +0 -0
- package/{components → dist/components}/switch/index.js +0 -0
- package/dist/components/switch/switch.d.ts +10 -0
- package/dist/components/switch/switch.js +13 -0
- package/dist/components/table/icons.d.ts +4 -0
- package/dist/components/table/icons.js +16 -0
- package/dist/components/table/index.d.ts +7 -0
- package/dist/components/table/index.js +23 -0
- package/dist/components/table/table-body.d.ts +5 -0
- package/dist/components/table/table-body.js +9 -0
- package/dist/components/table/table-cell.d.ts +5 -0
- package/dist/components/table/table-cell.js +9 -0
- package/dist/components/table/table-container.d.ts +13 -0
- package/dist/components/table/table-container.js +21 -0
- package/dist/components/table/table-head-cell.d.ts +10 -0
- package/dist/components/table/table-head-cell.js +28 -0
- package/dist/components/table/table-head.d.ts +7 -0
- package/dist/components/table/table-head.js +12 -0
- package/dist/components/table/table-row.d.ts +7 -0
- package/dist/components/table/table-row.js +12 -0
- package/dist/components/table/table.d.ts +11 -0
- package/dist/components/table/table.js +14 -0
- package/dist/components/tabs/index.d.ts +4 -0
- package/dist/components/tabs/index.js +20 -0
- package/dist/components/tabs/tab-list.d.ts +3 -0
- package/dist/components/tabs/tab-list.js +66 -0
- package/dist/components/tabs/tab-panel.d.ts +6 -0
- package/dist/components/tabs/tab-panel.js +15 -0
- package/dist/components/tabs/tab.d.ts +7 -0
- package/dist/components/tabs/tab.js +18 -0
- package/dist/components/tabs/tabs-context.d.ts +20 -0
- package/dist/components/tabs/tabs-context.js +30 -0
- package/dist/components/tabs/tabs.d.ts +7 -0
- package/dist/components/tabs/tabs.js +10 -0
- package/dist/components/tabs/types.d.ts +2 -0
- package/dist/components/tabs/types.js +2 -0
- package/{components → dist/components}/tag/index.d.ts +0 -0
- package/{components → dist/components}/tag/index.js +0 -0
- package/dist/components/tag/tag.d.ts +13 -0
- package/dist/components/tag/tag.js +14 -0
- package/{components → dist/components}/text-input/index.d.ts +0 -0
- package/{components → dist/components}/text-input/index.js +0 -0
- package/dist/components/text-input/text-input.d.ts +21 -0
- package/dist/components/text-input/text-input.js +24 -0
- package/{components → dist/components}/textarea/index.d.ts +0 -0
- package/{components → dist/components}/textarea/index.js +0 -0
- package/dist/components/textarea/textarea.d.ts +20 -0
- package/dist/components/textarea/textarea.js +38 -0
- package/dist/components/toast/index.d.ts +2 -0
- package/dist/components/toast/index.js +18 -0
- package/dist/components/toast/toast-button.d.ts +5 -0
- package/dist/components/toast/toast-button.js +9 -0
- package/dist/components/toast/toast.d.ts +11 -0
- package/dist/components/toast/toast.js +10 -0
- package/dist/components/toast/x-mark-icon.d.ts +2 -0
- package/dist/components/toast/x-mark-icon.js +8 -0
- package/{components → dist/components}/toaster/index.d.ts +0 -0
- package/{components → dist/components}/toaster/index.js +0 -0
- package/dist/components/toaster/toaster.d.ts +40 -0
- package/dist/components/toaster/toaster.js +134 -0
- package/{components → dist/components}/tooltip/index.d.ts +0 -0
- package/{components → dist/components}/tooltip/index.js +0 -0
- package/dist/components/tooltip/tooltip.d.ts +25 -0
- package/dist/components/tooltip/tooltip.js +79 -0
- package/dist/hooks/index.d.ts +4 -0
- package/dist/hooks/index.js +20 -0
- package/dist/hooks/use-disable-body-scroll.d.ts +5 -0
- package/dist/hooks/use-disable-body-scroll.js +34 -0
- package/dist/hooks/use-esc-key-down.d.ts +17 -0
- package/dist/hooks/use-esc-key-down.js +53 -0
- package/dist/hooks/use-focus-trap.d.ts +15 -0
- package/dist/hooks/use-focus-trap.js +86 -0
- package/dist/hooks/use-mount-transition.d.ts +32 -0
- package/dist/hooks/use-mount-transition.js +40 -0
- package/dist/index.d.ts +37 -0
- package/dist/index.js +53 -0
- package/dist/shared/keyboard-keys.d.ts +14 -0
- package/dist/shared/keyboard-keys.js +17 -0
- package/dist/shared/react-helpers.d.ts +13 -0
- package/dist/shared/react-helpers.js +49 -0
- package/dist/shared/util.d.ts +2 -0
- package/dist/shared/util.js +21 -0
- package/esm/components/alert/alert.d.ts +10 -0
- package/esm/components/alert/alert.js +12 -0
- package/esm/components/alert/index.d.ts +1 -0
- package/esm/components/alert/index.js +1 -0
- package/esm/components/avatar/avatar.d.ts +13 -0
- package/esm/components/avatar/avatar.js +26 -0
- package/esm/components/avatar/index.d.ts +1 -0
- package/esm/components/avatar/index.js +1 -0
- package/esm/components/avatar-group/avatar-group.d.ts +7 -0
- package/esm/components/avatar-group/avatar-group.js +5 -0
- package/esm/components/avatar-group/index.d.ts +1 -0
- package/esm/components/avatar-group/index.js +1 -0
- package/esm/components/badge/badge.d.ts +8 -0
- package/esm/components/badge/badge.js +18 -0
- package/esm/components/badge/index.d.ts +1 -0
- package/esm/components/badge/index.js +1 -0
- package/esm/components/breadcrumbs/breadcrumbs-context.d.ts +9 -0
- package/esm/components/breadcrumbs/breadcrumbs-context.js +13 -0
- package/esm/components/breadcrumbs/breadcrumbs-item.d.ts +12 -0
- package/esm/components/breadcrumbs/breadcrumbs-item.js +16 -0
- package/esm/components/breadcrumbs/breadcrumbs.d.ts +7 -0
- package/esm/components/breadcrumbs/breadcrumbs.js +7 -0
- package/esm/components/breadcrumbs/index.d.ts +2 -0
- package/esm/components/breadcrumbs/index.js +2 -0
- package/esm/components/button/button.d.ts +19 -0
- package/esm/components/button/button.js +34 -0
- package/esm/components/button/icon-button.d.ts +6 -0
- package/esm/components/button/icon-button.js +7 -0
- package/esm/components/button/index.d.ts +2 -0
- package/esm/components/button/index.js +2 -0
- package/esm/components/button-group/button-group.d.ts +7 -0
- package/esm/components/button-group/button-group.js +5 -0
- package/esm/components/button-group/index.d.ts +1 -0
- package/esm/components/button-group/index.js +1 -0
- package/esm/components/caption/caption.d.ts +7 -0
- package/esm/components/caption/caption.js +22 -0
- package/esm/components/caption/icons.d.ts +5 -0
- package/esm/components/caption/icons.js +13 -0
- package/esm/components/caption/index.d.ts +1 -0
- package/esm/components/caption/index.js +1 -0
- package/esm/components/checkbox/checkbox.d.ts +10 -0
- package/esm/components/checkbox/checkbox.js +11 -0
- package/esm/components/checkbox/index.d.ts +1 -0
- package/esm/components/checkbox/index.js +1 -0
- package/esm/components/color-picker/color-picker-button.d.ts +12 -0
- package/esm/components/color-picker/color-picker-button.js +11 -0
- package/esm/components/color-picker/color-picker.d.ts +13 -0
- package/esm/components/color-picker/color-picker.js +9 -0
- package/esm/components/color-picker/index.d.ts +1 -0
- package/esm/components/color-picker/index.js +1 -0
- package/esm/components/date-picker/calendar-day.d.ts +17 -0
- package/esm/components/date-picker/calendar-day.js +12 -0
- package/esm/components/date-picker/calendar-grid-head.d.ts +7 -0
- package/esm/components/date-picker/calendar-grid-head.js +11 -0
- package/esm/components/date-picker/calendar-grid.d.ts +17 -0
- package/esm/components/date-picker/calendar-grid.js +101 -0
- package/esm/components/date-picker/calendar-header.d.ts +12 -0
- package/esm/components/date-picker/calendar-header.js +42 -0
- package/esm/components/date-picker/calendar.d.ts +11 -0
- package/esm/components/date-picker/calendar.js +19 -0
- package/esm/components/date-picker/date-helpers.d.ts +22 -0
- package/esm/components/date-picker/date-helpers.js +89 -0
- package/esm/components/date-picker/date-picker.d.ts +13 -0
- package/esm/components/date-picker/date-picker.js +15 -0
- package/esm/components/date-picker/date-range-picker.d.ts +14 -0
- package/esm/components/date-picker/date-range-picker.js +56 -0
- package/esm/components/date-picker/date-range.d.ts +13 -0
- package/esm/components/date-picker/date-range.js +23 -0
- package/esm/components/date-picker/icons.d.ts +3 -0
- package/esm/components/date-picker/icons.js +7 -0
- package/esm/components/date-picker/index.d.ts +2 -0
- package/esm/components/date-picker/index.js +2 -0
- package/esm/components/date-picker/parse-min-max-props.d.ts +8 -0
- package/esm/components/date-picker/parse-min-max-props.js +15 -0
- package/esm/components/date-picker-popover/date-picker-popover.d.ts +13 -0
- package/esm/components/date-picker-popover/date-picker-popover.js +16 -0
- package/esm/components/date-picker-popover/index.d.ts +1 -0
- package/esm/components/date-picker-popover/index.js +1 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-footer.d.ts +9 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-footer.js +5 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-presets.d.ts +10 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover-presets.js +30 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover.d.ts +26 -0
- package/esm/components/date-range-picker-popover/date-range-picker-popover.js +50 -0
- package/esm/components/date-range-picker-popover/helpers.d.ts +2 -0
- package/esm/components/date-range-picker-popover/helpers.js +11 -0
- package/esm/components/date-range-picker-popover/index.d.ts +2 -0
- package/esm/components/date-range-picker-popover/index.js +2 -0
- package/esm/components/date-range-picker-popover/types.d.ts +10 -0
- package/esm/components/date-range-picker-popover/types.js +1 -0
- package/esm/components/date-range-picker-popover/use-is-compact-view.d.ts +1 -0
- package/esm/components/date-range-picker-popover/use-is-compact-view.js +22 -0
- package/esm/components/dialog/dialog-body.d.ts +8 -0
- package/esm/components/dialog/dialog-body.js +47 -0
- package/esm/components/dialog/dialog-context.d.ts +15 -0
- package/esm/components/dialog/dialog-context.js +18 -0
- package/esm/components/dialog/dialog-footer.d.ts +5 -0
- package/esm/components/dialog/dialog-footer.js +5 -0
- package/esm/components/dialog/dialog-header.d.ts +8 -0
- package/esm/components/dialog/dialog-header.js +12 -0
- package/esm/components/dialog/dialog.d.ts +12 -0
- package/esm/components/dialog/dialog.js +42 -0
- package/esm/components/dialog/index.d.ts +4 -0
- package/esm/components/dialog/index.js +4 -0
- package/esm/components/dialog/x-mark-icon.d.ts +2 -0
- package/esm/components/dialog/x-mark-icon.js +4 -0
- package/esm/components/empty-state/empty-state.d.ts +11 -0
- package/esm/components/empty-state/empty-state.js +5 -0
- package/esm/components/empty-state/index.d.ts +1 -0
- package/esm/components/empty-state/index.js +1 -0
- package/esm/components/file-picker/file-picker.d.ts +13 -0
- package/esm/components/file-picker/file-picker.js +41 -0
- package/esm/components/file-picker/index.d.ts +1 -0
- package/esm/components/file-picker/index.js +1 -0
- package/esm/components/filter-buttons/filter-button.d.ts +7 -0
- package/esm/components/filter-buttons/filter-button.js +6 -0
- package/esm/components/filter-buttons/filter-buttons.d.ts +5 -0
- package/esm/components/filter-buttons/filter-buttons.js +22 -0
- package/esm/components/filter-buttons/index.d.ts +2 -0
- package/esm/components/filter-buttons/index.js +2 -0
- package/esm/components/form-field/form-field.d.ts +15 -0
- package/esm/components/form-field/form-field.js +21 -0
- package/esm/components/form-field/index.d.ts +1 -0
- package/esm/components/form-field/index.js +1 -0
- package/esm/components/label/index.d.ts +1 -0
- package/esm/components/label/index.js +1 -0
- package/esm/components/label/label.d.ts +5 -0
- package/esm/components/label/label.js +8 -0
- package/esm/components/menu/index.d.ts +3 -0
- package/esm/components/menu/index.js +3 -0
- package/esm/components/menu/menu-item.d.ts +11 -0
- package/esm/components/menu/menu-item.js +9 -0
- package/esm/components/menu/menu-separator.d.ts +6 -0
- package/esm/components/menu/menu-separator.js +5 -0
- package/esm/components/menu/menu.d.ts +31 -0
- package/esm/components/menu/menu.js +190 -0
- package/esm/components/nav-list/index.d.ts +3 -0
- package/esm/components/nav-list/index.js +3 -0
- package/esm/components/nav-list/nav-list-item.d.ts +13 -0
- package/esm/components/nav-list/nav-list-item.js +15 -0
- package/esm/components/nav-list/nav-list-title.d.ts +8 -0
- package/esm/components/nav-list/nav-list-title.js +5 -0
- package/esm/components/nav-list/nav-list.d.ts +5 -0
- package/esm/components/nav-list/nav-list.js +5 -0
- package/esm/components/password-input/icons.d.ts +3 -0
- package/esm/components/password-input/icons.js +7 -0
- package/esm/components/password-input/index.d.ts +1 -0
- package/esm/components/password-input/index.js +1 -0
- package/esm/components/password-input/password-input.d.ts +10 -0
- package/esm/components/password-input/password-input.js +25 -0
- package/esm/components/popover/index.d.ts +1 -0
- package/esm/components/popover/index.js +1 -0
- package/esm/components/popover/popover.d.ts +49 -0
- package/esm/components/popover/popover.js +94 -0
- package/esm/components/popover/use-page-click.d.ts +16 -0
- package/esm/components/popover/use-page-click.js +46 -0
- package/esm/components/portal/index.d.ts +1 -0
- package/esm/components/portal/index.js +1 -0
- package/esm/components/portal/portal-context.d.ts +6 -0
- package/esm/components/portal/portal-context.js +21 -0
- package/esm/components/portal/portal.d.ts +5 -0
- package/esm/components/portal/portal.js +6 -0
- package/esm/components/positioner/calc-position.d.ts +32 -0
- package/esm/components/positioner/calc-position.js +112 -0
- package/esm/components/positioner/index.d.ts +1 -0
- package/esm/components/positioner/index.js +1 -0
- package/esm/components/positioner/positioner.d.ts +20 -0
- package/esm/components/positioner/positioner.js +59 -0
- package/esm/components/positioner/types.d.ts +14 -0
- package/esm/components/positioner/types.js +1 -0
- package/esm/components/radio/index.d.ts +1 -0
- package/esm/components/radio/index.js +1 -0
- package/esm/components/radio/radio.d.ts +11 -0
- package/esm/components/radio/radio.js +19 -0
- package/esm/components/segmented-control/index.d.ts +1 -0
- package/esm/components/segmented-control/index.js +1 -0
- package/esm/components/segmented-control/segmented-control-button.d.ts +10 -0
- package/esm/components/segmented-control/segmented-control-button.js +10 -0
- package/esm/components/segmented-control/segmented-control.d.ts +15 -0
- package/esm/components/segmented-control/segmented-control.js +43 -0
- package/esm/components/select/index.d.ts +1 -0
- package/esm/components/select/index.js +1 -0
- package/esm/components/select/select.d.ts +46 -0
- package/esm/components/select/select.js +22 -0
- package/esm/components/selection-control/index.d.ts +1 -0
- package/esm/components/selection-control/index.js +1 -0
- package/esm/components/selection-control/selection-control.d.ts +14 -0
- package/esm/components/selection-control/selection-control.js +13 -0
- package/esm/components/slider/index.d.ts +2 -0
- package/esm/components/slider/index.js +2 -0
- package/esm/components/slider/slider-tick-marks.d.ts +7 -0
- package/esm/components/slider/slider-tick-marks.js +12 -0
- package/esm/components/slider/slider.d.ts +17 -0
- package/esm/components/slider/slider.js +36 -0
- package/esm/components/spinner/index.d.ts +1 -0
- package/esm/components/spinner/index.js +1 -0
- package/esm/components/spinner/spinner.d.ts +7 -0
- package/esm/components/spinner/spinner.js +6 -0
- package/esm/components/switch/index.d.ts +1 -0
- package/esm/components/switch/index.js +1 -0
- package/esm/components/switch/switch.d.ts +10 -0
- package/esm/components/switch/switch.js +10 -0
- package/esm/components/table/icons.d.ts +4 -0
- package/esm/components/table/icons.js +10 -0
- package/esm/components/table/index.d.ts +7 -0
- package/esm/components/table/index.js +7 -0
- package/esm/components/table/table-body.d.ts +5 -0
- package/esm/components/table/table-body.js +6 -0
- package/esm/components/table/table-cell.d.ts +5 -0
- package/esm/components/table/table-cell.js +6 -0
- package/esm/components/table/table-container.d.ts +13 -0
- package/esm/components/table/table-container.js +18 -0
- package/esm/components/table/table-head-cell.d.ts +10 -0
- package/esm/components/table/table-head-cell.js +25 -0
- package/esm/components/table/table-head.d.ts +7 -0
- package/esm/components/table/table-head.js +9 -0
- package/esm/components/table/table-row.d.ts +7 -0
- package/esm/components/table/table-row.js +9 -0
- package/esm/components/table/table.d.ts +11 -0
- package/esm/components/table/table.js +11 -0
- package/esm/components/tabs/index.d.ts +4 -0
- package/esm/components/tabs/index.js +4 -0
- package/esm/components/tabs/tab-list.d.ts +3 -0
- package/esm/components/tabs/tab-list.js +62 -0
- package/esm/components/tabs/tab-panel.d.ts +6 -0
- package/esm/components/tabs/tab-panel.js +11 -0
- package/esm/components/tabs/tab.d.ts +7 -0
- package/esm/components/tabs/tab.js +14 -0
- package/esm/components/tabs/tabs-context.d.ts +20 -0
- package/esm/components/tabs/tabs-context.js +25 -0
- package/esm/components/tabs/tabs.d.ts +7 -0
- package/esm/components/tabs/tabs.js +6 -0
- package/esm/components/tabs/types.d.ts +2 -0
- package/esm/components/tabs/types.js +1 -0
- package/esm/components/tag/index.d.ts +1 -0
- package/esm/components/tag/index.js +1 -0
- package/esm/components/tag/tag.d.ts +13 -0
- package/esm/components/tag/tag.js +10 -0
- package/esm/components/text-input/index.d.ts +1 -0
- package/esm/components/text-input/index.js +1 -0
- package/esm/components/text-input/text-input.d.ts +21 -0
- package/esm/components/text-input/text-input.js +21 -0
- package/esm/components/textarea/index.d.ts +1 -0
- package/esm/components/textarea/index.js +1 -0
- package/esm/components/textarea/textarea.d.ts +20 -0
- package/esm/components/textarea/textarea.js +35 -0
- package/esm/components/toast/index.d.ts +2 -0
- package/esm/components/toast/index.js +2 -0
- package/esm/components/toast/toast-button.d.ts +5 -0
- package/esm/components/toast/toast-button.js +6 -0
- package/esm/components/toast/toast.d.ts +11 -0
- package/esm/components/toast/toast.js +6 -0
- package/esm/components/toast/x-mark-icon.d.ts +2 -0
- package/esm/components/toast/x-mark-icon.js +4 -0
- package/esm/components/toaster/index.d.ts +1 -0
- package/esm/components/toaster/index.js +1 -0
- package/esm/components/toaster/toaster.d.ts +40 -0
- package/esm/components/toaster/toaster.js +130 -0
- package/esm/components/tooltip/index.d.ts +1 -0
- package/esm/components/tooltip/index.js +1 -0
- package/esm/components/tooltip/tooltip.d.ts +25 -0
- package/esm/components/tooltip/tooltip.js +75 -0
- package/esm/hooks/index.d.ts +4 -0
- package/esm/hooks/index.js +4 -0
- package/esm/hooks/use-disable-body-scroll.d.ts +5 -0
- package/esm/hooks/use-disable-body-scroll.js +30 -0
- package/esm/hooks/use-esc-key-down.d.ts +17 -0
- package/esm/hooks/use-esc-key-down.js +49 -0
- package/esm/hooks/use-focus-trap.d.ts +15 -0
- package/esm/hooks/use-focus-trap.js +82 -0
- package/esm/hooks/use-mount-transition.d.ts +32 -0
- package/esm/hooks/use-mount-transition.js +36 -0
- package/esm/index.d.ts +37 -0
- package/esm/index.js +37 -0
- package/esm/shared/keyboard-keys.d.ts +14 -0
- package/esm/shared/keyboard-keys.js +14 -0
- package/esm/shared/react-helpers.d.ts +13 -0
- package/esm/shared/react-helpers.js +42 -0
- package/esm/shared/util.d.ts +2 -0
- package/esm/shared/util.js +16 -0
- package/package.json +65 -67
- package/bootstrap-icons/123.d.ts +0 -5
- package/bootstrap-icons/123.js +0 -12
- package/bootstrap-icons/activity.d.ts +0 -5
- package/bootstrap-icons/activity.js +0 -12
- package/bootstrap-icons/alarm-fill.d.ts +0 -5
- package/bootstrap-icons/alarm-fill.js +0 -12
- package/bootstrap-icons/alarm.d.ts +0 -5
- package/bootstrap-icons/alarm.js +0 -12
- package/bootstrap-icons/align-bottom.d.ts +0 -5
- package/bootstrap-icons/align-bottom.js +0 -12
- package/bootstrap-icons/align-center.d.ts +0 -5
- package/bootstrap-icons/align-center.js +0 -12
- package/bootstrap-icons/align-end.d.ts +0 -5
- package/bootstrap-icons/align-end.js +0 -12
- package/bootstrap-icons/align-middle.d.ts +0 -5
- package/bootstrap-icons/align-middle.js +0 -12
- package/bootstrap-icons/align-start.d.ts +0 -5
- package/bootstrap-icons/align-start.js +0 -12
- package/bootstrap-icons/align-top.d.ts +0 -5
- package/bootstrap-icons/align-top.js +0 -12
- package/bootstrap-icons/alt.d.ts +0 -5
- package/bootstrap-icons/alt.js +0 -12
- package/bootstrap-icons/app-indicator.d.ts +0 -5
- package/bootstrap-icons/app-indicator.js +0 -12
- package/bootstrap-icons/app.d.ts +0 -5
- package/bootstrap-icons/app.js +0 -12
- package/bootstrap-icons/apple.d.ts +0 -5
- package/bootstrap-icons/apple.js +0 -12
- package/bootstrap-icons/archive-fill.d.ts +0 -5
- package/bootstrap-icons/archive-fill.js +0 -12
- package/bootstrap-icons/archive.d.ts +0 -5
- package/bootstrap-icons/archive.js +0 -12
- package/bootstrap-icons/arrow-90deg-down.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-down.js +0 -12
- package/bootstrap-icons/arrow-90deg-left.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-left.js +0 -12
- package/bootstrap-icons/arrow-90deg-right.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-right.js +0 -12
- package/bootstrap-icons/arrow-90deg-up.d.ts +0 -5
- package/bootstrap-icons/arrow-90deg-up.js +0 -12
- package/bootstrap-icons/arrow-bar-down.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-down.js +0 -12
- package/bootstrap-icons/arrow-bar-left.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-left.js +0 -12
- package/bootstrap-icons/arrow-bar-right.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-right.js +0 -12
- package/bootstrap-icons/arrow-bar-up.d.ts +0 -5
- package/bootstrap-icons/arrow-bar-up.js +0 -12
- package/bootstrap-icons/arrow-clockwise.d.ts +0 -5
- package/bootstrap-icons/arrow-clockwise.js +0 -12
- package/bootstrap-icons/arrow-counterclockwise.d.ts +0 -5
- package/bootstrap-icons/arrow-counterclockwise.js +0 -12
- package/bootstrap-icons/arrow-down-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-down-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-down-circle.js +0 -12
- package/bootstrap-icons/arrow-down-left-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-down-left-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-circle.js +0 -12
- package/bootstrap-icons/arrow-down-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-square-fill.js +0 -12
- package/bootstrap-icons/arrow-down-left-square.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left-square.js +0 -12
- package/bootstrap-icons/arrow-down-left.d.ts +0 -5
- package/bootstrap-icons/arrow-down-left.js +0 -12
- package/bootstrap-icons/arrow-down-right-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-down-right-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-circle.js +0 -12
- package/bootstrap-icons/arrow-down-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-square-fill.js +0 -12
- package/bootstrap-icons/arrow-down-right-square.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right-square.js +0 -12
- package/bootstrap-icons/arrow-down-right.d.ts +0 -5
- package/bootstrap-icons/arrow-down-right.js +0 -12
- package/bootstrap-icons/arrow-down-short.d.ts +0 -5
- package/bootstrap-icons/arrow-down-short.js +0 -12
- package/bootstrap-icons/arrow-down-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-down-square-fill.js +0 -12
- package/bootstrap-icons/arrow-down-square.d.ts +0 -5
- package/bootstrap-icons/arrow-down-square.js +0 -12
- package/bootstrap-icons/arrow-down-up.d.ts +0 -5
- package/bootstrap-icons/arrow-down-up.js +0 -12
- package/bootstrap-icons/arrow-down.d.ts +0 -5
- package/bootstrap-icons/arrow-down.js +0 -12
- package/bootstrap-icons/arrow-left-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-left-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-left-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-left-circle.js +0 -12
- package/bootstrap-icons/arrow-left-right.d.ts +0 -5
- package/bootstrap-icons/arrow-left-right.js +0 -12
- package/bootstrap-icons/arrow-left-short.d.ts +0 -5
- package/bootstrap-icons/arrow-left-short.js +0 -12
- package/bootstrap-icons/arrow-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-left-square-fill.js +0 -12
- package/bootstrap-icons/arrow-left-square.d.ts +0 -5
- package/bootstrap-icons/arrow-left-square.js +0 -12
- package/bootstrap-icons/arrow-left.d.ts +0 -5
- package/bootstrap-icons/arrow-left.js +0 -12
- package/bootstrap-icons/arrow-repeat.d.ts +0 -5
- package/bootstrap-icons/arrow-repeat.js +0 -12
- package/bootstrap-icons/arrow-return-left.d.ts +0 -5
- package/bootstrap-icons/arrow-return-left.js +0 -12
- package/bootstrap-icons/arrow-return-right.d.ts +0 -5
- package/bootstrap-icons/arrow-return-right.js +0 -12
- package/bootstrap-icons/arrow-right-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-right-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-right-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-right-circle.js +0 -12
- package/bootstrap-icons/arrow-right-short.d.ts +0 -5
- package/bootstrap-icons/arrow-right-short.js +0 -12
- package/bootstrap-icons/arrow-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-right-square-fill.js +0 -12
- package/bootstrap-icons/arrow-right-square.d.ts +0 -5
- package/bootstrap-icons/arrow-right-square.js +0 -12
- package/bootstrap-icons/arrow-right.d.ts +0 -5
- package/bootstrap-icons/arrow-right.js +0 -12
- package/bootstrap-icons/arrow-through-heart-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-through-heart-fill.js +0 -12
- package/bootstrap-icons/arrow-through-heart.d.ts +0 -5
- package/bootstrap-icons/arrow-through-heart.js +0 -12
- package/bootstrap-icons/arrow-up-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-up-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-up-circle.js +0 -12
- package/bootstrap-icons/arrow-up-left-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-up-left-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-circle.js +0 -12
- package/bootstrap-icons/arrow-up-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-square-fill.js +0 -12
- package/bootstrap-icons/arrow-up-left-square.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left-square.js +0 -12
- package/bootstrap-icons/arrow-up-left.d.ts +0 -5
- package/bootstrap-icons/arrow-up-left.js +0 -12
- package/bootstrap-icons/arrow-up-right-circle-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-circle-fill.js +0 -12
- package/bootstrap-icons/arrow-up-right-circle.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-circle.js +0 -12
- package/bootstrap-icons/arrow-up-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-square-fill.js +0 -12
- package/bootstrap-icons/arrow-up-right-square.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right-square.js +0 -12
- package/bootstrap-icons/arrow-up-right.d.ts +0 -5
- package/bootstrap-icons/arrow-up-right.js +0 -12
- package/bootstrap-icons/arrow-up-short.d.ts +0 -5
- package/bootstrap-icons/arrow-up-short.js +0 -12
- package/bootstrap-icons/arrow-up-square-fill.d.ts +0 -5
- package/bootstrap-icons/arrow-up-square-fill.js +0 -12
- package/bootstrap-icons/arrow-up-square.d.ts +0 -5
- package/bootstrap-icons/arrow-up-square.js +0 -12
- package/bootstrap-icons/arrow-up.d.ts +0 -5
- package/bootstrap-icons/arrow-up.js +0 -12
- package/bootstrap-icons/arrows-angle-contract.d.ts +0 -5
- package/bootstrap-icons/arrows-angle-contract.js +0 -12
- package/bootstrap-icons/arrows-angle-expand.d.ts +0 -5
- package/bootstrap-icons/arrows-angle-expand.js +0 -12
- package/bootstrap-icons/arrows-collapse.d.ts +0 -5
- package/bootstrap-icons/arrows-collapse.js +0 -12
- package/bootstrap-icons/arrows-expand.d.ts +0 -5
- package/bootstrap-icons/arrows-expand.js +0 -12
- package/bootstrap-icons/arrows-fullscreen.d.ts +0 -5
- package/bootstrap-icons/arrows-fullscreen.js +0 -12
- package/bootstrap-icons/arrows-move.d.ts +0 -5
- package/bootstrap-icons/arrows-move.js +0 -12
- package/bootstrap-icons/aspect-ratio-fill.d.ts +0 -5
- package/bootstrap-icons/aspect-ratio-fill.js +0 -12
- package/bootstrap-icons/aspect-ratio.d.ts +0 -5
- package/bootstrap-icons/aspect-ratio.js +0 -12
- package/bootstrap-icons/asterisk.d.ts +0 -5
- package/bootstrap-icons/asterisk.js +0 -12
- package/bootstrap-icons/at.d.ts +0 -5
- package/bootstrap-icons/at.js +0 -12
- package/bootstrap-icons/award-fill.d.ts +0 -5
- package/bootstrap-icons/award-fill.js +0 -12
- package/bootstrap-icons/award.d.ts +0 -5
- package/bootstrap-icons/award.js +0 -12
- package/bootstrap-icons/back.d.ts +0 -5
- package/bootstrap-icons/back.js +0 -12
- package/bootstrap-icons/backspace-fill.d.ts +0 -5
- package/bootstrap-icons/backspace-fill.js +0 -12
- package/bootstrap-icons/backspace-reverse-fill.d.ts +0 -5
- package/bootstrap-icons/backspace-reverse-fill.js +0 -12
- package/bootstrap-icons/backspace-reverse.d.ts +0 -5
- package/bootstrap-icons/backspace-reverse.js +0 -12
- package/bootstrap-icons/backspace.d.ts +0 -5
- package/bootstrap-icons/backspace.js +0 -12
- package/bootstrap-icons/badge-3d-fill.d.ts +0 -5
- package/bootstrap-icons/badge-3d-fill.js +0 -12
- package/bootstrap-icons/badge-3d.d.ts +0 -5
- package/bootstrap-icons/badge-3d.js +0 -12
- package/bootstrap-icons/badge-4k-fill.d.ts +0 -5
- package/bootstrap-icons/badge-4k-fill.js +0 -12
- package/bootstrap-icons/badge-4k.d.ts +0 -5
- package/bootstrap-icons/badge-4k.js +0 -12
- package/bootstrap-icons/badge-8k-fill.d.ts +0 -5
- package/bootstrap-icons/badge-8k-fill.js +0 -12
- package/bootstrap-icons/badge-8k.d.ts +0 -5
- package/bootstrap-icons/badge-8k.js +0 -12
- package/bootstrap-icons/badge-ad-fill.d.ts +0 -5
- package/bootstrap-icons/badge-ad-fill.js +0 -12
- package/bootstrap-icons/badge-ad.d.ts +0 -5
- package/bootstrap-icons/badge-ad.js +0 -12
- package/bootstrap-icons/badge-ar-fill.d.ts +0 -5
- package/bootstrap-icons/badge-ar-fill.js +0 -12
- package/bootstrap-icons/badge-ar.d.ts +0 -5
- package/bootstrap-icons/badge-ar.js +0 -12
- package/bootstrap-icons/badge-cc-fill.d.ts +0 -5
- package/bootstrap-icons/badge-cc-fill.js +0 -12
- package/bootstrap-icons/badge-cc.d.ts +0 -5
- package/bootstrap-icons/badge-cc.js +0 -12
- package/bootstrap-icons/badge-hd-fill.d.ts +0 -5
- package/bootstrap-icons/badge-hd-fill.js +0 -12
- package/bootstrap-icons/badge-hd.d.ts +0 -5
- package/bootstrap-icons/badge-hd.js +0 -12
- package/bootstrap-icons/badge-sd-fill.d.ts +0 -5
- package/bootstrap-icons/badge-sd-fill.js +0 -12
- package/bootstrap-icons/badge-sd.d.ts +0 -5
- package/bootstrap-icons/badge-sd.js +0 -12
- package/bootstrap-icons/badge-tm-fill.d.ts +0 -5
- package/bootstrap-icons/badge-tm-fill.js +0 -12
- package/bootstrap-icons/badge-tm.d.ts +0 -5
- package/bootstrap-icons/badge-tm.js +0 -12
- package/bootstrap-icons/badge-vo-fill.d.ts +0 -5
- package/bootstrap-icons/badge-vo-fill.js +0 -12
- package/bootstrap-icons/badge-vo.d.ts +0 -5
- package/bootstrap-icons/badge-vo.js +0 -12
- package/bootstrap-icons/badge-vr-fill.d.ts +0 -5
- package/bootstrap-icons/badge-vr-fill.js +0 -12
- package/bootstrap-icons/badge-vr.d.ts +0 -5
- package/bootstrap-icons/badge-vr.js +0 -12
- package/bootstrap-icons/badge-wc-fill.d.ts +0 -5
- package/bootstrap-icons/badge-wc-fill.js +0 -12
- package/bootstrap-icons/badge-wc.d.ts +0 -5
- package/bootstrap-icons/badge-wc.js +0 -12
- package/bootstrap-icons/bag-check-fill.d.ts +0 -5
- package/bootstrap-icons/bag-check-fill.js +0 -12
- package/bootstrap-icons/bag-check.d.ts +0 -5
- package/bootstrap-icons/bag-check.js +0 -12
- package/bootstrap-icons/bag-dash-fill.d.ts +0 -5
- package/bootstrap-icons/bag-dash-fill.js +0 -12
- package/bootstrap-icons/bag-dash.d.ts +0 -5
- package/bootstrap-icons/bag-dash.js +0 -12
- package/bootstrap-icons/bag-fill.d.ts +0 -5
- package/bootstrap-icons/bag-fill.js +0 -12
- package/bootstrap-icons/bag-heart-fill.d.ts +0 -5
- package/bootstrap-icons/bag-heart-fill.js +0 -12
- package/bootstrap-icons/bag-heart.d.ts +0 -5
- package/bootstrap-icons/bag-heart.js +0 -12
- package/bootstrap-icons/bag-plus-fill.d.ts +0 -5
- package/bootstrap-icons/bag-plus-fill.js +0 -12
- package/bootstrap-icons/bag-plus.d.ts +0 -5
- package/bootstrap-icons/bag-plus.js +0 -12
- package/bootstrap-icons/bag-x-fill.d.ts +0 -5
- package/bootstrap-icons/bag-x-fill.js +0 -12
- package/bootstrap-icons/bag-x.d.ts +0 -5
- package/bootstrap-icons/bag-x.js +0 -12
- package/bootstrap-icons/bag.d.ts +0 -5
- package/bootstrap-icons/bag.js +0 -12
- package/bootstrap-icons/balloon-fill.d.ts +0 -5
- package/bootstrap-icons/balloon-fill.js +0 -12
- package/bootstrap-icons/balloon-heart-fill.d.ts +0 -5
- package/bootstrap-icons/balloon-heart-fill.js +0 -12
- package/bootstrap-icons/balloon-heart.d.ts +0 -5
- package/bootstrap-icons/balloon-heart.js +0 -12
- package/bootstrap-icons/balloon.d.ts +0 -5
- package/bootstrap-icons/balloon.js +0 -12
- package/bootstrap-icons/bandaid-fill.d.ts +0 -5
- package/bootstrap-icons/bandaid-fill.js +0 -12
- package/bootstrap-icons/bandaid.d.ts +0 -5
- package/bootstrap-icons/bandaid.js +0 -12
- package/bootstrap-icons/bank.d.ts +0 -5
- package/bootstrap-icons/bank.js +0 -12
- package/bootstrap-icons/bank2.d.ts +0 -5
- package/bootstrap-icons/bank2.js +0 -12
- package/bootstrap-icons/bar-chart-fill.d.ts +0 -5
- package/bootstrap-icons/bar-chart-fill.js +0 -12
- package/bootstrap-icons/bar-chart-line-fill.d.ts +0 -5
- package/bootstrap-icons/bar-chart-line-fill.js +0 -12
- package/bootstrap-icons/bar-chart-line.d.ts +0 -5
- package/bootstrap-icons/bar-chart-line.js +0 -12
- package/bootstrap-icons/bar-chart-steps.d.ts +0 -5
- package/bootstrap-icons/bar-chart-steps.js +0 -12
- package/bootstrap-icons/bar-chart.d.ts +0 -5
- package/bootstrap-icons/bar-chart.js +0 -12
- package/bootstrap-icons/basket-fill.d.ts +0 -5
- package/bootstrap-icons/basket-fill.js +0 -12
- package/bootstrap-icons/basket.d.ts +0 -5
- package/bootstrap-icons/basket.js +0 -12
- package/bootstrap-icons/basket2-fill.d.ts +0 -5
- package/bootstrap-icons/basket2-fill.js +0 -12
- package/bootstrap-icons/basket2.d.ts +0 -5
- package/bootstrap-icons/basket2.js +0 -12
- package/bootstrap-icons/basket3-fill.d.ts +0 -5
- package/bootstrap-icons/basket3-fill.js +0 -12
- package/bootstrap-icons/basket3.d.ts +0 -5
- package/bootstrap-icons/basket3.js +0 -12
- package/bootstrap-icons/battery-charging.d.ts +0 -5
- package/bootstrap-icons/battery-charging.js +0 -12
- package/bootstrap-icons/battery-full.d.ts +0 -5
- package/bootstrap-icons/battery-full.js +0 -12
- package/bootstrap-icons/battery-half.d.ts +0 -5
- package/bootstrap-icons/battery-half.js +0 -12
- package/bootstrap-icons/battery.d.ts +0 -5
- package/bootstrap-icons/battery.js +0 -12
- package/bootstrap-icons/behance.d.ts +0 -5
- package/bootstrap-icons/behance.js +0 -12
- package/bootstrap-icons/bell-fill.d.ts +0 -5
- package/bootstrap-icons/bell-fill.js +0 -12
- package/bootstrap-icons/bell-slash-fill.d.ts +0 -5
- package/bootstrap-icons/bell-slash-fill.js +0 -12
- package/bootstrap-icons/bell-slash.d.ts +0 -5
- package/bootstrap-icons/bell-slash.js +0 -12
- package/bootstrap-icons/bell.d.ts +0 -5
- package/bootstrap-icons/bell.js +0 -12
- package/bootstrap-icons/bezier.d.ts +0 -5
- package/bootstrap-icons/bezier.js +0 -12
- package/bootstrap-icons/bezier2.d.ts +0 -5
- package/bootstrap-icons/bezier2.js +0 -12
- package/bootstrap-icons/bicycle.d.ts +0 -5
- package/bootstrap-icons/bicycle.js +0 -12
- package/bootstrap-icons/binoculars-fill.d.ts +0 -5
- package/bootstrap-icons/binoculars-fill.js +0 -12
- package/bootstrap-icons/binoculars.d.ts +0 -5
- package/bootstrap-icons/binoculars.js +0 -12
- package/bootstrap-icons/blockquote-left.d.ts +0 -5
- package/bootstrap-icons/blockquote-left.js +0 -12
- package/bootstrap-icons/blockquote-right.d.ts +0 -5
- package/bootstrap-icons/blockquote-right.js +0 -12
- package/bootstrap-icons/bluetooth.d.ts +0 -5
- package/bootstrap-icons/bluetooth.js +0 -12
- package/bootstrap-icons/body-text.d.ts +0 -5
- package/bootstrap-icons/body-text.js +0 -12
- package/bootstrap-icons/book-fill.d.ts +0 -5
- package/bootstrap-icons/book-fill.js +0 -12
- package/bootstrap-icons/book-half.d.ts +0 -5
- package/bootstrap-icons/book-half.js +0 -12
- package/bootstrap-icons/book.d.ts +0 -5
- package/bootstrap-icons/book.js +0 -12
- package/bootstrap-icons/bookmark-check-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-check-fill.js +0 -12
- package/bootstrap-icons/bookmark-check.d.ts +0 -5
- package/bootstrap-icons/bookmark-check.js +0 -12
- package/bootstrap-icons/bookmark-dash-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-dash-fill.js +0 -12
- package/bootstrap-icons/bookmark-dash.d.ts +0 -5
- package/bootstrap-icons/bookmark-dash.js +0 -12
- package/bootstrap-icons/bookmark-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-fill.js +0 -12
- package/bootstrap-icons/bookmark-heart-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-heart-fill.js +0 -12
- package/bootstrap-icons/bookmark-heart.d.ts +0 -5
- package/bootstrap-icons/bookmark-heart.js +0 -12
- package/bootstrap-icons/bookmark-plus-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-plus-fill.js +0 -12
- package/bootstrap-icons/bookmark-plus.d.ts +0 -5
- package/bootstrap-icons/bookmark-plus.js +0 -12
- package/bootstrap-icons/bookmark-star-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-star-fill.js +0 -12
- package/bootstrap-icons/bookmark-star.d.ts +0 -5
- package/bootstrap-icons/bookmark-star.js +0 -12
- package/bootstrap-icons/bookmark-x-fill.d.ts +0 -5
- package/bootstrap-icons/bookmark-x-fill.js +0 -12
- package/bootstrap-icons/bookmark-x.d.ts +0 -5
- package/bootstrap-icons/bookmark-x.js +0 -12
- package/bootstrap-icons/bookmark.d.ts +0 -5
- package/bootstrap-icons/bookmark.js +0 -12
- package/bootstrap-icons/bookmarks-fill.d.ts +0 -5
- package/bootstrap-icons/bookmarks-fill.js +0 -12
- package/bootstrap-icons/bookmarks.d.ts +0 -5
- package/bootstrap-icons/bookmarks.js +0 -12
- package/bootstrap-icons/bookshelf.d.ts +0 -5
- package/bootstrap-icons/bookshelf.js +0 -12
- package/bootstrap-icons/boombox-fill.d.ts +0 -5
- package/bootstrap-icons/boombox-fill.js +0 -12
- package/bootstrap-icons/boombox.d.ts +0 -5
- package/bootstrap-icons/boombox.js +0 -12
- package/bootstrap-icons/bootstrap-fill.d.ts +0 -5
- package/bootstrap-icons/bootstrap-fill.js +0 -12
- package/bootstrap-icons/bootstrap-reboot.d.ts +0 -5
- package/bootstrap-icons/bootstrap-reboot.js +0 -12
- package/bootstrap-icons/bootstrap.d.ts +0 -5
- package/bootstrap-icons/bootstrap.js +0 -12
- package/bootstrap-icons/border-all.d.ts +0 -5
- package/bootstrap-icons/border-all.js +0 -12
- package/bootstrap-icons/border-bottom.d.ts +0 -5
- package/bootstrap-icons/border-bottom.js +0 -12
- package/bootstrap-icons/border-center.d.ts +0 -5
- package/bootstrap-icons/border-center.js +0 -12
- package/bootstrap-icons/border-inner.d.ts +0 -5
- package/bootstrap-icons/border-inner.js +0 -12
- package/bootstrap-icons/border-left.d.ts +0 -5
- package/bootstrap-icons/border-left.js +0 -12
- package/bootstrap-icons/border-middle.d.ts +0 -5
- package/bootstrap-icons/border-middle.js +0 -12
- package/bootstrap-icons/border-outer.d.ts +0 -5
- package/bootstrap-icons/border-outer.js +0 -12
- package/bootstrap-icons/border-right.d.ts +0 -5
- package/bootstrap-icons/border-right.js +0 -12
- package/bootstrap-icons/border-style.d.ts +0 -5
- package/bootstrap-icons/border-style.js +0 -12
- package/bootstrap-icons/border-top.d.ts +0 -5
- package/bootstrap-icons/border-top.js +0 -12
- package/bootstrap-icons/border-width.d.ts +0 -5
- package/bootstrap-icons/border-width.js +0 -12
- package/bootstrap-icons/border.d.ts +0 -5
- package/bootstrap-icons/border.js +0 -12
- package/bootstrap-icons/bounding-box-circles.d.ts +0 -5
- package/bootstrap-icons/bounding-box-circles.js +0 -12
- package/bootstrap-icons/bounding-box.d.ts +0 -5
- package/bootstrap-icons/bounding-box.js +0 -12
- package/bootstrap-icons/box-arrow-down-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-down-left.js +0 -12
- package/bootstrap-icons/box-arrow-down-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-down-right.js +0 -12
- package/bootstrap-icons/box-arrow-down.d.ts +0 -5
- package/bootstrap-icons/box-arrow-down.js +0 -12
- package/bootstrap-icons/box-arrow-in-down-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-down-left.js +0 -12
- package/bootstrap-icons/box-arrow-in-down-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-down-right.js +0 -12
- package/bootstrap-icons/box-arrow-in-down.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-down.js +0 -12
- package/bootstrap-icons/box-arrow-in-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-left.js +0 -12
- package/bootstrap-icons/box-arrow-in-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-right.js +0 -12
- package/bootstrap-icons/box-arrow-in-up-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-up-left.js +0 -12
- package/bootstrap-icons/box-arrow-in-up-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-up-right.js +0 -12
- package/bootstrap-icons/box-arrow-in-up.d.ts +0 -5
- package/bootstrap-icons/box-arrow-in-up.js +0 -12
- package/bootstrap-icons/box-arrow-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-left.js +0 -12
- package/bootstrap-icons/box-arrow-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-right.js +0 -12
- package/bootstrap-icons/box-arrow-up-left.d.ts +0 -5
- package/bootstrap-icons/box-arrow-up-left.js +0 -12
- package/bootstrap-icons/box-arrow-up-right.d.ts +0 -5
- package/bootstrap-icons/box-arrow-up-right.js +0 -12
- package/bootstrap-icons/box-arrow-up.d.ts +0 -5
- package/bootstrap-icons/box-arrow-up.js +0 -12
- package/bootstrap-icons/box-seam.d.ts +0 -5
- package/bootstrap-icons/box-seam.js +0 -12
- package/bootstrap-icons/box.d.ts +0 -5
- package/bootstrap-icons/box.js +0 -12
- package/bootstrap-icons/box2-fill.d.ts +0 -5
- package/bootstrap-icons/box2-fill.js +0 -12
- package/bootstrap-icons/box2-heart-fill.d.ts +0 -5
- package/bootstrap-icons/box2-heart-fill.js +0 -12
- package/bootstrap-icons/box2-heart.d.ts +0 -5
- package/bootstrap-icons/box2-heart.js +0 -12
- package/bootstrap-icons/box2.d.ts +0 -5
- package/bootstrap-icons/box2.js +0 -12
- package/bootstrap-icons/boxes.d.ts +0 -5
- package/bootstrap-icons/boxes.js +0 -12
- package/bootstrap-icons/braces-asterisk.d.ts +0 -5
- package/bootstrap-icons/braces-asterisk.js +0 -12
- package/bootstrap-icons/braces.d.ts +0 -5
- package/bootstrap-icons/braces.js +0 -12
- package/bootstrap-icons/bricks.d.ts +0 -5
- package/bootstrap-icons/bricks.js +0 -12
- package/bootstrap-icons/briefcase-fill.d.ts +0 -5
- package/bootstrap-icons/briefcase-fill.js +0 -12
- package/bootstrap-icons/briefcase.d.ts +0 -5
- package/bootstrap-icons/briefcase.js +0 -12
- package/bootstrap-icons/brightness-alt-high-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-high-fill.js +0 -12
- package/bootstrap-icons/brightness-alt-high.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-high.js +0 -12
- package/bootstrap-icons/brightness-alt-low-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-low-fill.js +0 -12
- package/bootstrap-icons/brightness-alt-low.d.ts +0 -5
- package/bootstrap-icons/brightness-alt-low.js +0 -12
- package/bootstrap-icons/brightness-high-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-high-fill.js +0 -12
- package/bootstrap-icons/brightness-high.d.ts +0 -5
- package/bootstrap-icons/brightness-high.js +0 -12
- package/bootstrap-icons/brightness-low-fill.d.ts +0 -5
- package/bootstrap-icons/brightness-low-fill.js +0 -12
- package/bootstrap-icons/brightness-low.d.ts +0 -5
- package/bootstrap-icons/brightness-low.js +0 -12
- package/bootstrap-icons/broadcast-pin.d.ts +0 -5
- package/bootstrap-icons/broadcast-pin.js +0 -12
- package/bootstrap-icons/broadcast.d.ts +0 -5
- package/bootstrap-icons/broadcast.js +0 -12
- package/bootstrap-icons/brush-fill.d.ts +0 -5
- package/bootstrap-icons/brush-fill.js +0 -12
- package/bootstrap-icons/brush.d.ts +0 -5
- package/bootstrap-icons/brush.js +0 -12
- package/bootstrap-icons/bucket-fill.d.ts +0 -5
- package/bootstrap-icons/bucket-fill.js +0 -12
- package/bootstrap-icons/bucket.d.ts +0 -5
- package/bootstrap-icons/bucket.js +0 -12
- package/bootstrap-icons/bug-fill.d.ts +0 -5
- package/bootstrap-icons/bug-fill.js +0 -12
- package/bootstrap-icons/bug.d.ts +0 -5
- package/bootstrap-icons/bug.js +0 -12
- package/bootstrap-icons/building.d.ts +0 -5
- package/bootstrap-icons/building.js +0 -12
- package/bootstrap-icons/bullseye.d.ts +0 -5
- package/bootstrap-icons/bullseye.js +0 -12
- package/bootstrap-icons/calculator-fill.d.ts +0 -5
- package/bootstrap-icons/calculator-fill.js +0 -12
- package/bootstrap-icons/calculator.d.ts +0 -5
- package/bootstrap-icons/calculator.js +0 -12
- package/bootstrap-icons/calendar-check-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-check-fill.js +0 -12
- package/bootstrap-icons/calendar-check.d.ts +0 -5
- package/bootstrap-icons/calendar-check.js +0 -12
- package/bootstrap-icons/calendar-date-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-date-fill.js +0 -12
- package/bootstrap-icons/calendar-date.d.ts +0 -5
- package/bootstrap-icons/calendar-date.js +0 -12
- package/bootstrap-icons/calendar-day-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-day-fill.js +0 -12
- package/bootstrap-icons/calendar-day.d.ts +0 -5
- package/bootstrap-icons/calendar-day.js +0 -12
- package/bootstrap-icons/calendar-event-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-event-fill.js +0 -12
- package/bootstrap-icons/calendar-event.d.ts +0 -5
- package/bootstrap-icons/calendar-event.js +0 -12
- package/bootstrap-icons/calendar-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-fill.js +0 -12
- package/bootstrap-icons/calendar-heart-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-heart-fill.js +0 -12
- package/bootstrap-icons/calendar-heart.d.ts +0 -5
- package/bootstrap-icons/calendar-heart.js +0 -12
- package/bootstrap-icons/calendar-minus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-minus-fill.js +0 -12
- package/bootstrap-icons/calendar-minus.d.ts +0 -5
- package/bootstrap-icons/calendar-minus.js +0 -12
- package/bootstrap-icons/calendar-month-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-month-fill.js +0 -12
- package/bootstrap-icons/calendar-month.d.ts +0 -5
- package/bootstrap-icons/calendar-month.js +0 -12
- package/bootstrap-icons/calendar-plus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-plus-fill.js +0 -12
- package/bootstrap-icons/calendar-plus.d.ts +0 -5
- package/bootstrap-icons/calendar-plus.js +0 -12
- package/bootstrap-icons/calendar-range-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-range-fill.js +0 -12
- package/bootstrap-icons/calendar-range.d.ts +0 -5
- package/bootstrap-icons/calendar-range.js +0 -12
- package/bootstrap-icons/calendar-week-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-week-fill.js +0 -12
- package/bootstrap-icons/calendar-week.d.ts +0 -5
- package/bootstrap-icons/calendar-week.js +0 -12
- package/bootstrap-icons/calendar-x-fill.d.ts +0 -5
- package/bootstrap-icons/calendar-x-fill.js +0 -12
- package/bootstrap-icons/calendar-x.d.ts +0 -5
- package/bootstrap-icons/calendar-x.js +0 -12
- package/bootstrap-icons/calendar.d.ts +0 -5
- package/bootstrap-icons/calendar.js +0 -12
- package/bootstrap-icons/calendar2-check-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-check-fill.js +0 -12
- package/bootstrap-icons/calendar2-check.d.ts +0 -5
- package/bootstrap-icons/calendar2-check.js +0 -12
- package/bootstrap-icons/calendar2-date-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-date-fill.js +0 -12
- package/bootstrap-icons/calendar2-date.d.ts +0 -5
- package/bootstrap-icons/calendar2-date.js +0 -12
- package/bootstrap-icons/calendar2-day-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-day-fill.js +0 -12
- package/bootstrap-icons/calendar2-day.d.ts +0 -5
- package/bootstrap-icons/calendar2-day.js +0 -12
- package/bootstrap-icons/calendar2-event-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-event-fill.js +0 -12
- package/bootstrap-icons/calendar2-event.d.ts +0 -5
- package/bootstrap-icons/calendar2-event.js +0 -12
- package/bootstrap-icons/calendar2-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-fill.js +0 -12
- package/bootstrap-icons/calendar2-heart-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-heart-fill.js +0 -12
- package/bootstrap-icons/calendar2-heart.d.ts +0 -5
- package/bootstrap-icons/calendar2-heart.js +0 -12
- package/bootstrap-icons/calendar2-minus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-minus-fill.js +0 -12
- package/bootstrap-icons/calendar2-minus.d.ts +0 -5
- package/bootstrap-icons/calendar2-minus.js +0 -12
- package/bootstrap-icons/calendar2-month-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-month-fill.js +0 -12
- package/bootstrap-icons/calendar2-month.d.ts +0 -5
- package/bootstrap-icons/calendar2-month.js +0 -12
- package/bootstrap-icons/calendar2-plus-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-plus-fill.js +0 -12
- package/bootstrap-icons/calendar2-plus.d.ts +0 -5
- package/bootstrap-icons/calendar2-plus.js +0 -12
- package/bootstrap-icons/calendar2-range-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-range-fill.js +0 -12
- package/bootstrap-icons/calendar2-range.d.ts +0 -5
- package/bootstrap-icons/calendar2-range.js +0 -12
- package/bootstrap-icons/calendar2-week-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-week-fill.js +0 -12
- package/bootstrap-icons/calendar2-week.d.ts +0 -5
- package/bootstrap-icons/calendar2-week.js +0 -12
- package/bootstrap-icons/calendar2-x-fill.d.ts +0 -5
- package/bootstrap-icons/calendar2-x-fill.js +0 -12
- package/bootstrap-icons/calendar2-x.d.ts +0 -5
- package/bootstrap-icons/calendar2-x.js +0 -12
- package/bootstrap-icons/calendar2.d.ts +0 -5
- package/bootstrap-icons/calendar2.js +0 -12
- package/bootstrap-icons/calendar3-event-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-event-fill.js +0 -12
- package/bootstrap-icons/calendar3-event.d.ts +0 -5
- package/bootstrap-icons/calendar3-event.js +0 -12
- package/bootstrap-icons/calendar3-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-fill.js +0 -12
- package/bootstrap-icons/calendar3-range-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-range-fill.js +0 -12
- package/bootstrap-icons/calendar3-range.d.ts +0 -5
- package/bootstrap-icons/calendar3-range.js +0 -12
- package/bootstrap-icons/calendar3-week-fill.d.ts +0 -5
- package/bootstrap-icons/calendar3-week-fill.js +0 -12
- package/bootstrap-icons/calendar3-week.d.ts +0 -5
- package/bootstrap-icons/calendar3-week.js +0 -12
- package/bootstrap-icons/calendar3.d.ts +0 -5
- package/bootstrap-icons/calendar3.js +0 -12
- package/bootstrap-icons/calendar4-event.d.ts +0 -5
- package/bootstrap-icons/calendar4-event.js +0 -12
- package/bootstrap-icons/calendar4-range.d.ts +0 -5
- package/bootstrap-icons/calendar4-range.js +0 -12
- package/bootstrap-icons/calendar4-week.d.ts +0 -5
- package/bootstrap-icons/calendar4-week.js +0 -12
- package/bootstrap-icons/calendar4.d.ts +0 -5
- package/bootstrap-icons/calendar4.js +0 -12
- package/bootstrap-icons/camera-fill.d.ts +0 -5
- package/bootstrap-icons/camera-fill.js +0 -12
- package/bootstrap-icons/camera-reels-fill.d.ts +0 -5
- package/bootstrap-icons/camera-reels-fill.js +0 -12
- package/bootstrap-icons/camera-reels.d.ts +0 -5
- package/bootstrap-icons/camera-reels.js +0 -12
- package/bootstrap-icons/camera-video-fill.d.ts +0 -5
- package/bootstrap-icons/camera-video-fill.js +0 -12
- package/bootstrap-icons/camera-video-off-fill.d.ts +0 -5
- package/bootstrap-icons/camera-video-off-fill.js +0 -12
- package/bootstrap-icons/camera-video-off.d.ts +0 -5
- package/bootstrap-icons/camera-video-off.js +0 -12
- package/bootstrap-icons/camera-video.d.ts +0 -5
- package/bootstrap-icons/camera-video.js +0 -12
- package/bootstrap-icons/camera.d.ts +0 -5
- package/bootstrap-icons/camera.js +0 -12
- package/bootstrap-icons/camera2.d.ts +0 -5
- package/bootstrap-icons/camera2.js +0 -12
- package/bootstrap-icons/capslock-fill.d.ts +0 -5
- package/bootstrap-icons/capslock-fill.js +0 -12
- package/bootstrap-icons/capslock.d.ts +0 -5
- package/bootstrap-icons/capslock.js +0 -12
- package/bootstrap-icons/card-checklist.d.ts +0 -5
- package/bootstrap-icons/card-checklist.js +0 -12
- package/bootstrap-icons/card-heading.d.ts +0 -5
- package/bootstrap-icons/card-heading.js +0 -12
- package/bootstrap-icons/card-image.d.ts +0 -5
- package/bootstrap-icons/card-image.js +0 -12
- package/bootstrap-icons/card-list.d.ts +0 -5
- package/bootstrap-icons/card-list.js +0 -12
- package/bootstrap-icons/card-text.d.ts +0 -5
- package/bootstrap-icons/card-text.js +0 -12
- package/bootstrap-icons/caret-down-fill.d.ts +0 -5
- package/bootstrap-icons/caret-down-fill.js +0 -12
- package/bootstrap-icons/caret-down-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-down-square-fill.js +0 -12
- package/bootstrap-icons/caret-down-square.d.ts +0 -5
- package/bootstrap-icons/caret-down-square.js +0 -12
- package/bootstrap-icons/caret-down.d.ts +0 -5
- package/bootstrap-icons/caret-down.js +0 -12
- package/bootstrap-icons/caret-left-fill.d.ts +0 -5
- package/bootstrap-icons/caret-left-fill.js +0 -12
- package/bootstrap-icons/caret-left-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-left-square-fill.js +0 -12
- package/bootstrap-icons/caret-left-square.d.ts +0 -5
- package/bootstrap-icons/caret-left-square.js +0 -12
- package/bootstrap-icons/caret-left.d.ts +0 -5
- package/bootstrap-icons/caret-left.js +0 -12
- package/bootstrap-icons/caret-right-fill.d.ts +0 -5
- package/bootstrap-icons/caret-right-fill.js +0 -12
- package/bootstrap-icons/caret-right-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-right-square-fill.js +0 -12
- package/bootstrap-icons/caret-right-square.d.ts +0 -5
- package/bootstrap-icons/caret-right-square.js +0 -12
- package/bootstrap-icons/caret-right.d.ts +0 -5
- package/bootstrap-icons/caret-right.js +0 -12
- package/bootstrap-icons/caret-up-fill.d.ts +0 -5
- package/bootstrap-icons/caret-up-fill.js +0 -12
- package/bootstrap-icons/caret-up-square-fill.d.ts +0 -5
- package/bootstrap-icons/caret-up-square-fill.js +0 -12
- package/bootstrap-icons/caret-up-square.d.ts +0 -5
- package/bootstrap-icons/caret-up-square.js +0 -12
- package/bootstrap-icons/caret-up.d.ts +0 -5
- package/bootstrap-icons/caret-up.js +0 -12
- package/bootstrap-icons/cart-check-fill.d.ts +0 -5
- package/bootstrap-icons/cart-check-fill.js +0 -12
- package/bootstrap-icons/cart-check.d.ts +0 -5
- package/bootstrap-icons/cart-check.js +0 -12
- package/bootstrap-icons/cart-dash-fill.d.ts +0 -5
- package/bootstrap-icons/cart-dash-fill.js +0 -12
- package/bootstrap-icons/cart-dash.d.ts +0 -5
- package/bootstrap-icons/cart-dash.js +0 -12
- package/bootstrap-icons/cart-fill.d.ts +0 -5
- package/bootstrap-icons/cart-fill.js +0 -12
- package/bootstrap-icons/cart-plus-fill.d.ts +0 -5
- package/bootstrap-icons/cart-plus-fill.js +0 -12
- package/bootstrap-icons/cart-plus.d.ts +0 -5
- package/bootstrap-icons/cart-plus.js +0 -12
- package/bootstrap-icons/cart-x-fill.d.ts +0 -5
- package/bootstrap-icons/cart-x-fill.js +0 -12
- package/bootstrap-icons/cart-x.d.ts +0 -5
- package/bootstrap-icons/cart-x.js +0 -12
- package/bootstrap-icons/cart.d.ts +0 -5
- package/bootstrap-icons/cart.js +0 -12
- package/bootstrap-icons/cart2.d.ts +0 -5
- package/bootstrap-icons/cart2.js +0 -12
- package/bootstrap-icons/cart3.d.ts +0 -5
- package/bootstrap-icons/cart3.js +0 -12
- package/bootstrap-icons/cart4.d.ts +0 -5
- package/bootstrap-icons/cart4.js +0 -12
- package/bootstrap-icons/cash-coin.d.ts +0 -5
- package/bootstrap-icons/cash-coin.js +0 -12
- package/bootstrap-icons/cash-stack.d.ts +0 -5
- package/bootstrap-icons/cash-stack.js +0 -12
- package/bootstrap-icons/cash.d.ts +0 -5
- package/bootstrap-icons/cash.js +0 -12
- package/bootstrap-icons/cast.d.ts +0 -5
- package/bootstrap-icons/cast.js +0 -12
- package/bootstrap-icons/chat-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-dots-fill.js +0 -12
- package/bootstrap-icons/chat-dots.d.ts +0 -5
- package/bootstrap-icons/chat-dots.js +0 -12
- package/bootstrap-icons/chat-fill.d.ts +0 -5
- package/bootstrap-icons/chat-fill.js +0 -12
- package/bootstrap-icons/chat-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-heart-fill.js +0 -12
- package/bootstrap-icons/chat-heart.d.ts +0 -5
- package/bootstrap-icons/chat-heart.js +0 -12
- package/bootstrap-icons/chat-left-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-dots-fill.js +0 -12
- package/bootstrap-icons/chat-left-dots.d.ts +0 -5
- package/bootstrap-icons/chat-left-dots.js +0 -12
- package/bootstrap-icons/chat-left-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-fill.js +0 -12
- package/bootstrap-icons/chat-left-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-heart-fill.js +0 -12
- package/bootstrap-icons/chat-left-heart.d.ts +0 -5
- package/bootstrap-icons/chat-left-heart.js +0 -12
- package/bootstrap-icons/chat-left-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-quote-fill.js +0 -12
- package/bootstrap-icons/chat-left-quote.d.ts +0 -5
- package/bootstrap-icons/chat-left-quote.js +0 -12
- package/bootstrap-icons/chat-left-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-left-text-fill.js +0 -12
- package/bootstrap-icons/chat-left-text.d.ts +0 -5
- package/bootstrap-icons/chat-left-text.js +0 -12
- package/bootstrap-icons/chat-left.d.ts +0 -5
- package/bootstrap-icons/chat-left.js +0 -12
- package/bootstrap-icons/chat-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-quote-fill.js +0 -12
- package/bootstrap-icons/chat-quote.d.ts +0 -5
- package/bootstrap-icons/chat-quote.js +0 -12
- package/bootstrap-icons/chat-right-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-dots-fill.js +0 -12
- package/bootstrap-icons/chat-right-dots.d.ts +0 -5
- package/bootstrap-icons/chat-right-dots.js +0 -12
- package/bootstrap-icons/chat-right-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-fill.js +0 -12
- package/bootstrap-icons/chat-right-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-heart-fill.js +0 -12
- package/bootstrap-icons/chat-right-heart.d.ts +0 -5
- package/bootstrap-icons/chat-right-heart.js +0 -12
- package/bootstrap-icons/chat-right-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-quote-fill.js +0 -12
- package/bootstrap-icons/chat-right-quote.d.ts +0 -5
- package/bootstrap-icons/chat-right-quote.js +0 -12
- package/bootstrap-icons/chat-right-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-right-text-fill.js +0 -12
- package/bootstrap-icons/chat-right-text.d.ts +0 -5
- package/bootstrap-icons/chat-right-text.js +0 -12
- package/bootstrap-icons/chat-right.d.ts +0 -5
- package/bootstrap-icons/chat-right.js +0 -12
- package/bootstrap-icons/chat-square-dots-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-dots-fill.js +0 -12
- package/bootstrap-icons/chat-square-dots.d.ts +0 -5
- package/bootstrap-icons/chat-square-dots.js +0 -12
- package/bootstrap-icons/chat-square-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-fill.js +0 -12
- package/bootstrap-icons/chat-square-heart-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-heart-fill.js +0 -12
- package/bootstrap-icons/chat-square-heart.d.ts +0 -5
- package/bootstrap-icons/chat-square-heart.js +0 -12
- package/bootstrap-icons/chat-square-quote-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-quote-fill.js +0 -12
- package/bootstrap-icons/chat-square-quote.d.ts +0 -5
- package/bootstrap-icons/chat-square-quote.js +0 -12
- package/bootstrap-icons/chat-square-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-square-text-fill.js +0 -12
- package/bootstrap-icons/chat-square-text.d.ts +0 -5
- package/bootstrap-icons/chat-square-text.js +0 -12
- package/bootstrap-icons/chat-square.d.ts +0 -5
- package/bootstrap-icons/chat-square.js +0 -12
- package/bootstrap-icons/chat-text-fill.d.ts +0 -5
- package/bootstrap-icons/chat-text-fill.js +0 -12
- package/bootstrap-icons/chat-text.d.ts +0 -5
- package/bootstrap-icons/chat-text.js +0 -12
- package/bootstrap-icons/chat.d.ts +0 -5
- package/bootstrap-icons/chat.js +0 -12
- package/bootstrap-icons/check-all.d.ts +0 -5
- package/bootstrap-icons/check-all.js +0 -12
- package/bootstrap-icons/check-circle-fill.d.ts +0 -5
- package/bootstrap-icons/check-circle-fill.js +0 -12
- package/bootstrap-icons/check-circle.d.ts +0 -5
- package/bootstrap-icons/check-circle.js +0 -12
- package/bootstrap-icons/check-lg.d.ts +0 -5
- package/bootstrap-icons/check-lg.js +0 -12
- package/bootstrap-icons/check-square-fill.d.ts +0 -5
- package/bootstrap-icons/check-square-fill.js +0 -12
- package/bootstrap-icons/check-square.d.ts +0 -5
- package/bootstrap-icons/check-square.js +0 -12
- package/bootstrap-icons/check.d.ts +0 -5
- package/bootstrap-icons/check.js +0 -12
- package/bootstrap-icons/check2-all.d.ts +0 -5
- package/bootstrap-icons/check2-all.js +0 -12
- package/bootstrap-icons/check2-circle.d.ts +0 -5
- package/bootstrap-icons/check2-circle.js +0 -12
- package/bootstrap-icons/check2-square.d.ts +0 -5
- package/bootstrap-icons/check2-square.js +0 -12
- package/bootstrap-icons/check2.d.ts +0 -5
- package/bootstrap-icons/check2.js +0 -12
- package/bootstrap-icons/chevron-bar-contract.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-contract.js +0 -12
- package/bootstrap-icons/chevron-bar-down.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-down.js +0 -12
- package/bootstrap-icons/chevron-bar-expand.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-expand.js +0 -12
- package/bootstrap-icons/chevron-bar-left.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-left.js +0 -12
- package/bootstrap-icons/chevron-bar-right.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-right.js +0 -12
- package/bootstrap-icons/chevron-bar-up.d.ts +0 -5
- package/bootstrap-icons/chevron-bar-up.js +0 -12
- package/bootstrap-icons/chevron-compact-down.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-down.js +0 -12
- package/bootstrap-icons/chevron-compact-left.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-left.js +0 -12
- package/bootstrap-icons/chevron-compact-right.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-right.js +0 -12
- package/bootstrap-icons/chevron-compact-up.d.ts +0 -5
- package/bootstrap-icons/chevron-compact-up.js +0 -12
- package/bootstrap-icons/chevron-contract.d.ts +0 -5
- package/bootstrap-icons/chevron-contract.js +0 -12
- package/bootstrap-icons/chevron-double-down.d.ts +0 -5
- package/bootstrap-icons/chevron-double-down.js +0 -12
- package/bootstrap-icons/chevron-double-left.d.ts +0 -5
- package/bootstrap-icons/chevron-double-left.js +0 -12
- package/bootstrap-icons/chevron-double-right.d.ts +0 -5
- package/bootstrap-icons/chevron-double-right.js +0 -12
- package/bootstrap-icons/chevron-double-up.d.ts +0 -5
- package/bootstrap-icons/chevron-double-up.js +0 -12
- package/bootstrap-icons/chevron-down.d.ts +0 -5
- package/bootstrap-icons/chevron-down.js +0 -12
- package/bootstrap-icons/chevron-expand.d.ts +0 -5
- package/bootstrap-icons/chevron-expand.js +0 -12
- package/bootstrap-icons/chevron-left.d.ts +0 -5
- package/bootstrap-icons/chevron-left.js +0 -12
- package/bootstrap-icons/chevron-right.d.ts +0 -5
- package/bootstrap-icons/chevron-right.js +0 -12
- package/bootstrap-icons/chevron-up.d.ts +0 -5
- package/bootstrap-icons/chevron-up.js +0 -12
- package/bootstrap-icons/circle-fill.d.ts +0 -5
- package/bootstrap-icons/circle-fill.js +0 -12
- package/bootstrap-icons/circle-half.d.ts +0 -5
- package/bootstrap-icons/circle-half.js +0 -12
- package/bootstrap-icons/circle-square.d.ts +0 -5
- package/bootstrap-icons/circle-square.js +0 -12
- package/bootstrap-icons/circle.d.ts +0 -5
- package/bootstrap-icons/circle.js +0 -12
- package/bootstrap-icons/clipboard-check-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-check-fill.js +0 -12
- package/bootstrap-icons/clipboard-check.d.ts +0 -5
- package/bootstrap-icons/clipboard-check.js +0 -12
- package/bootstrap-icons/clipboard-data-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-data-fill.js +0 -12
- package/bootstrap-icons/clipboard-data.d.ts +0 -5
- package/bootstrap-icons/clipboard-data.js +0 -12
- package/bootstrap-icons/clipboard-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-fill.js +0 -12
- package/bootstrap-icons/clipboard-heart-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-heart-fill.js +0 -12
- package/bootstrap-icons/clipboard-heart.d.ts +0 -5
- package/bootstrap-icons/clipboard-heart.js +0 -12
- package/bootstrap-icons/clipboard-minus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-minus-fill.js +0 -12
- package/bootstrap-icons/clipboard-minus.d.ts +0 -5
- package/bootstrap-icons/clipboard-minus.js +0 -12
- package/bootstrap-icons/clipboard-plus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-plus-fill.js +0 -12
- package/bootstrap-icons/clipboard-plus.d.ts +0 -5
- package/bootstrap-icons/clipboard-plus.js +0 -12
- package/bootstrap-icons/clipboard-pulse.d.ts +0 -5
- package/bootstrap-icons/clipboard-pulse.js +0 -12
- package/bootstrap-icons/clipboard-x-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard-x-fill.js +0 -12
- package/bootstrap-icons/clipboard-x.d.ts +0 -5
- package/bootstrap-icons/clipboard-x.js +0 -12
- package/bootstrap-icons/clipboard.d.ts +0 -5
- package/bootstrap-icons/clipboard.js +0 -12
- package/bootstrap-icons/clipboard2-check-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-check-fill.js +0 -12
- package/bootstrap-icons/clipboard2-check.d.ts +0 -5
- package/bootstrap-icons/clipboard2-check.js +0 -12
- package/bootstrap-icons/clipboard2-data-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-data-fill.js +0 -12
- package/bootstrap-icons/clipboard2-data.d.ts +0 -5
- package/bootstrap-icons/clipboard2-data.js +0 -12
- package/bootstrap-icons/clipboard2-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-fill.js +0 -12
- package/bootstrap-icons/clipboard2-heart-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-heart-fill.js +0 -12
- package/bootstrap-icons/clipboard2-heart.d.ts +0 -5
- package/bootstrap-icons/clipboard2-heart.js +0 -12
- package/bootstrap-icons/clipboard2-minus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-minus-fill.js +0 -12
- package/bootstrap-icons/clipboard2-minus.d.ts +0 -5
- package/bootstrap-icons/clipboard2-minus.js +0 -12
- package/bootstrap-icons/clipboard2-plus-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-plus-fill.js +0 -12
- package/bootstrap-icons/clipboard2-plus.d.ts +0 -5
- package/bootstrap-icons/clipboard2-plus.js +0 -12
- package/bootstrap-icons/clipboard2-pulse-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-pulse-fill.js +0 -12
- package/bootstrap-icons/clipboard2-pulse.d.ts +0 -5
- package/bootstrap-icons/clipboard2-pulse.js +0 -12
- package/bootstrap-icons/clipboard2-x-fill.d.ts +0 -5
- package/bootstrap-icons/clipboard2-x-fill.js +0 -12
- package/bootstrap-icons/clipboard2-x.d.ts +0 -5
- package/bootstrap-icons/clipboard2-x.js +0 -12
- package/bootstrap-icons/clipboard2.d.ts +0 -5
- package/bootstrap-icons/clipboard2.js +0 -12
- package/bootstrap-icons/clock-fill.d.ts +0 -5
- package/bootstrap-icons/clock-fill.js +0 -12
- package/bootstrap-icons/clock-history.d.ts +0 -5
- package/bootstrap-icons/clock-history.js +0 -12
- package/bootstrap-icons/clock.d.ts +0 -5
- package/bootstrap-icons/clock.js +0 -12
- package/bootstrap-icons/cloud-arrow-down-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-down-fill.js +0 -12
- package/bootstrap-icons/cloud-arrow-down.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-down.js +0 -12
- package/bootstrap-icons/cloud-arrow-up-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-up-fill.js +0 -12
- package/bootstrap-icons/cloud-arrow-up.d.ts +0 -5
- package/bootstrap-icons/cloud-arrow-up.js +0 -12
- package/bootstrap-icons/cloud-check-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-check-fill.js +0 -12
- package/bootstrap-icons/cloud-check.d.ts +0 -5
- package/bootstrap-icons/cloud-check.js +0 -12
- package/bootstrap-icons/cloud-download-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-download-fill.js +0 -12
- package/bootstrap-icons/cloud-download.d.ts +0 -5
- package/bootstrap-icons/cloud-download.js +0 -12
- package/bootstrap-icons/cloud-drizzle-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-drizzle-fill.js +0 -12
- package/bootstrap-icons/cloud-drizzle.d.ts +0 -5
- package/bootstrap-icons/cloud-drizzle.js +0 -12
- package/bootstrap-icons/cloud-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-fill.js +0 -12
- package/bootstrap-icons/cloud-fog-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-fog-fill.js +0 -12
- package/bootstrap-icons/cloud-fog.d.ts +0 -5
- package/bootstrap-icons/cloud-fog.js +0 -12
- package/bootstrap-icons/cloud-fog2-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-fog2-fill.js +0 -12
- package/bootstrap-icons/cloud-fog2.d.ts +0 -5
- package/bootstrap-icons/cloud-fog2.js +0 -12
- package/bootstrap-icons/cloud-hail-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-hail-fill.js +0 -12
- package/bootstrap-icons/cloud-hail.d.ts +0 -5
- package/bootstrap-icons/cloud-hail.js +0 -12
- package/bootstrap-icons/cloud-haze-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-haze-fill.js +0 -12
- package/bootstrap-icons/cloud-haze.d.ts +0 -5
- package/bootstrap-icons/cloud-haze.js +0 -12
- package/bootstrap-icons/cloud-haze2-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-haze2-fill.js +0 -12
- package/bootstrap-icons/cloud-haze2.d.ts +0 -5
- package/bootstrap-icons/cloud-haze2.js +0 -12
- package/bootstrap-icons/cloud-lightning-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning-fill.js +0 -12
- package/bootstrap-icons/cloud-lightning-rain-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning-rain-fill.js +0 -12
- package/bootstrap-icons/cloud-lightning-rain.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning-rain.js +0 -12
- package/bootstrap-icons/cloud-lightning.d.ts +0 -5
- package/bootstrap-icons/cloud-lightning.js +0 -12
- package/bootstrap-icons/cloud-minus-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-minus-fill.js +0 -12
- package/bootstrap-icons/cloud-minus.d.ts +0 -5
- package/bootstrap-icons/cloud-minus.js +0 -12
- package/bootstrap-icons/cloud-moon-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-moon-fill.js +0 -12
- package/bootstrap-icons/cloud-moon.d.ts +0 -5
- package/bootstrap-icons/cloud-moon.js +0 -12
- package/bootstrap-icons/cloud-plus-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-plus-fill.js +0 -12
- package/bootstrap-icons/cloud-plus.d.ts +0 -5
- package/bootstrap-icons/cloud-plus.js +0 -12
- package/bootstrap-icons/cloud-rain-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-rain-fill.js +0 -12
- package/bootstrap-icons/cloud-rain-heavy-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-rain-heavy-fill.js +0 -12
- package/bootstrap-icons/cloud-rain-heavy.d.ts +0 -5
- package/bootstrap-icons/cloud-rain-heavy.js +0 -12
- package/bootstrap-icons/cloud-rain.d.ts +0 -5
- package/bootstrap-icons/cloud-rain.js +0 -12
- package/bootstrap-icons/cloud-slash-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-slash-fill.js +0 -12
- package/bootstrap-icons/cloud-slash.d.ts +0 -5
- package/bootstrap-icons/cloud-slash.js +0 -12
- package/bootstrap-icons/cloud-sleet-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-sleet-fill.js +0 -12
- package/bootstrap-icons/cloud-sleet.d.ts +0 -5
- package/bootstrap-icons/cloud-sleet.js +0 -12
- package/bootstrap-icons/cloud-snow-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-snow-fill.js +0 -12
- package/bootstrap-icons/cloud-snow.d.ts +0 -5
- package/bootstrap-icons/cloud-snow.js +0 -12
- package/bootstrap-icons/cloud-sun-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-sun-fill.js +0 -12
- package/bootstrap-icons/cloud-sun.d.ts +0 -5
- package/bootstrap-icons/cloud-sun.js +0 -12
- package/bootstrap-icons/cloud-upload-fill.d.ts +0 -5
- package/bootstrap-icons/cloud-upload-fill.js +0 -12
- package/bootstrap-icons/cloud-upload.d.ts +0 -5
- package/bootstrap-icons/cloud-upload.js +0 -12
- package/bootstrap-icons/cloud.d.ts +0 -5
- package/bootstrap-icons/cloud.js +0 -12
- package/bootstrap-icons/clouds-fill.d.ts +0 -5
- package/bootstrap-icons/clouds-fill.js +0 -12
- package/bootstrap-icons/clouds.d.ts +0 -5
- package/bootstrap-icons/clouds.js +0 -12
- package/bootstrap-icons/cloudy-fill.d.ts +0 -5
- package/bootstrap-icons/cloudy-fill.js +0 -12
- package/bootstrap-icons/cloudy.d.ts +0 -5
- package/bootstrap-icons/cloudy.js +0 -12
- package/bootstrap-icons/code-slash.d.ts +0 -5
- package/bootstrap-icons/code-slash.js +0 -12
- package/bootstrap-icons/code-square.d.ts +0 -5
- package/bootstrap-icons/code-square.js +0 -12
- package/bootstrap-icons/code.d.ts +0 -5
- package/bootstrap-icons/code.js +0 -12
- package/bootstrap-icons/coin.d.ts +0 -5
- package/bootstrap-icons/coin.js +0 -12
- package/bootstrap-icons/collection-fill.d.ts +0 -5
- package/bootstrap-icons/collection-fill.js +0 -12
- package/bootstrap-icons/collection-play-fill.d.ts +0 -5
- package/bootstrap-icons/collection-play-fill.js +0 -12
- package/bootstrap-icons/collection-play.d.ts +0 -5
- package/bootstrap-icons/collection-play.js +0 -12
- package/bootstrap-icons/collection.d.ts +0 -5
- package/bootstrap-icons/collection.js +0 -12
- package/bootstrap-icons/columns-gap.d.ts +0 -5
- package/bootstrap-icons/columns-gap.js +0 -12
- package/bootstrap-icons/columns.d.ts +0 -5
- package/bootstrap-icons/columns.js +0 -12
- package/bootstrap-icons/command.d.ts +0 -5
- package/bootstrap-icons/command.js +0 -12
- package/bootstrap-icons/compass-fill.d.ts +0 -5
- package/bootstrap-icons/compass-fill.js +0 -12
- package/bootstrap-icons/compass.d.ts +0 -5
- package/bootstrap-icons/compass.js +0 -12
- package/bootstrap-icons/cone-striped.d.ts +0 -5
- package/bootstrap-icons/cone-striped.js +0 -12
- package/bootstrap-icons/cone.d.ts +0 -5
- package/bootstrap-icons/cone.js +0 -12
- package/bootstrap-icons/controller.d.ts +0 -5
- package/bootstrap-icons/controller.js +0 -12
- package/bootstrap-icons/cpu-fill.d.ts +0 -5
- package/bootstrap-icons/cpu-fill.js +0 -12
- package/bootstrap-icons/cpu.d.ts +0 -5
- package/bootstrap-icons/cpu.js +0 -12
- package/bootstrap-icons/credit-card-2-back-fill.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-back-fill.js +0 -12
- package/bootstrap-icons/credit-card-2-back.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-back.js +0 -12
- package/bootstrap-icons/credit-card-2-front-fill.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-front-fill.js +0 -12
- package/bootstrap-icons/credit-card-2-front.d.ts +0 -5
- package/bootstrap-icons/credit-card-2-front.js +0 -12
- package/bootstrap-icons/credit-card-fill.d.ts +0 -5
- package/bootstrap-icons/credit-card-fill.js +0 -12
- package/bootstrap-icons/credit-card.d.ts +0 -5
- package/bootstrap-icons/credit-card.js +0 -12
- package/bootstrap-icons/crop.d.ts +0 -5
- package/bootstrap-icons/crop.js +0 -12
- package/bootstrap-icons/cup-fill.d.ts +0 -5
- package/bootstrap-icons/cup-fill.js +0 -12
- package/bootstrap-icons/cup-straw.d.ts +0 -5
- package/bootstrap-icons/cup-straw.js +0 -12
- package/bootstrap-icons/cup.d.ts +0 -5
- package/bootstrap-icons/cup.js +0 -12
- package/bootstrap-icons/currency-bitcoin.d.ts +0 -5
- package/bootstrap-icons/currency-bitcoin.js +0 -12
- package/bootstrap-icons/currency-dollar.d.ts +0 -5
- package/bootstrap-icons/currency-dollar.js +0 -12
- package/bootstrap-icons/currency-euro.d.ts +0 -5
- package/bootstrap-icons/currency-euro.js +0 -12
- package/bootstrap-icons/currency-exchange.d.ts +0 -5
- package/bootstrap-icons/currency-exchange.js +0 -12
- package/bootstrap-icons/currency-pound.d.ts +0 -5
- package/bootstrap-icons/currency-pound.js +0 -12
- package/bootstrap-icons/currency-yen.d.ts +0 -5
- package/bootstrap-icons/currency-yen.js +0 -12
- package/bootstrap-icons/cursor-fill.d.ts +0 -5
- package/bootstrap-icons/cursor-fill.js +0 -12
- package/bootstrap-icons/cursor-text.d.ts +0 -5
- package/bootstrap-icons/cursor-text.js +0 -12
- package/bootstrap-icons/cursor.d.ts +0 -5
- package/bootstrap-icons/cursor.js +0 -12
- package/bootstrap-icons/dash-circle-dotted.d.ts +0 -5
- package/bootstrap-icons/dash-circle-dotted.js +0 -12
- package/bootstrap-icons/dash-circle-fill.d.ts +0 -5
- package/bootstrap-icons/dash-circle-fill.js +0 -12
- package/bootstrap-icons/dash-circle.d.ts +0 -5
- package/bootstrap-icons/dash-circle.js +0 -12
- package/bootstrap-icons/dash-lg.d.ts +0 -5
- package/bootstrap-icons/dash-lg.js +0 -12
- package/bootstrap-icons/dash-square-dotted.d.ts +0 -5
- package/bootstrap-icons/dash-square-dotted.js +0 -12
- package/bootstrap-icons/dash-square-fill.d.ts +0 -5
- package/bootstrap-icons/dash-square-fill.js +0 -12
- package/bootstrap-icons/dash-square.d.ts +0 -5
- package/bootstrap-icons/dash-square.js +0 -12
- package/bootstrap-icons/dash.d.ts +0 -5
- package/bootstrap-icons/dash.js +0 -12
- package/bootstrap-icons/device-hdd-fill.d.ts +0 -5
- package/bootstrap-icons/device-hdd-fill.js +0 -12
- package/bootstrap-icons/device-hdd.d.ts +0 -5
- package/bootstrap-icons/device-hdd.js +0 -12
- package/bootstrap-icons/device-ssd-fill.d.ts +0 -5
- package/bootstrap-icons/device-ssd-fill.js +0 -12
- package/bootstrap-icons/device-ssd.d.ts +0 -5
- package/bootstrap-icons/device-ssd.js +0 -12
- package/bootstrap-icons/diagram-2-fill.d.ts +0 -5
- package/bootstrap-icons/diagram-2-fill.js +0 -12
- package/bootstrap-icons/diagram-2.d.ts +0 -5
- package/bootstrap-icons/diagram-2.js +0 -12
- package/bootstrap-icons/diagram-3-fill.d.ts +0 -5
- package/bootstrap-icons/diagram-3-fill.js +0 -12
- package/bootstrap-icons/diagram-3.d.ts +0 -5
- package/bootstrap-icons/diagram-3.js +0 -12
- package/bootstrap-icons/diamond-fill.d.ts +0 -5
- package/bootstrap-icons/diamond-fill.js +0 -12
- package/bootstrap-icons/diamond-half.d.ts +0 -5
- package/bootstrap-icons/diamond-half.js +0 -12
- package/bootstrap-icons/diamond.d.ts +0 -5
- package/bootstrap-icons/diamond.js +0 -12
- package/bootstrap-icons/dice-1-fill.d.ts +0 -5
- package/bootstrap-icons/dice-1-fill.js +0 -12
- package/bootstrap-icons/dice-1.d.ts +0 -5
- package/bootstrap-icons/dice-1.js +0 -12
- package/bootstrap-icons/dice-2-fill.d.ts +0 -5
- package/bootstrap-icons/dice-2-fill.js +0 -12
- package/bootstrap-icons/dice-2.d.ts +0 -5
- package/bootstrap-icons/dice-2.js +0 -12
- package/bootstrap-icons/dice-3-fill.d.ts +0 -5
- package/bootstrap-icons/dice-3-fill.js +0 -12
- package/bootstrap-icons/dice-3.d.ts +0 -5
- package/bootstrap-icons/dice-3.js +0 -12
- package/bootstrap-icons/dice-4-fill.d.ts +0 -5
- package/bootstrap-icons/dice-4-fill.js +0 -12
- package/bootstrap-icons/dice-4.d.ts +0 -5
- package/bootstrap-icons/dice-4.js +0 -12
- package/bootstrap-icons/dice-5-fill.d.ts +0 -5
- package/bootstrap-icons/dice-5-fill.js +0 -12
- package/bootstrap-icons/dice-5.d.ts +0 -5
- package/bootstrap-icons/dice-5.js +0 -12
- package/bootstrap-icons/dice-6-fill.d.ts +0 -5
- package/bootstrap-icons/dice-6-fill.js +0 -12
- package/bootstrap-icons/dice-6.d.ts +0 -5
- package/bootstrap-icons/dice-6.js +0 -12
- package/bootstrap-icons/disc-fill.d.ts +0 -5
- package/bootstrap-icons/disc-fill.js +0 -12
- package/bootstrap-icons/disc.d.ts +0 -5
- package/bootstrap-icons/disc.js +0 -12
- package/bootstrap-icons/discord.d.ts +0 -5
- package/bootstrap-icons/discord.js +0 -12
- package/bootstrap-icons/display-fill.d.ts +0 -5
- package/bootstrap-icons/display-fill.js +0 -12
- package/bootstrap-icons/display.d.ts +0 -5
- package/bootstrap-icons/display.js +0 -12
- package/bootstrap-icons/displayport-fill.d.ts +0 -5
- package/bootstrap-icons/displayport-fill.js +0 -12
- package/bootstrap-icons/displayport.d.ts +0 -5
- package/bootstrap-icons/displayport.js +0 -12
- package/bootstrap-icons/distribute-horizontal.d.ts +0 -5
- package/bootstrap-icons/distribute-horizontal.js +0 -12
- package/bootstrap-icons/distribute-vertical.d.ts +0 -5
- package/bootstrap-icons/distribute-vertical.js +0 -12
- package/bootstrap-icons/door-closed-fill.d.ts +0 -5
- package/bootstrap-icons/door-closed-fill.js +0 -12
- package/bootstrap-icons/door-closed.d.ts +0 -5
- package/bootstrap-icons/door-closed.js +0 -12
- package/bootstrap-icons/door-open-fill.d.ts +0 -5
- package/bootstrap-icons/door-open-fill.js +0 -12
- package/bootstrap-icons/door-open.d.ts +0 -5
- package/bootstrap-icons/door-open.js +0 -12
- package/bootstrap-icons/dot.d.ts +0 -5
- package/bootstrap-icons/dot.js +0 -12
- package/bootstrap-icons/download.d.ts +0 -5
- package/bootstrap-icons/download.js +0 -12
- package/bootstrap-icons/dpad-fill.d.ts +0 -5
- package/bootstrap-icons/dpad-fill.js +0 -12
- package/bootstrap-icons/dpad.d.ts +0 -5
- package/bootstrap-icons/dpad.js +0 -12
- package/bootstrap-icons/dribbble.d.ts +0 -5
- package/bootstrap-icons/dribbble.js +0 -12
- package/bootstrap-icons/droplet-fill.d.ts +0 -5
- package/bootstrap-icons/droplet-fill.js +0 -12
- package/bootstrap-icons/droplet-half.d.ts +0 -5
- package/bootstrap-icons/droplet-half.js +0 -12
- package/bootstrap-icons/droplet.d.ts +0 -5
- package/bootstrap-icons/droplet.js +0 -12
- package/bootstrap-icons/ear-fill.d.ts +0 -5
- package/bootstrap-icons/ear-fill.js +0 -12
- package/bootstrap-icons/ear.d.ts +0 -5
- package/bootstrap-icons/ear.js +0 -12
- package/bootstrap-icons/earbuds.d.ts +0 -5
- package/bootstrap-icons/earbuds.js +0 -12
- package/bootstrap-icons/easel-fill.d.ts +0 -5
- package/bootstrap-icons/easel-fill.js +0 -12
- package/bootstrap-icons/easel.d.ts +0 -5
- package/bootstrap-icons/easel.js +0 -12
- package/bootstrap-icons/easel2-fill.d.ts +0 -5
- package/bootstrap-icons/easel2-fill.js +0 -12
- package/bootstrap-icons/easel2.d.ts +0 -5
- package/bootstrap-icons/easel2.js +0 -12
- package/bootstrap-icons/easel3-fill.d.ts +0 -5
- package/bootstrap-icons/easel3-fill.js +0 -12
- package/bootstrap-icons/easel3.d.ts +0 -5
- package/bootstrap-icons/easel3.js +0 -12
- package/bootstrap-icons/egg-fill.d.ts +0 -5
- package/bootstrap-icons/egg-fill.js +0 -12
- package/bootstrap-icons/egg-fried.d.ts +0 -5
- package/bootstrap-icons/egg-fried.js +0 -12
- package/bootstrap-icons/egg.d.ts +0 -5
- package/bootstrap-icons/egg.js +0 -12
- package/bootstrap-icons/eject-fill.d.ts +0 -5
- package/bootstrap-icons/eject-fill.js +0 -12
- package/bootstrap-icons/eject.d.ts +0 -5
- package/bootstrap-icons/eject.js +0 -12
- package/bootstrap-icons/emoji-angry-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-angry-fill.js +0 -12
- package/bootstrap-icons/emoji-angry.d.ts +0 -5
- package/bootstrap-icons/emoji-angry.js +0 -12
- package/bootstrap-icons/emoji-dizzy-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-dizzy-fill.js +0 -12
- package/bootstrap-icons/emoji-dizzy.d.ts +0 -5
- package/bootstrap-icons/emoji-dizzy.js +0 -12
- package/bootstrap-icons/emoji-expressionless-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-expressionless-fill.js +0 -12
- package/bootstrap-icons/emoji-expressionless.d.ts +0 -5
- package/bootstrap-icons/emoji-expressionless.js +0 -12
- package/bootstrap-icons/emoji-frown-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-frown-fill.js +0 -12
- package/bootstrap-icons/emoji-frown.d.ts +0 -5
- package/bootstrap-icons/emoji-frown.js +0 -12
- package/bootstrap-icons/emoji-heart-eyes-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-heart-eyes-fill.js +0 -12
- package/bootstrap-icons/emoji-heart-eyes.d.ts +0 -5
- package/bootstrap-icons/emoji-heart-eyes.js +0 -12
- package/bootstrap-icons/emoji-kiss-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-kiss-fill.js +0 -12
- package/bootstrap-icons/emoji-kiss.d.ts +0 -5
- package/bootstrap-icons/emoji-kiss.js +0 -12
- package/bootstrap-icons/emoji-laughing-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-laughing-fill.js +0 -12
- package/bootstrap-icons/emoji-laughing.d.ts +0 -5
- package/bootstrap-icons/emoji-laughing.js +0 -12
- package/bootstrap-icons/emoji-neutral-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-neutral-fill.js +0 -12
- package/bootstrap-icons/emoji-neutral.d.ts +0 -5
- package/bootstrap-icons/emoji-neutral.js +0 -12
- package/bootstrap-icons/emoji-smile-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-smile-fill.js +0 -12
- package/bootstrap-icons/emoji-smile-upside-down-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-smile-upside-down-fill.js +0 -12
- package/bootstrap-icons/emoji-smile-upside-down.d.ts +0 -5
- package/bootstrap-icons/emoji-smile-upside-down.js +0 -12
- package/bootstrap-icons/emoji-smile.d.ts +0 -5
- package/bootstrap-icons/emoji-smile.js +0 -12
- package/bootstrap-icons/emoji-sunglasses-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-sunglasses-fill.js +0 -12
- package/bootstrap-icons/emoji-sunglasses.d.ts +0 -5
- package/bootstrap-icons/emoji-sunglasses.js +0 -12
- package/bootstrap-icons/emoji-wink-fill.d.ts +0 -5
- package/bootstrap-icons/emoji-wink-fill.js +0 -12
- package/bootstrap-icons/emoji-wink.d.ts +0 -5
- package/bootstrap-icons/emoji-wink.js +0 -12
- package/bootstrap-icons/envelope-check-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-check-fill.js +0 -12
- package/bootstrap-icons/envelope-check.d.ts +0 -5
- package/bootstrap-icons/envelope-check.js +0 -12
- package/bootstrap-icons/envelope-dash-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-dash-fill.js +0 -12
- package/bootstrap-icons/envelope-dash.d.ts +0 -5
- package/bootstrap-icons/envelope-dash.js +0 -12
- package/bootstrap-icons/envelope-exclamation-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-exclamation-fill.js +0 -12
- package/bootstrap-icons/envelope-exclamation.d.ts +0 -5
- package/bootstrap-icons/envelope-exclamation.js +0 -12
- package/bootstrap-icons/envelope-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-fill.js +0 -12
- package/bootstrap-icons/envelope-heart-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-heart-fill.js +0 -12
- package/bootstrap-icons/envelope-heart.d.ts +0 -5
- package/bootstrap-icons/envelope-heart.js +0 -12
- package/bootstrap-icons/envelope-open-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-open-fill.js +0 -12
- package/bootstrap-icons/envelope-open-heart-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-open-heart-fill.js +0 -12
- package/bootstrap-icons/envelope-open-heart.d.ts +0 -5
- package/bootstrap-icons/envelope-open-heart.js +0 -12
- package/bootstrap-icons/envelope-open.d.ts +0 -5
- package/bootstrap-icons/envelope-open.js +0 -12
- package/bootstrap-icons/envelope-paper-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-paper-fill.js +0 -12
- package/bootstrap-icons/envelope-paper-heart-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-paper-heart-fill.js +0 -12
- package/bootstrap-icons/envelope-paper-heart.d.ts +0 -5
- package/bootstrap-icons/envelope-paper-heart.js +0 -12
- package/bootstrap-icons/envelope-paper.d.ts +0 -5
- package/bootstrap-icons/envelope-paper.js +0 -12
- package/bootstrap-icons/envelope-plus-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-plus-fill.js +0 -12
- package/bootstrap-icons/envelope-plus.d.ts +0 -5
- package/bootstrap-icons/envelope-plus.js +0 -12
- package/bootstrap-icons/envelope-slash-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-slash-fill.js +0 -12
- package/bootstrap-icons/envelope-slash.d.ts +0 -5
- package/bootstrap-icons/envelope-slash.js +0 -12
- package/bootstrap-icons/envelope-x-fill.d.ts +0 -5
- package/bootstrap-icons/envelope-x-fill.js +0 -12
- package/bootstrap-icons/envelope-x.d.ts +0 -5
- package/bootstrap-icons/envelope-x.js +0 -12
- package/bootstrap-icons/envelope.d.ts +0 -5
- package/bootstrap-icons/envelope.js +0 -12
- package/bootstrap-icons/eraser-fill.d.ts +0 -5
- package/bootstrap-icons/eraser-fill.js +0 -12
- package/bootstrap-icons/eraser.d.ts +0 -5
- package/bootstrap-icons/eraser.js +0 -12
- package/bootstrap-icons/ethernet.d.ts +0 -5
- package/bootstrap-icons/ethernet.js +0 -12
- package/bootstrap-icons/exclamation-circle-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-circle-fill.js +0 -12
- package/bootstrap-icons/exclamation-circle.d.ts +0 -5
- package/bootstrap-icons/exclamation-circle.js +0 -12
- package/bootstrap-icons/exclamation-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-diamond-fill.js +0 -12
- package/bootstrap-icons/exclamation-diamond.d.ts +0 -5
- package/bootstrap-icons/exclamation-diamond.js +0 -12
- package/bootstrap-icons/exclamation-lg.d.ts +0 -5
- package/bootstrap-icons/exclamation-lg.js +0 -12
- package/bootstrap-icons/exclamation-octagon-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-octagon-fill.js +0 -12
- package/bootstrap-icons/exclamation-octagon.d.ts +0 -5
- package/bootstrap-icons/exclamation-octagon.js +0 -12
- package/bootstrap-icons/exclamation-square-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-square-fill.js +0 -12
- package/bootstrap-icons/exclamation-square.d.ts +0 -5
- package/bootstrap-icons/exclamation-square.js +0 -12
- package/bootstrap-icons/exclamation-triangle-fill.d.ts +0 -5
- package/bootstrap-icons/exclamation-triangle-fill.js +0 -12
- package/bootstrap-icons/exclamation-triangle.d.ts +0 -5
- package/bootstrap-icons/exclamation-triangle.js +0 -12
- package/bootstrap-icons/exclamation.d.ts +0 -5
- package/bootstrap-icons/exclamation.js +0 -12
- package/bootstrap-icons/exclude.d.ts +0 -5
- package/bootstrap-icons/exclude.js +0 -12
- package/bootstrap-icons/explicit-fill.d.ts +0 -5
- package/bootstrap-icons/explicit-fill.js +0 -12
- package/bootstrap-icons/explicit.d.ts +0 -5
- package/bootstrap-icons/explicit.js +0 -12
- package/bootstrap-icons/eye-fill.d.ts +0 -5
- package/bootstrap-icons/eye-fill.js +0 -12
- package/bootstrap-icons/eye-slash-fill.d.ts +0 -5
- package/bootstrap-icons/eye-slash-fill.js +0 -12
- package/bootstrap-icons/eye-slash.d.ts +0 -5
- package/bootstrap-icons/eye-slash.js +0 -12
- package/bootstrap-icons/eye.d.ts +0 -5
- package/bootstrap-icons/eye.js +0 -12
- package/bootstrap-icons/eyedropper.d.ts +0 -5
- package/bootstrap-icons/eyedropper.js +0 -12
- package/bootstrap-icons/eyeglasses.d.ts +0 -5
- package/bootstrap-icons/eyeglasses.js +0 -12
- package/bootstrap-icons/facebook.d.ts +0 -5
- package/bootstrap-icons/facebook.js +0 -12
- package/bootstrap-icons/fan.d.ts +0 -5
- package/bootstrap-icons/fan.js +0 -12
- package/bootstrap-icons/file-arrow-down-fill.d.ts +0 -5
- package/bootstrap-icons/file-arrow-down-fill.js +0 -12
- package/bootstrap-icons/file-arrow-down.d.ts +0 -5
- package/bootstrap-icons/file-arrow-down.js +0 -12
- package/bootstrap-icons/file-arrow-up-fill.d.ts +0 -5
- package/bootstrap-icons/file-arrow-up-fill.js +0 -12
- package/bootstrap-icons/file-arrow-up.d.ts +0 -5
- package/bootstrap-icons/file-arrow-up.js +0 -12
- package/bootstrap-icons/file-bar-graph-fill.d.ts +0 -5
- package/bootstrap-icons/file-bar-graph-fill.js +0 -12
- package/bootstrap-icons/file-bar-graph.d.ts +0 -5
- package/bootstrap-icons/file-bar-graph.js +0 -12
- package/bootstrap-icons/file-binary-fill.d.ts +0 -5
- package/bootstrap-icons/file-binary-fill.js +0 -12
- package/bootstrap-icons/file-binary.d.ts +0 -5
- package/bootstrap-icons/file-binary.js +0 -12
- package/bootstrap-icons/file-break-fill.d.ts +0 -5
- package/bootstrap-icons/file-break-fill.js +0 -12
- package/bootstrap-icons/file-break.d.ts +0 -5
- package/bootstrap-icons/file-break.js +0 -12
- package/bootstrap-icons/file-check-fill.d.ts +0 -5
- package/bootstrap-icons/file-check-fill.js +0 -12
- package/bootstrap-icons/file-check.d.ts +0 -5
- package/bootstrap-icons/file-check.js +0 -12
- package/bootstrap-icons/file-code-fill.d.ts +0 -5
- package/bootstrap-icons/file-code-fill.js +0 -12
- package/bootstrap-icons/file-code.d.ts +0 -5
- package/bootstrap-icons/file-code.js +0 -12
- package/bootstrap-icons/file-diff-fill.d.ts +0 -5
- package/bootstrap-icons/file-diff-fill.js +0 -12
- package/bootstrap-icons/file-diff.d.ts +0 -5
- package/bootstrap-icons/file-diff.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-down-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-down-fill.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-down.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-down.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-up-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-up-fill.js +0 -12
- package/bootstrap-icons/file-earmark-arrow-up.d.ts +0 -5
- package/bootstrap-icons/file-earmark-arrow-up.js +0 -12
- package/bootstrap-icons/file-earmark-bar-graph-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-bar-graph-fill.js +0 -12
- package/bootstrap-icons/file-earmark-bar-graph.d.ts +0 -5
- package/bootstrap-icons/file-earmark-bar-graph.js +0 -12
- package/bootstrap-icons/file-earmark-binary-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-binary-fill.js +0 -12
- package/bootstrap-icons/file-earmark-binary.d.ts +0 -5
- package/bootstrap-icons/file-earmark-binary.js +0 -12
- package/bootstrap-icons/file-earmark-break-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-break-fill.js +0 -12
- package/bootstrap-icons/file-earmark-break.d.ts +0 -5
- package/bootstrap-icons/file-earmark-break.js +0 -12
- package/bootstrap-icons/file-earmark-check-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-check-fill.js +0 -12
- package/bootstrap-icons/file-earmark-check.d.ts +0 -5
- package/bootstrap-icons/file-earmark-check.js +0 -12
- package/bootstrap-icons/file-earmark-code-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-code-fill.js +0 -12
- package/bootstrap-icons/file-earmark-code.d.ts +0 -5
- package/bootstrap-icons/file-earmark-code.js +0 -12
- package/bootstrap-icons/file-earmark-diff-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-diff-fill.js +0 -12
- package/bootstrap-icons/file-earmark-diff.d.ts +0 -5
- package/bootstrap-icons/file-earmark-diff.js +0 -12
- package/bootstrap-icons/file-earmark-easel-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-easel-fill.js +0 -12
- package/bootstrap-icons/file-earmark-easel.d.ts +0 -5
- package/bootstrap-icons/file-earmark-easel.js +0 -12
- package/bootstrap-icons/file-earmark-excel-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-excel-fill.js +0 -12
- package/bootstrap-icons/file-earmark-excel.d.ts +0 -5
- package/bootstrap-icons/file-earmark-excel.js +0 -12
- package/bootstrap-icons/file-earmark-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-fill.js +0 -12
- package/bootstrap-icons/file-earmark-font-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-font-fill.js +0 -12
- package/bootstrap-icons/file-earmark-font.d.ts +0 -5
- package/bootstrap-icons/file-earmark-font.js +0 -12
- package/bootstrap-icons/file-earmark-image-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-image-fill.js +0 -12
- package/bootstrap-icons/file-earmark-image.d.ts +0 -5
- package/bootstrap-icons/file-earmark-image.js +0 -12
- package/bootstrap-icons/file-earmark-lock-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock-fill.js +0 -12
- package/bootstrap-icons/file-earmark-lock.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock.js +0 -12
- package/bootstrap-icons/file-earmark-lock2-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock2-fill.js +0 -12
- package/bootstrap-icons/file-earmark-lock2.d.ts +0 -5
- package/bootstrap-icons/file-earmark-lock2.js +0 -12
- package/bootstrap-icons/file-earmark-medical-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-medical-fill.js +0 -12
- package/bootstrap-icons/file-earmark-medical.d.ts +0 -5
- package/bootstrap-icons/file-earmark-medical.js +0 -12
- package/bootstrap-icons/file-earmark-minus-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-minus-fill.js +0 -12
- package/bootstrap-icons/file-earmark-minus.d.ts +0 -5
- package/bootstrap-icons/file-earmark-minus.js +0 -12
- package/bootstrap-icons/file-earmark-music-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-music-fill.js +0 -12
- package/bootstrap-icons/file-earmark-music.d.ts +0 -5
- package/bootstrap-icons/file-earmark-music.js +0 -12
- package/bootstrap-icons/file-earmark-pdf-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-pdf-fill.js +0 -12
- package/bootstrap-icons/file-earmark-pdf.d.ts +0 -5
- package/bootstrap-icons/file-earmark-pdf.js +0 -12
- package/bootstrap-icons/file-earmark-person-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-person-fill.js +0 -12
- package/bootstrap-icons/file-earmark-person.d.ts +0 -5
- package/bootstrap-icons/file-earmark-person.js +0 -12
- package/bootstrap-icons/file-earmark-play-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-play-fill.js +0 -12
- package/bootstrap-icons/file-earmark-play.d.ts +0 -5
- package/bootstrap-icons/file-earmark-play.js +0 -12
- package/bootstrap-icons/file-earmark-plus-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-plus-fill.js +0 -12
- package/bootstrap-icons/file-earmark-plus.d.ts +0 -5
- package/bootstrap-icons/file-earmark-plus.js +0 -12
- package/bootstrap-icons/file-earmark-post-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-post-fill.js +0 -12
- package/bootstrap-icons/file-earmark-post.d.ts +0 -5
- package/bootstrap-icons/file-earmark-post.js +0 -12
- package/bootstrap-icons/file-earmark-ppt-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ppt-fill.js +0 -12
- package/bootstrap-icons/file-earmark-ppt.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ppt.js +0 -12
- package/bootstrap-icons/file-earmark-richtext-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-richtext-fill.js +0 -12
- package/bootstrap-icons/file-earmark-richtext.d.ts +0 -5
- package/bootstrap-icons/file-earmark-richtext.js +0 -12
- package/bootstrap-icons/file-earmark-ruled-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ruled-fill.js +0 -12
- package/bootstrap-icons/file-earmark-ruled.d.ts +0 -5
- package/bootstrap-icons/file-earmark-ruled.js +0 -12
- package/bootstrap-icons/file-earmark-slides-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-slides-fill.js +0 -12
- package/bootstrap-icons/file-earmark-slides.d.ts +0 -5
- package/bootstrap-icons/file-earmark-slides.js +0 -12
- package/bootstrap-icons/file-earmark-spreadsheet-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-spreadsheet-fill.js +0 -12
- package/bootstrap-icons/file-earmark-spreadsheet.d.ts +0 -5
- package/bootstrap-icons/file-earmark-spreadsheet.js +0 -12
- package/bootstrap-icons/file-earmark-text-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-text-fill.js +0 -12
- package/bootstrap-icons/file-earmark-text.d.ts +0 -5
- package/bootstrap-icons/file-earmark-text.js +0 -12
- package/bootstrap-icons/file-earmark-word-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-word-fill.js +0 -12
- package/bootstrap-icons/file-earmark-word.d.ts +0 -5
- package/bootstrap-icons/file-earmark-word.js +0 -12
- package/bootstrap-icons/file-earmark-x-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-x-fill.js +0 -12
- package/bootstrap-icons/file-earmark-x.d.ts +0 -5
- package/bootstrap-icons/file-earmark-x.js +0 -12
- package/bootstrap-icons/file-earmark-zip-fill.d.ts +0 -5
- package/bootstrap-icons/file-earmark-zip-fill.js +0 -12
- package/bootstrap-icons/file-earmark-zip.d.ts +0 -5
- package/bootstrap-icons/file-earmark-zip.js +0 -12
- package/bootstrap-icons/file-earmark.d.ts +0 -5
- package/bootstrap-icons/file-earmark.js +0 -12
- package/bootstrap-icons/file-easel-fill.d.ts +0 -5
- package/bootstrap-icons/file-easel-fill.js +0 -12
- package/bootstrap-icons/file-easel.d.ts +0 -5
- package/bootstrap-icons/file-easel.js +0 -12
- package/bootstrap-icons/file-excel-fill.d.ts +0 -5
- package/bootstrap-icons/file-excel-fill.js +0 -12
- package/bootstrap-icons/file-excel.d.ts +0 -5
- package/bootstrap-icons/file-excel.js +0 -12
- package/bootstrap-icons/file-fill.d.ts +0 -5
- package/bootstrap-icons/file-fill.js +0 -12
- package/bootstrap-icons/file-font-fill.d.ts +0 -5
- package/bootstrap-icons/file-font-fill.js +0 -12
- package/bootstrap-icons/file-font.d.ts +0 -5
- package/bootstrap-icons/file-font.js +0 -12
- package/bootstrap-icons/file-image-fill.d.ts +0 -5
- package/bootstrap-icons/file-image-fill.js +0 -12
- package/bootstrap-icons/file-image.d.ts +0 -5
- package/bootstrap-icons/file-image.js +0 -12
- package/bootstrap-icons/file-lock-fill.d.ts +0 -5
- package/bootstrap-icons/file-lock-fill.js +0 -12
- package/bootstrap-icons/file-lock.d.ts +0 -5
- package/bootstrap-icons/file-lock.js +0 -12
- package/bootstrap-icons/file-lock2-fill.d.ts +0 -5
- package/bootstrap-icons/file-lock2-fill.js +0 -12
- package/bootstrap-icons/file-lock2.d.ts +0 -5
- package/bootstrap-icons/file-lock2.js +0 -12
- package/bootstrap-icons/file-medical-fill.d.ts +0 -5
- package/bootstrap-icons/file-medical-fill.js +0 -12
- package/bootstrap-icons/file-medical.d.ts +0 -5
- package/bootstrap-icons/file-medical.js +0 -12
- package/bootstrap-icons/file-minus-fill.d.ts +0 -5
- package/bootstrap-icons/file-minus-fill.js +0 -12
- package/bootstrap-icons/file-minus.d.ts +0 -5
- package/bootstrap-icons/file-minus.js +0 -12
- package/bootstrap-icons/file-music-fill.d.ts +0 -5
- package/bootstrap-icons/file-music-fill.js +0 -12
- package/bootstrap-icons/file-music.d.ts +0 -5
- package/bootstrap-icons/file-music.js +0 -12
- package/bootstrap-icons/file-pdf-fill.d.ts +0 -5
- package/bootstrap-icons/file-pdf-fill.js +0 -12
- package/bootstrap-icons/file-pdf.d.ts +0 -5
- package/bootstrap-icons/file-pdf.js +0 -12
- package/bootstrap-icons/file-person-fill.d.ts +0 -5
- package/bootstrap-icons/file-person-fill.js +0 -12
- package/bootstrap-icons/file-person.d.ts +0 -5
- package/bootstrap-icons/file-person.js +0 -12
- package/bootstrap-icons/file-play-fill.d.ts +0 -5
- package/bootstrap-icons/file-play-fill.js +0 -12
- package/bootstrap-icons/file-play.d.ts +0 -5
- package/bootstrap-icons/file-play.js +0 -12
- package/bootstrap-icons/file-plus-fill.d.ts +0 -5
- package/bootstrap-icons/file-plus-fill.js +0 -12
- package/bootstrap-icons/file-plus.d.ts +0 -5
- package/bootstrap-icons/file-plus.js +0 -12
- package/bootstrap-icons/file-post-fill.d.ts +0 -5
- package/bootstrap-icons/file-post-fill.js +0 -12
- package/bootstrap-icons/file-post.d.ts +0 -5
- package/bootstrap-icons/file-post.js +0 -12
- package/bootstrap-icons/file-ppt-fill.d.ts +0 -5
- package/bootstrap-icons/file-ppt-fill.js +0 -12
- package/bootstrap-icons/file-ppt.d.ts +0 -5
- package/bootstrap-icons/file-ppt.js +0 -12
- package/bootstrap-icons/file-richtext-fill.d.ts +0 -5
- package/bootstrap-icons/file-richtext-fill.js +0 -12
- package/bootstrap-icons/file-richtext.d.ts +0 -5
- package/bootstrap-icons/file-richtext.js +0 -12
- package/bootstrap-icons/file-ruled-fill.d.ts +0 -5
- package/bootstrap-icons/file-ruled-fill.js +0 -12
- package/bootstrap-icons/file-ruled.d.ts +0 -5
- package/bootstrap-icons/file-ruled.js +0 -12
- package/bootstrap-icons/file-slides-fill.d.ts +0 -5
- package/bootstrap-icons/file-slides-fill.js +0 -12
- package/bootstrap-icons/file-slides.d.ts +0 -5
- package/bootstrap-icons/file-slides.js +0 -12
- package/bootstrap-icons/file-spreadsheet-fill.d.ts +0 -5
- package/bootstrap-icons/file-spreadsheet-fill.js +0 -12
- package/bootstrap-icons/file-spreadsheet.d.ts +0 -5
- package/bootstrap-icons/file-spreadsheet.js +0 -12
- package/bootstrap-icons/file-text-fill.d.ts +0 -5
- package/bootstrap-icons/file-text-fill.js +0 -12
- package/bootstrap-icons/file-text.d.ts +0 -5
- package/bootstrap-icons/file-text.js +0 -12
- package/bootstrap-icons/file-word-fill.d.ts +0 -5
- package/bootstrap-icons/file-word-fill.js +0 -12
- package/bootstrap-icons/file-word.d.ts +0 -5
- package/bootstrap-icons/file-word.js +0 -12
- package/bootstrap-icons/file-x-fill.d.ts +0 -5
- package/bootstrap-icons/file-x-fill.js +0 -12
- package/bootstrap-icons/file-x.d.ts +0 -5
- package/bootstrap-icons/file-x.js +0 -12
- package/bootstrap-icons/file-zip-fill.d.ts +0 -5
- package/bootstrap-icons/file-zip-fill.js +0 -12
- package/bootstrap-icons/file-zip.d.ts +0 -5
- package/bootstrap-icons/file-zip.js +0 -12
- package/bootstrap-icons/file.d.ts +0 -5
- package/bootstrap-icons/file.js +0 -12
- package/bootstrap-icons/files-alt.d.ts +0 -5
- package/bootstrap-icons/files-alt.js +0 -12
- package/bootstrap-icons/files.d.ts +0 -5
- package/bootstrap-icons/files.js +0 -12
- package/bootstrap-icons/filetype-aac.d.ts +0 -5
- package/bootstrap-icons/filetype-aac.js +0 -12
- package/bootstrap-icons/filetype-ai.d.ts +0 -5
- package/bootstrap-icons/filetype-ai.js +0 -12
- package/bootstrap-icons/filetype-bmp.d.ts +0 -5
- package/bootstrap-icons/filetype-bmp.js +0 -12
- package/bootstrap-icons/filetype-cs.d.ts +0 -5
- package/bootstrap-icons/filetype-cs.js +0 -12
- package/bootstrap-icons/filetype-css.d.ts +0 -5
- package/bootstrap-icons/filetype-css.js +0 -12
- package/bootstrap-icons/filetype-csv.d.ts +0 -5
- package/bootstrap-icons/filetype-csv.js +0 -12
- package/bootstrap-icons/filetype-doc.d.ts +0 -5
- package/bootstrap-icons/filetype-doc.js +0 -12
- package/bootstrap-icons/filetype-docx.d.ts +0 -5
- package/bootstrap-icons/filetype-docx.js +0 -12
- package/bootstrap-icons/filetype-exe.d.ts +0 -5
- package/bootstrap-icons/filetype-exe.js +0 -12
- package/bootstrap-icons/filetype-gif.d.ts +0 -5
- package/bootstrap-icons/filetype-gif.js +0 -12
- package/bootstrap-icons/filetype-heic.d.ts +0 -5
- package/bootstrap-icons/filetype-heic.js +0 -12
- package/bootstrap-icons/filetype-html.d.ts +0 -5
- package/bootstrap-icons/filetype-html.js +0 -12
- package/bootstrap-icons/filetype-java.d.ts +0 -5
- package/bootstrap-icons/filetype-java.js +0 -12
- package/bootstrap-icons/filetype-jpg.d.ts +0 -5
- package/bootstrap-icons/filetype-jpg.js +0 -12
- package/bootstrap-icons/filetype-js.d.ts +0 -5
- package/bootstrap-icons/filetype-js.js +0 -12
- package/bootstrap-icons/filetype-json.d.ts +0 -5
- package/bootstrap-icons/filetype-json.js +0 -12
- package/bootstrap-icons/filetype-jsx.d.ts +0 -5
- package/bootstrap-icons/filetype-jsx.js +0 -12
- package/bootstrap-icons/filetype-key.d.ts +0 -5
- package/bootstrap-icons/filetype-key.js +0 -12
- package/bootstrap-icons/filetype-m4p.d.ts +0 -5
- package/bootstrap-icons/filetype-m4p.js +0 -12
- package/bootstrap-icons/filetype-md.d.ts +0 -5
- package/bootstrap-icons/filetype-md.js +0 -12
- package/bootstrap-icons/filetype-mdx.d.ts +0 -5
- package/bootstrap-icons/filetype-mdx.js +0 -12
- package/bootstrap-icons/filetype-mov.d.ts +0 -5
- package/bootstrap-icons/filetype-mov.js +0 -12
- package/bootstrap-icons/filetype-mp3.d.ts +0 -5
- package/bootstrap-icons/filetype-mp3.js +0 -12
- package/bootstrap-icons/filetype-mp4.d.ts +0 -5
- package/bootstrap-icons/filetype-mp4.js +0 -12
- package/bootstrap-icons/filetype-otf.d.ts +0 -5
- package/bootstrap-icons/filetype-otf.js +0 -12
- package/bootstrap-icons/filetype-pdf.d.ts +0 -5
- package/bootstrap-icons/filetype-pdf.js +0 -12
- package/bootstrap-icons/filetype-php.d.ts +0 -5
- package/bootstrap-icons/filetype-php.js +0 -12
- package/bootstrap-icons/filetype-png.d.ts +0 -5
- package/bootstrap-icons/filetype-png.js +0 -12
- package/bootstrap-icons/filetype-ppt.d.ts +0 -5
- package/bootstrap-icons/filetype-ppt.js +0 -12
- package/bootstrap-icons/filetype-pptx.d.ts +0 -5
- package/bootstrap-icons/filetype-pptx.js +0 -12
- package/bootstrap-icons/filetype-psd.d.ts +0 -5
- package/bootstrap-icons/filetype-psd.js +0 -12
- package/bootstrap-icons/filetype-py.d.ts +0 -5
- package/bootstrap-icons/filetype-py.js +0 -12
- package/bootstrap-icons/filetype-raw.d.ts +0 -5
- package/bootstrap-icons/filetype-raw.js +0 -12
- package/bootstrap-icons/filetype-rb.d.ts +0 -5
- package/bootstrap-icons/filetype-rb.js +0 -12
- package/bootstrap-icons/filetype-sass.d.ts +0 -5
- package/bootstrap-icons/filetype-sass.js +0 -12
- package/bootstrap-icons/filetype-scss.d.ts +0 -5
- package/bootstrap-icons/filetype-scss.js +0 -12
- package/bootstrap-icons/filetype-sh.d.ts +0 -5
- package/bootstrap-icons/filetype-sh.js +0 -12
- package/bootstrap-icons/filetype-svg.d.ts +0 -5
- package/bootstrap-icons/filetype-svg.js +0 -12
- package/bootstrap-icons/filetype-tiff.d.ts +0 -5
- package/bootstrap-icons/filetype-tiff.js +0 -12
- package/bootstrap-icons/filetype-tsx.d.ts +0 -5
- package/bootstrap-icons/filetype-tsx.js +0 -12
- package/bootstrap-icons/filetype-ttf.d.ts +0 -5
- package/bootstrap-icons/filetype-ttf.js +0 -12
- package/bootstrap-icons/filetype-txt.d.ts +0 -5
- package/bootstrap-icons/filetype-txt.js +0 -12
- package/bootstrap-icons/filetype-wav.d.ts +0 -5
- package/bootstrap-icons/filetype-wav.js +0 -12
- package/bootstrap-icons/filetype-woff.d.ts +0 -5
- package/bootstrap-icons/filetype-woff.js +0 -12
- package/bootstrap-icons/filetype-xls.d.ts +0 -5
- package/bootstrap-icons/filetype-xls.js +0 -12
- package/bootstrap-icons/filetype-xlsx.d.ts +0 -5
- package/bootstrap-icons/filetype-xlsx.js +0 -12
- package/bootstrap-icons/filetype-xml.d.ts +0 -5
- package/bootstrap-icons/filetype-xml.js +0 -12
- package/bootstrap-icons/filetype-yml.d.ts +0 -5
- package/bootstrap-icons/filetype-yml.js +0 -12
- package/bootstrap-icons/film.d.ts +0 -5
- package/bootstrap-icons/film.js +0 -12
- package/bootstrap-icons/filter-circle-fill.d.ts +0 -5
- package/bootstrap-icons/filter-circle-fill.js +0 -12
- package/bootstrap-icons/filter-circle.d.ts +0 -5
- package/bootstrap-icons/filter-circle.js +0 -12
- package/bootstrap-icons/filter-left.d.ts +0 -5
- package/bootstrap-icons/filter-left.js +0 -12
- package/bootstrap-icons/filter-right.d.ts +0 -5
- package/bootstrap-icons/filter-right.js +0 -12
- package/bootstrap-icons/filter-square-fill.d.ts +0 -5
- package/bootstrap-icons/filter-square-fill.js +0 -12
- package/bootstrap-icons/filter-square.d.ts +0 -5
- package/bootstrap-icons/filter-square.js +0 -12
- package/bootstrap-icons/filter.d.ts +0 -5
- package/bootstrap-icons/filter.js +0 -12
- package/bootstrap-icons/fingerprint.d.ts +0 -5
- package/bootstrap-icons/fingerprint.js +0 -12
- package/bootstrap-icons/flag-fill.d.ts +0 -5
- package/bootstrap-icons/flag-fill.js +0 -12
- package/bootstrap-icons/flag.d.ts +0 -5
- package/bootstrap-icons/flag.js +0 -12
- package/bootstrap-icons/flower1.d.ts +0 -5
- package/bootstrap-icons/flower1.js +0 -12
- package/bootstrap-icons/flower2.d.ts +0 -5
- package/bootstrap-icons/flower2.js +0 -12
- package/bootstrap-icons/flower3.d.ts +0 -5
- package/bootstrap-icons/flower3.js +0 -12
- package/bootstrap-icons/folder-check.d.ts +0 -5
- package/bootstrap-icons/folder-check.js +0 -12
- package/bootstrap-icons/folder-fill.d.ts +0 -5
- package/bootstrap-icons/folder-fill.js +0 -12
- package/bootstrap-icons/folder-minus.d.ts +0 -5
- package/bootstrap-icons/folder-minus.js +0 -12
- package/bootstrap-icons/folder-plus.d.ts +0 -5
- package/bootstrap-icons/folder-plus.js +0 -12
- package/bootstrap-icons/folder-symlink-fill.d.ts +0 -5
- package/bootstrap-icons/folder-symlink-fill.js +0 -12
- package/bootstrap-icons/folder-symlink.d.ts +0 -5
- package/bootstrap-icons/folder-symlink.js +0 -12
- package/bootstrap-icons/folder-x.d.ts +0 -5
- package/bootstrap-icons/folder-x.js +0 -12
- package/bootstrap-icons/folder.d.ts +0 -5
- package/bootstrap-icons/folder.js +0 -12
- package/bootstrap-icons/folder2-open.d.ts +0 -5
- package/bootstrap-icons/folder2-open.js +0 -12
- package/bootstrap-icons/folder2.d.ts +0 -5
- package/bootstrap-icons/folder2.js +0 -12
- package/bootstrap-icons/fonts.d.ts +0 -5
- package/bootstrap-icons/fonts.js +0 -12
- package/bootstrap-icons/forward-fill.d.ts +0 -5
- package/bootstrap-icons/forward-fill.js +0 -12
- package/bootstrap-icons/forward.d.ts +0 -5
- package/bootstrap-icons/forward.js +0 -12
- package/bootstrap-icons/front.d.ts +0 -5
- package/bootstrap-icons/front.js +0 -12
- package/bootstrap-icons/fullscreen-exit.d.ts +0 -5
- package/bootstrap-icons/fullscreen-exit.js +0 -12
- package/bootstrap-icons/fullscreen.d.ts +0 -5
- package/bootstrap-icons/fullscreen.js +0 -12
- package/bootstrap-icons/funnel-fill.d.ts +0 -5
- package/bootstrap-icons/funnel-fill.js +0 -12
- package/bootstrap-icons/funnel.d.ts +0 -5
- package/bootstrap-icons/funnel.js +0 -12
- package/bootstrap-icons/gear-fill.d.ts +0 -5
- package/bootstrap-icons/gear-fill.js +0 -12
- package/bootstrap-icons/gear-wide-connected.d.ts +0 -5
- package/bootstrap-icons/gear-wide-connected.js +0 -12
- package/bootstrap-icons/gear-wide.d.ts +0 -5
- package/bootstrap-icons/gear-wide.js +0 -12
- package/bootstrap-icons/gear.d.ts +0 -5
- package/bootstrap-icons/gear.js +0 -12
- package/bootstrap-icons/gem.d.ts +0 -5
- package/bootstrap-icons/gem.js +0 -12
- package/bootstrap-icons/gender-ambiguous.d.ts +0 -5
- package/bootstrap-icons/gender-ambiguous.js +0 -12
- package/bootstrap-icons/gender-female.d.ts +0 -5
- package/bootstrap-icons/gender-female.js +0 -12
- package/bootstrap-icons/gender-male.d.ts +0 -5
- package/bootstrap-icons/gender-male.js +0 -12
- package/bootstrap-icons/gender-trans.d.ts +0 -5
- package/bootstrap-icons/gender-trans.js +0 -12
- package/bootstrap-icons/geo-alt-fill.d.ts +0 -5
- package/bootstrap-icons/geo-alt-fill.js +0 -12
- package/bootstrap-icons/geo-alt.d.ts +0 -5
- package/bootstrap-icons/geo-alt.js +0 -12
- package/bootstrap-icons/geo-fill.d.ts +0 -5
- package/bootstrap-icons/geo-fill.js +0 -12
- package/bootstrap-icons/geo.d.ts +0 -5
- package/bootstrap-icons/geo.js +0 -12
- package/bootstrap-icons/gift-fill.d.ts +0 -5
- package/bootstrap-icons/gift-fill.js +0 -12
- package/bootstrap-icons/gift.d.ts +0 -5
- package/bootstrap-icons/gift.js +0 -12
- package/bootstrap-icons/git.d.ts +0 -5
- package/bootstrap-icons/git.js +0 -12
- package/bootstrap-icons/github.d.ts +0 -5
- package/bootstrap-icons/github.js +0 -12
- package/bootstrap-icons/globe.d.ts +0 -5
- package/bootstrap-icons/globe.js +0 -12
- package/bootstrap-icons/globe2.d.ts +0 -5
- package/bootstrap-icons/globe2.js +0 -12
- package/bootstrap-icons/google.d.ts +0 -5
- package/bootstrap-icons/google.js +0 -12
- package/bootstrap-icons/gpu-card.d.ts +0 -5
- package/bootstrap-icons/gpu-card.js +0 -12
- package/bootstrap-icons/graph-down-arrow.d.ts +0 -5
- package/bootstrap-icons/graph-down-arrow.js +0 -12
- package/bootstrap-icons/graph-down.d.ts +0 -5
- package/bootstrap-icons/graph-down.js +0 -12
- package/bootstrap-icons/graph-up-arrow.d.ts +0 -5
- package/bootstrap-icons/graph-up-arrow.js +0 -12
- package/bootstrap-icons/graph-up.d.ts +0 -5
- package/bootstrap-icons/graph-up.js +0 -12
- package/bootstrap-icons/grid-1x2-fill.d.ts +0 -5
- package/bootstrap-icons/grid-1x2-fill.js +0 -12
- package/bootstrap-icons/grid-1x2.d.ts +0 -5
- package/bootstrap-icons/grid-1x2.js +0 -12
- package/bootstrap-icons/grid-3x2-gap-fill.d.ts +0 -5
- package/bootstrap-icons/grid-3x2-gap-fill.js +0 -12
- package/bootstrap-icons/grid-3x2-gap.d.ts +0 -5
- package/bootstrap-icons/grid-3x2-gap.js +0 -12
- package/bootstrap-icons/grid-3x2.d.ts +0 -5
- package/bootstrap-icons/grid-3x2.js +0 -12
- package/bootstrap-icons/grid-3x3-gap-fill.d.ts +0 -5
- package/bootstrap-icons/grid-3x3-gap-fill.js +0 -12
- package/bootstrap-icons/grid-3x3-gap.d.ts +0 -5
- package/bootstrap-icons/grid-3x3-gap.js +0 -12
- package/bootstrap-icons/grid-3x3.d.ts +0 -5
- package/bootstrap-icons/grid-3x3.js +0 -12
- package/bootstrap-icons/grid-fill.d.ts +0 -5
- package/bootstrap-icons/grid-fill.js +0 -12
- package/bootstrap-icons/grid.d.ts +0 -5
- package/bootstrap-icons/grid.js +0 -12
- package/bootstrap-icons/grip-horizontal.d.ts +0 -5
- package/bootstrap-icons/grip-horizontal.js +0 -12
- package/bootstrap-icons/grip-vertical.d.ts +0 -5
- package/bootstrap-icons/grip-vertical.js +0 -12
- package/bootstrap-icons/hammer.d.ts +0 -5
- package/bootstrap-icons/hammer.js +0 -12
- package/bootstrap-icons/hand-index-fill.d.ts +0 -5
- package/bootstrap-icons/hand-index-fill.js +0 -12
- package/bootstrap-icons/hand-index-thumb-fill.d.ts +0 -5
- package/bootstrap-icons/hand-index-thumb-fill.js +0 -12
- package/bootstrap-icons/hand-index-thumb.d.ts +0 -5
- package/bootstrap-icons/hand-index-thumb.js +0 -12
- package/bootstrap-icons/hand-index.d.ts +0 -5
- package/bootstrap-icons/hand-index.js +0 -12
- package/bootstrap-icons/hand-thumbs-down-fill.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-down-fill.js +0 -12
- package/bootstrap-icons/hand-thumbs-down.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-down.js +0 -12
- package/bootstrap-icons/hand-thumbs-up-fill.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-up-fill.js +0 -12
- package/bootstrap-icons/hand-thumbs-up.d.ts +0 -5
- package/bootstrap-icons/hand-thumbs-up.js +0 -12
- package/bootstrap-icons/handbag-fill.d.ts +0 -5
- package/bootstrap-icons/handbag-fill.js +0 -12
- package/bootstrap-icons/handbag.d.ts +0 -5
- package/bootstrap-icons/handbag.js +0 -12
- package/bootstrap-icons/hash.d.ts +0 -5
- package/bootstrap-icons/hash.js +0 -12
- package/bootstrap-icons/hdd-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-fill.js +0 -12
- package/bootstrap-icons/hdd-network-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-network-fill.js +0 -12
- package/bootstrap-icons/hdd-network.d.ts +0 -5
- package/bootstrap-icons/hdd-network.js +0 -12
- package/bootstrap-icons/hdd-rack-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-rack-fill.js +0 -12
- package/bootstrap-icons/hdd-rack.d.ts +0 -5
- package/bootstrap-icons/hdd-rack.js +0 -12
- package/bootstrap-icons/hdd-stack-fill.d.ts +0 -5
- package/bootstrap-icons/hdd-stack-fill.js +0 -12
- package/bootstrap-icons/hdd-stack.d.ts +0 -5
- package/bootstrap-icons/hdd-stack.js +0 -12
- package/bootstrap-icons/hdd.d.ts +0 -5
- package/bootstrap-icons/hdd.js +0 -12
- package/bootstrap-icons/hdmi-fill.d.ts +0 -5
- package/bootstrap-icons/hdmi-fill.js +0 -12
- package/bootstrap-icons/hdmi.d.ts +0 -5
- package/bootstrap-icons/hdmi.js +0 -12
- package/bootstrap-icons/headphones.d.ts +0 -5
- package/bootstrap-icons/headphones.js +0 -12
- package/bootstrap-icons/headset-vr.d.ts +0 -5
- package/bootstrap-icons/headset-vr.js +0 -12
- package/bootstrap-icons/headset.d.ts +0 -5
- package/bootstrap-icons/headset.js +0 -12
- package/bootstrap-icons/heart-arrow.d.ts +0 -5
- package/bootstrap-icons/heart-arrow.js +0 -12
- package/bootstrap-icons/heart-fill.d.ts +0 -5
- package/bootstrap-icons/heart-fill.js +0 -12
- package/bootstrap-icons/heart-half.d.ts +0 -5
- package/bootstrap-icons/heart-half.js +0 -12
- package/bootstrap-icons/heart-pulse-fill.d.ts +0 -5
- package/bootstrap-icons/heart-pulse-fill.js +0 -12
- package/bootstrap-icons/heart-pulse.d.ts +0 -5
- package/bootstrap-icons/heart-pulse.js +0 -12
- package/bootstrap-icons/heart.d.ts +0 -5
- package/bootstrap-icons/heart.js +0 -12
- package/bootstrap-icons/heartbreak-fill.d.ts +0 -5
- package/bootstrap-icons/heartbreak-fill.js +0 -12
- package/bootstrap-icons/heartbreak.d.ts +0 -5
- package/bootstrap-icons/heartbreak.js +0 -12
- package/bootstrap-icons/hearts.d.ts +0 -5
- package/bootstrap-icons/hearts.js +0 -12
- package/bootstrap-icons/heptagon-fill.d.ts +0 -5
- package/bootstrap-icons/heptagon-fill.js +0 -12
- package/bootstrap-icons/heptagon-half.d.ts +0 -5
- package/bootstrap-icons/heptagon-half.js +0 -12
- package/bootstrap-icons/heptagon.d.ts +0 -5
- package/bootstrap-icons/heptagon.js +0 -12
- package/bootstrap-icons/hexagon-fill.d.ts +0 -5
- package/bootstrap-icons/hexagon-fill.js +0 -12
- package/bootstrap-icons/hexagon-half.d.ts +0 -5
- package/bootstrap-icons/hexagon-half.js +0 -12
- package/bootstrap-icons/hexagon.d.ts +0 -5
- package/bootstrap-icons/hexagon.js +0 -12
- package/bootstrap-icons/hospital-fill.d.ts +0 -5
- package/bootstrap-icons/hospital-fill.js +0 -12
- package/bootstrap-icons/hospital.d.ts +0 -5
- package/bootstrap-icons/hospital.js +0 -12
- package/bootstrap-icons/hourglass-bottom.d.ts +0 -5
- package/bootstrap-icons/hourglass-bottom.js +0 -12
- package/bootstrap-icons/hourglass-split.d.ts +0 -5
- package/bootstrap-icons/hourglass-split.js +0 -12
- package/bootstrap-icons/hourglass-top.d.ts +0 -5
- package/bootstrap-icons/hourglass-top.js +0 -12
- package/bootstrap-icons/hourglass.d.ts +0 -5
- package/bootstrap-icons/hourglass.js +0 -12
- package/bootstrap-icons/house-door-fill.d.ts +0 -5
- package/bootstrap-icons/house-door-fill.js +0 -12
- package/bootstrap-icons/house-door.d.ts +0 -5
- package/bootstrap-icons/house-door.js +0 -12
- package/bootstrap-icons/house-fill.d.ts +0 -5
- package/bootstrap-icons/house-fill.js +0 -12
- package/bootstrap-icons/house-heart-fill.d.ts +0 -5
- package/bootstrap-icons/house-heart-fill.js +0 -12
- package/bootstrap-icons/house-heart.d.ts +0 -5
- package/bootstrap-icons/house-heart.js +0 -12
- package/bootstrap-icons/house.d.ts +0 -5
- package/bootstrap-icons/house.js +0 -12
- package/bootstrap-icons/hr.d.ts +0 -5
- package/bootstrap-icons/hr.js +0 -12
- package/bootstrap-icons/hurricane.d.ts +0 -5
- package/bootstrap-icons/hurricane.js +0 -12
- package/bootstrap-icons/hypnotize.d.ts +0 -5
- package/bootstrap-icons/hypnotize.js +0 -12
- package/bootstrap-icons/image-alt.d.ts +0 -5
- package/bootstrap-icons/image-alt.js +0 -12
- package/bootstrap-icons/image-fill.d.ts +0 -5
- package/bootstrap-icons/image-fill.js +0 -12
- package/bootstrap-icons/image.d.ts +0 -5
- package/bootstrap-icons/image.js +0 -12
- package/bootstrap-icons/images.d.ts +0 -5
- package/bootstrap-icons/images.js +0 -12
- package/bootstrap-icons/inbox-fill.d.ts +0 -5
- package/bootstrap-icons/inbox-fill.js +0 -12
- package/bootstrap-icons/inbox.d.ts +0 -5
- package/bootstrap-icons/inbox.js +0 -12
- package/bootstrap-icons/inboxes-fill.d.ts +0 -5
- package/bootstrap-icons/inboxes-fill.js +0 -12
- package/bootstrap-icons/inboxes.d.ts +0 -5
- package/bootstrap-icons/inboxes.js +0 -12
- package/bootstrap-icons/incognito.d.ts +0 -5
- package/bootstrap-icons/incognito.js +0 -12
- package/bootstrap-icons/index.d.ts +0 -1671
- package/bootstrap-icons/index.js +0 -1687
- package/bootstrap-icons/infinity.d.ts +0 -5
- package/bootstrap-icons/infinity.js +0 -12
- package/bootstrap-icons/info-circle-fill.d.ts +0 -5
- package/bootstrap-icons/info-circle-fill.js +0 -12
- package/bootstrap-icons/info-circle.d.ts +0 -5
- package/bootstrap-icons/info-circle.js +0 -12
- package/bootstrap-icons/info-lg.d.ts +0 -5
- package/bootstrap-icons/info-lg.js +0 -12
- package/bootstrap-icons/info-square-fill.d.ts +0 -5
- package/bootstrap-icons/info-square-fill.js +0 -12
- package/bootstrap-icons/info-square.d.ts +0 -5
- package/bootstrap-icons/info-square.js +0 -12
- package/bootstrap-icons/info.d.ts +0 -5
- package/bootstrap-icons/info.js +0 -12
- package/bootstrap-icons/input-cursor-text.d.ts +0 -5
- package/bootstrap-icons/input-cursor-text.js +0 -12
- package/bootstrap-icons/input-cursor.d.ts +0 -5
- package/bootstrap-icons/input-cursor.js +0 -12
- package/bootstrap-icons/instagram.d.ts +0 -5
- package/bootstrap-icons/instagram.js +0 -12
- package/bootstrap-icons/intersect.d.ts +0 -5
- package/bootstrap-icons/intersect.js +0 -12
- package/bootstrap-icons/journal-album.d.ts +0 -5
- package/bootstrap-icons/journal-album.js +0 -12
- package/bootstrap-icons/journal-arrow-down.d.ts +0 -5
- package/bootstrap-icons/journal-arrow-down.js +0 -12
- package/bootstrap-icons/journal-arrow-up.d.ts +0 -5
- package/bootstrap-icons/journal-arrow-up.js +0 -12
- package/bootstrap-icons/journal-bookmark-fill.d.ts +0 -5
- package/bootstrap-icons/journal-bookmark-fill.js +0 -12
- package/bootstrap-icons/journal-bookmark.d.ts +0 -5
- package/bootstrap-icons/journal-bookmark.js +0 -12
- package/bootstrap-icons/journal-check.d.ts +0 -5
- package/bootstrap-icons/journal-check.js +0 -12
- package/bootstrap-icons/journal-code.d.ts +0 -5
- package/bootstrap-icons/journal-code.js +0 -12
- package/bootstrap-icons/journal-medical.d.ts +0 -5
- package/bootstrap-icons/journal-medical.js +0 -12
- package/bootstrap-icons/journal-minus.d.ts +0 -5
- package/bootstrap-icons/journal-minus.js +0 -12
- package/bootstrap-icons/journal-plus.d.ts +0 -5
- package/bootstrap-icons/journal-plus.js +0 -12
- package/bootstrap-icons/journal-richtext.d.ts +0 -5
- package/bootstrap-icons/journal-richtext.js +0 -12
- package/bootstrap-icons/journal-text.d.ts +0 -5
- package/bootstrap-icons/journal-text.js +0 -12
- package/bootstrap-icons/journal-x.d.ts +0 -5
- package/bootstrap-icons/journal-x.js +0 -12
- package/bootstrap-icons/journal.d.ts +0 -5
- package/bootstrap-icons/journal.js +0 -12
- package/bootstrap-icons/journals.d.ts +0 -5
- package/bootstrap-icons/journals.js +0 -12
- package/bootstrap-icons/joystick.d.ts +0 -5
- package/bootstrap-icons/joystick.js +0 -12
- package/bootstrap-icons/justify-left.d.ts +0 -5
- package/bootstrap-icons/justify-left.js +0 -12
- package/bootstrap-icons/justify-right.d.ts +0 -5
- package/bootstrap-icons/justify-right.js +0 -12
- package/bootstrap-icons/justify.d.ts +0 -5
- package/bootstrap-icons/justify.js +0 -12
- package/bootstrap-icons/kanban-fill.d.ts +0 -5
- package/bootstrap-icons/kanban-fill.js +0 -12
- package/bootstrap-icons/kanban.d.ts +0 -5
- package/bootstrap-icons/kanban.js +0 -12
- package/bootstrap-icons/key-fill.d.ts +0 -5
- package/bootstrap-icons/key-fill.js +0 -12
- package/bootstrap-icons/key.d.ts +0 -5
- package/bootstrap-icons/key.js +0 -12
- package/bootstrap-icons/keyboard-fill.d.ts +0 -5
- package/bootstrap-icons/keyboard-fill.js +0 -12
- package/bootstrap-icons/keyboard.d.ts +0 -5
- package/bootstrap-icons/keyboard.js +0 -12
- package/bootstrap-icons/ladder.d.ts +0 -5
- package/bootstrap-icons/ladder.js +0 -12
- package/bootstrap-icons/lamp-fill.d.ts +0 -5
- package/bootstrap-icons/lamp-fill.js +0 -12
- package/bootstrap-icons/lamp.d.ts +0 -5
- package/bootstrap-icons/lamp.js +0 -12
- package/bootstrap-icons/laptop-fill.d.ts +0 -5
- package/bootstrap-icons/laptop-fill.js +0 -12
- package/bootstrap-icons/laptop.d.ts +0 -5
- package/bootstrap-icons/laptop.js +0 -12
- package/bootstrap-icons/layer-backward.d.ts +0 -5
- package/bootstrap-icons/layer-backward.js +0 -12
- package/bootstrap-icons/layer-forward.d.ts +0 -5
- package/bootstrap-icons/layer-forward.js +0 -12
- package/bootstrap-icons/layers-fill.d.ts +0 -5
- package/bootstrap-icons/layers-fill.js +0 -12
- package/bootstrap-icons/layers-half.d.ts +0 -5
- package/bootstrap-icons/layers-half.js +0 -12
- package/bootstrap-icons/layers.d.ts +0 -5
- package/bootstrap-icons/layers.js +0 -12
- package/bootstrap-icons/layout-sidebar-inset-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar-inset-reverse.js +0 -12
- package/bootstrap-icons/layout-sidebar-inset.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar-inset.js +0 -12
- package/bootstrap-icons/layout-sidebar-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar-reverse.js +0 -12
- package/bootstrap-icons/layout-sidebar.d.ts +0 -5
- package/bootstrap-icons/layout-sidebar.js +0 -12
- package/bootstrap-icons/layout-split.d.ts +0 -5
- package/bootstrap-icons/layout-split.js +0 -12
- package/bootstrap-icons/layout-text-sidebar-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-text-sidebar-reverse.js +0 -12
- package/bootstrap-icons/layout-text-sidebar.d.ts +0 -5
- package/bootstrap-icons/layout-text-sidebar.js +0 -12
- package/bootstrap-icons/layout-text-window-reverse.d.ts +0 -5
- package/bootstrap-icons/layout-text-window-reverse.js +0 -12
- package/bootstrap-icons/layout-text-window.d.ts +0 -5
- package/bootstrap-icons/layout-text-window.js +0 -12
- package/bootstrap-icons/layout-three-columns.d.ts +0 -5
- package/bootstrap-icons/layout-three-columns.js +0 -12
- package/bootstrap-icons/layout-wtf.d.ts +0 -5
- package/bootstrap-icons/layout-wtf.js +0 -12
- package/bootstrap-icons/life-preserver.d.ts +0 -5
- package/bootstrap-icons/life-preserver.js +0 -12
- package/bootstrap-icons/lightbulb-fill.d.ts +0 -5
- package/bootstrap-icons/lightbulb-fill.js +0 -12
- package/bootstrap-icons/lightbulb-off-fill.d.ts +0 -5
- package/bootstrap-icons/lightbulb-off-fill.js +0 -12
- package/bootstrap-icons/lightbulb-off.d.ts +0 -5
- package/bootstrap-icons/lightbulb-off.js +0 -12
- package/bootstrap-icons/lightbulb.d.ts +0 -5
- package/bootstrap-icons/lightbulb.js +0 -12
- package/bootstrap-icons/lightning-charge-fill.d.ts +0 -5
- package/bootstrap-icons/lightning-charge-fill.js +0 -12
- package/bootstrap-icons/lightning-charge.d.ts +0 -5
- package/bootstrap-icons/lightning-charge.js +0 -12
- package/bootstrap-icons/lightning-fill.d.ts +0 -5
- package/bootstrap-icons/lightning-fill.js +0 -12
- package/bootstrap-icons/lightning.d.ts +0 -5
- package/bootstrap-icons/lightning.js +0 -12
- package/bootstrap-icons/line.d.ts +0 -5
- package/bootstrap-icons/line.js +0 -12
- package/bootstrap-icons/link-45deg.d.ts +0 -5
- package/bootstrap-icons/link-45deg.js +0 -12
- package/bootstrap-icons/link.d.ts +0 -5
- package/bootstrap-icons/link.js +0 -12
- package/bootstrap-icons/linkedin.d.ts +0 -5
- package/bootstrap-icons/linkedin.js +0 -12
- package/bootstrap-icons/list-check.d.ts +0 -5
- package/bootstrap-icons/list-check.js +0 -12
- package/bootstrap-icons/list-columns-reverse.d.ts +0 -5
- package/bootstrap-icons/list-columns-reverse.js +0 -12
- package/bootstrap-icons/list-columns.d.ts +0 -5
- package/bootstrap-icons/list-columns.js +0 -12
- package/bootstrap-icons/list-nested.d.ts +0 -5
- package/bootstrap-icons/list-nested.js +0 -12
- package/bootstrap-icons/list-ol.d.ts +0 -5
- package/bootstrap-icons/list-ol.js +0 -12
- package/bootstrap-icons/list-stars.d.ts +0 -5
- package/bootstrap-icons/list-stars.js +0 -12
- package/bootstrap-icons/list-task.d.ts +0 -5
- package/bootstrap-icons/list-task.js +0 -12
- package/bootstrap-icons/list-ul.d.ts +0 -5
- package/bootstrap-icons/list-ul.js +0 -12
- package/bootstrap-icons/list.d.ts +0 -5
- package/bootstrap-icons/list.js +0 -12
- package/bootstrap-icons/lock-fill.d.ts +0 -5
- package/bootstrap-icons/lock-fill.js +0 -12
- package/bootstrap-icons/lock.d.ts +0 -5
- package/bootstrap-icons/lock.js +0 -12
- package/bootstrap-icons/magic.d.ts +0 -5
- package/bootstrap-icons/magic.js +0 -12
- package/bootstrap-icons/magnet-fill.d.ts +0 -5
- package/bootstrap-icons/magnet-fill.js +0 -12
- package/bootstrap-icons/magnet.d.ts +0 -5
- package/bootstrap-icons/magnet.js +0 -12
- package/bootstrap-icons/mailbox.d.ts +0 -5
- package/bootstrap-icons/mailbox.js +0 -12
- package/bootstrap-icons/mailbox2.d.ts +0 -5
- package/bootstrap-icons/mailbox2.js +0 -12
- package/bootstrap-icons/map-fill.d.ts +0 -5
- package/bootstrap-icons/map-fill.js +0 -12
- package/bootstrap-icons/map.d.ts +0 -5
- package/bootstrap-icons/map.js +0 -12
- package/bootstrap-icons/markdown-fill.d.ts +0 -5
- package/bootstrap-icons/markdown-fill.js +0 -12
- package/bootstrap-icons/markdown.d.ts +0 -5
- package/bootstrap-icons/markdown.js +0 -12
- package/bootstrap-icons/mask.d.ts +0 -5
- package/bootstrap-icons/mask.js +0 -12
- package/bootstrap-icons/mastodon.d.ts +0 -5
- package/bootstrap-icons/mastodon.js +0 -12
- package/bootstrap-icons/medium.d.ts +0 -5
- package/bootstrap-icons/medium.js +0 -12
- package/bootstrap-icons/megaphone-fill.d.ts +0 -5
- package/bootstrap-icons/megaphone-fill.js +0 -12
- package/bootstrap-icons/megaphone.d.ts +0 -5
- package/bootstrap-icons/megaphone.js +0 -12
- package/bootstrap-icons/memory.d.ts +0 -5
- package/bootstrap-icons/memory.js +0 -12
- package/bootstrap-icons/menu-app-fill.d.ts +0 -5
- package/bootstrap-icons/menu-app-fill.js +0 -12
- package/bootstrap-icons/menu-app.d.ts +0 -5
- package/bootstrap-icons/menu-app.js +0 -12
- package/bootstrap-icons/menu-button-fill.d.ts +0 -5
- package/bootstrap-icons/menu-button-fill.js +0 -12
- package/bootstrap-icons/menu-button-wide-fill.d.ts +0 -5
- package/bootstrap-icons/menu-button-wide-fill.js +0 -12
- package/bootstrap-icons/menu-button-wide.d.ts +0 -5
- package/bootstrap-icons/menu-button-wide.js +0 -12
- package/bootstrap-icons/menu-button.d.ts +0 -5
- package/bootstrap-icons/menu-button.js +0 -12
- package/bootstrap-icons/menu-down.d.ts +0 -5
- package/bootstrap-icons/menu-down.js +0 -12
- package/bootstrap-icons/menu-up.d.ts +0 -5
- package/bootstrap-icons/menu-up.js +0 -12
- package/bootstrap-icons/messenger.d.ts +0 -5
- package/bootstrap-icons/messenger.js +0 -12
- package/bootstrap-icons/meta.d.ts +0 -5
- package/bootstrap-icons/meta.js +0 -12
- package/bootstrap-icons/mic-fill.d.ts +0 -5
- package/bootstrap-icons/mic-fill.js +0 -12
- package/bootstrap-icons/mic-mute-fill.d.ts +0 -5
- package/bootstrap-icons/mic-mute-fill.js +0 -12
- package/bootstrap-icons/mic-mute.d.ts +0 -5
- package/bootstrap-icons/mic-mute.js +0 -12
- package/bootstrap-icons/mic.d.ts +0 -5
- package/bootstrap-icons/mic.js +0 -12
- package/bootstrap-icons/microsoft.d.ts +0 -5
- package/bootstrap-icons/microsoft.js +0 -12
- package/bootstrap-icons/minecart-loaded.d.ts +0 -5
- package/bootstrap-icons/minecart-loaded.js +0 -12
- package/bootstrap-icons/minecart.d.ts +0 -5
- package/bootstrap-icons/minecart.js +0 -12
- package/bootstrap-icons/modem-fill.d.ts +0 -5
- package/bootstrap-icons/modem-fill.js +0 -12
- package/bootstrap-icons/modem.d.ts +0 -5
- package/bootstrap-icons/modem.js +0 -12
- package/bootstrap-icons/moisture.d.ts +0 -5
- package/bootstrap-icons/moisture.js +0 -12
- package/bootstrap-icons/moon-fill.d.ts +0 -5
- package/bootstrap-icons/moon-fill.js +0 -12
- package/bootstrap-icons/moon-stars-fill.d.ts +0 -5
- package/bootstrap-icons/moon-stars-fill.js +0 -12
- package/bootstrap-icons/moon-stars.d.ts +0 -5
- package/bootstrap-icons/moon-stars.js +0 -12
- package/bootstrap-icons/moon.d.ts +0 -5
- package/bootstrap-icons/moon.js +0 -12
- package/bootstrap-icons/mortarboard-fill.d.ts +0 -5
- package/bootstrap-icons/mortarboard-fill.js +0 -12
- package/bootstrap-icons/mortarboard.d.ts +0 -5
- package/bootstrap-icons/mortarboard.js +0 -12
- package/bootstrap-icons/motherboard-fill.d.ts +0 -5
- package/bootstrap-icons/motherboard-fill.js +0 -12
- package/bootstrap-icons/motherboard.d.ts +0 -5
- package/bootstrap-icons/motherboard.js +0 -12
- package/bootstrap-icons/mouse-fill.d.ts +0 -5
- package/bootstrap-icons/mouse-fill.js +0 -12
- package/bootstrap-icons/mouse.d.ts +0 -5
- package/bootstrap-icons/mouse.js +0 -12
- package/bootstrap-icons/mouse2-fill.d.ts +0 -5
- package/bootstrap-icons/mouse2-fill.js +0 -12
- package/bootstrap-icons/mouse2.d.ts +0 -5
- package/bootstrap-icons/mouse2.js +0 -12
- package/bootstrap-icons/mouse3-fill.d.ts +0 -5
- package/bootstrap-icons/mouse3-fill.js +0 -12
- package/bootstrap-icons/mouse3.d.ts +0 -5
- package/bootstrap-icons/mouse3.js +0 -12
- package/bootstrap-icons/music-note-beamed.d.ts +0 -5
- package/bootstrap-icons/music-note-beamed.js +0 -12
- package/bootstrap-icons/music-note-list.d.ts +0 -5
- package/bootstrap-icons/music-note-list.js +0 -12
- package/bootstrap-icons/music-note.d.ts +0 -5
- package/bootstrap-icons/music-note.js +0 -12
- package/bootstrap-icons/music-player-fill.d.ts +0 -5
- package/bootstrap-icons/music-player-fill.js +0 -12
- package/bootstrap-icons/music-player.d.ts +0 -5
- package/bootstrap-icons/music-player.js +0 -12
- package/bootstrap-icons/newspaper.d.ts +0 -5
- package/bootstrap-icons/newspaper.js +0 -12
- package/bootstrap-icons/nintendo-switch.d.ts +0 -5
- package/bootstrap-icons/nintendo-switch.js +0 -12
- package/bootstrap-icons/node-minus-fill.d.ts +0 -5
- package/bootstrap-icons/node-minus-fill.js +0 -12
- package/bootstrap-icons/node-minus.d.ts +0 -5
- package/bootstrap-icons/node-minus.js +0 -12
- package/bootstrap-icons/node-plus-fill.d.ts +0 -5
- package/bootstrap-icons/node-plus-fill.js +0 -12
- package/bootstrap-icons/node-plus.d.ts +0 -5
- package/bootstrap-icons/node-plus.js +0 -12
- package/bootstrap-icons/nut-fill.d.ts +0 -5
- package/bootstrap-icons/nut-fill.js +0 -12
- package/bootstrap-icons/nut.d.ts +0 -5
- package/bootstrap-icons/nut.js +0 -12
- package/bootstrap-icons/octagon-fill.d.ts +0 -5
- package/bootstrap-icons/octagon-fill.js +0 -12
- package/bootstrap-icons/octagon-half.d.ts +0 -5
- package/bootstrap-icons/octagon-half.js +0 -12
- package/bootstrap-icons/octagon.d.ts +0 -5
- package/bootstrap-icons/octagon.js +0 -12
- package/bootstrap-icons/optical-audio-fill.d.ts +0 -5
- package/bootstrap-icons/optical-audio-fill.js +0 -12
- package/bootstrap-icons/optical-audio.d.ts +0 -5
- package/bootstrap-icons/optical-audio.js +0 -12
- package/bootstrap-icons/option.d.ts +0 -5
- package/bootstrap-icons/option.js +0 -12
- package/bootstrap-icons/outlet.d.ts +0 -5
- package/bootstrap-icons/outlet.js +0 -12
- package/bootstrap-icons/paint-bucket.d.ts +0 -5
- package/bootstrap-icons/paint-bucket.js +0 -12
- package/bootstrap-icons/palette-fill.d.ts +0 -5
- package/bootstrap-icons/palette-fill.js +0 -12
- package/bootstrap-icons/palette.d.ts +0 -5
- package/bootstrap-icons/palette.js +0 -12
- package/bootstrap-icons/palette2.d.ts +0 -5
- package/bootstrap-icons/palette2.js +0 -12
- package/bootstrap-icons/paperclip.d.ts +0 -5
- package/bootstrap-icons/paperclip.js +0 -12
- package/bootstrap-icons/paragraph.d.ts +0 -5
- package/bootstrap-icons/paragraph.js +0 -12
- package/bootstrap-icons/patch-check-fill.d.ts +0 -5
- package/bootstrap-icons/patch-check-fill.js +0 -12
- package/bootstrap-icons/patch-check.d.ts +0 -5
- package/bootstrap-icons/patch-check.js +0 -12
- package/bootstrap-icons/patch-exclamation-fill.d.ts +0 -5
- package/bootstrap-icons/patch-exclamation-fill.js +0 -12
- package/bootstrap-icons/patch-exclamation.d.ts +0 -5
- package/bootstrap-icons/patch-exclamation.js +0 -12
- package/bootstrap-icons/patch-minus-fill.d.ts +0 -5
- package/bootstrap-icons/patch-minus-fill.js +0 -12
- package/bootstrap-icons/patch-minus.d.ts +0 -5
- package/bootstrap-icons/patch-minus.js +0 -12
- package/bootstrap-icons/patch-plus-fill.d.ts +0 -5
- package/bootstrap-icons/patch-plus-fill.js +0 -12
- package/bootstrap-icons/patch-plus.d.ts +0 -5
- package/bootstrap-icons/patch-plus.js +0 -12
- package/bootstrap-icons/patch-question-fill.d.ts +0 -5
- package/bootstrap-icons/patch-question-fill.js +0 -12
- package/bootstrap-icons/patch-question.d.ts +0 -5
- package/bootstrap-icons/patch-question.js +0 -12
- package/bootstrap-icons/pause-btn-fill.d.ts +0 -5
- package/bootstrap-icons/pause-btn-fill.js +0 -12
- package/bootstrap-icons/pause-btn.d.ts +0 -5
- package/bootstrap-icons/pause-btn.js +0 -12
- package/bootstrap-icons/pause-circle-fill.d.ts +0 -5
- package/bootstrap-icons/pause-circle-fill.js +0 -12
- package/bootstrap-icons/pause-circle.d.ts +0 -5
- package/bootstrap-icons/pause-circle.js +0 -12
- package/bootstrap-icons/pause-fill.d.ts +0 -5
- package/bootstrap-icons/pause-fill.js +0 -12
- package/bootstrap-icons/pause.d.ts +0 -5
- package/bootstrap-icons/pause.js +0 -12
- package/bootstrap-icons/paypal.d.ts +0 -5
- package/bootstrap-icons/paypal.js +0 -12
- package/bootstrap-icons/pc-display-horizontal.d.ts +0 -5
- package/bootstrap-icons/pc-display-horizontal.js +0 -12
- package/bootstrap-icons/pc-display.d.ts +0 -5
- package/bootstrap-icons/pc-display.js +0 -12
- package/bootstrap-icons/pc-horizontal.d.ts +0 -5
- package/bootstrap-icons/pc-horizontal.js +0 -12
- package/bootstrap-icons/pc.d.ts +0 -5
- package/bootstrap-icons/pc.js +0 -12
- package/bootstrap-icons/pci-card.d.ts +0 -5
- package/bootstrap-icons/pci-card.js +0 -12
- package/bootstrap-icons/peace-fill.d.ts +0 -5
- package/bootstrap-icons/peace-fill.js +0 -12
- package/bootstrap-icons/peace.d.ts +0 -5
- package/bootstrap-icons/peace.js +0 -12
- package/bootstrap-icons/pen-fill.d.ts +0 -5
- package/bootstrap-icons/pen-fill.js +0 -12
- package/bootstrap-icons/pen.d.ts +0 -5
- package/bootstrap-icons/pen.js +0 -12
- package/bootstrap-icons/pencil-fill.d.ts +0 -5
- package/bootstrap-icons/pencil-fill.js +0 -12
- package/bootstrap-icons/pencil-square.d.ts +0 -5
- package/bootstrap-icons/pencil-square.js +0 -12
- package/bootstrap-icons/pencil.d.ts +0 -5
- package/bootstrap-icons/pencil.js +0 -12
- package/bootstrap-icons/pentagon-fill.d.ts +0 -5
- package/bootstrap-icons/pentagon-fill.js +0 -12
- package/bootstrap-icons/pentagon-half.d.ts +0 -5
- package/bootstrap-icons/pentagon-half.js +0 -12
- package/bootstrap-icons/pentagon.d.ts +0 -5
- package/bootstrap-icons/pentagon.js +0 -12
- package/bootstrap-icons/people-fill.d.ts +0 -5
- package/bootstrap-icons/people-fill.js +0 -12
- package/bootstrap-icons/people.d.ts +0 -5
- package/bootstrap-icons/people.js +0 -12
- package/bootstrap-icons/percent.d.ts +0 -5
- package/bootstrap-icons/percent.js +0 -12
- package/bootstrap-icons/person-badge-fill.d.ts +0 -5
- package/bootstrap-icons/person-badge-fill.js +0 -12
- package/bootstrap-icons/person-badge.d.ts +0 -5
- package/bootstrap-icons/person-badge.js +0 -12
- package/bootstrap-icons/person-bounding-box.d.ts +0 -5
- package/bootstrap-icons/person-bounding-box.js +0 -12
- package/bootstrap-icons/person-check-fill.d.ts +0 -5
- package/bootstrap-icons/person-check-fill.js +0 -12
- package/bootstrap-icons/person-check.d.ts +0 -5
- package/bootstrap-icons/person-check.js +0 -12
- package/bootstrap-icons/person-circle.d.ts +0 -5
- package/bootstrap-icons/person-circle.js +0 -12
- package/bootstrap-icons/person-dash-fill.d.ts +0 -5
- package/bootstrap-icons/person-dash-fill.js +0 -12
- package/bootstrap-icons/person-dash.d.ts +0 -5
- package/bootstrap-icons/person-dash.js +0 -12
- package/bootstrap-icons/person-fill.d.ts +0 -5
- package/bootstrap-icons/person-fill.js +0 -12
- package/bootstrap-icons/person-heart.d.ts +0 -5
- package/bootstrap-icons/person-heart.js +0 -12
- package/bootstrap-icons/person-hearts.d.ts +0 -5
- package/bootstrap-icons/person-hearts.js +0 -12
- package/bootstrap-icons/person-lines-fill.d.ts +0 -5
- package/bootstrap-icons/person-lines-fill.js +0 -12
- package/bootstrap-icons/person-plus-fill.d.ts +0 -5
- package/bootstrap-icons/person-plus-fill.js +0 -12
- package/bootstrap-icons/person-plus.d.ts +0 -5
- package/bootstrap-icons/person-plus.js +0 -12
- package/bootstrap-icons/person-rolodex.d.ts +0 -5
- package/bootstrap-icons/person-rolodex.js +0 -12
- package/bootstrap-icons/person-square.d.ts +0 -5
- package/bootstrap-icons/person-square.js +0 -12
- package/bootstrap-icons/person-video.d.ts +0 -5
- package/bootstrap-icons/person-video.js +0 -12
- package/bootstrap-icons/person-video2.d.ts +0 -5
- package/bootstrap-icons/person-video2.js +0 -12
- package/bootstrap-icons/person-video3.d.ts +0 -5
- package/bootstrap-icons/person-video3.js +0 -12
- package/bootstrap-icons/person-workspace.d.ts +0 -5
- package/bootstrap-icons/person-workspace.js +0 -12
- package/bootstrap-icons/person-x-fill.d.ts +0 -5
- package/bootstrap-icons/person-x-fill.js +0 -12
- package/bootstrap-icons/person-x.d.ts +0 -5
- package/bootstrap-icons/person-x.js +0 -12
- package/bootstrap-icons/person.d.ts +0 -5
- package/bootstrap-icons/person.js +0 -12
- package/bootstrap-icons/phone-fill.d.ts +0 -5
- package/bootstrap-icons/phone-fill.js +0 -12
- package/bootstrap-icons/phone-flip.d.ts +0 -5
- package/bootstrap-icons/phone-flip.js +0 -12
- package/bootstrap-icons/phone-landscape-fill.d.ts +0 -5
- package/bootstrap-icons/phone-landscape-fill.js +0 -12
- package/bootstrap-icons/phone-landscape.d.ts +0 -5
- package/bootstrap-icons/phone-landscape.js +0 -12
- package/bootstrap-icons/phone-vibrate-fill.d.ts +0 -5
- package/bootstrap-icons/phone-vibrate-fill.js +0 -12
- package/bootstrap-icons/phone-vibrate.d.ts +0 -5
- package/bootstrap-icons/phone-vibrate.js +0 -12
- package/bootstrap-icons/phone.d.ts +0 -5
- package/bootstrap-icons/phone.js +0 -12
- package/bootstrap-icons/pie-chart-fill.d.ts +0 -5
- package/bootstrap-icons/pie-chart-fill.js +0 -12
- package/bootstrap-icons/pie-chart.d.ts +0 -5
- package/bootstrap-icons/pie-chart.js +0 -12
- package/bootstrap-icons/piggy-bank-fill.d.ts +0 -5
- package/bootstrap-icons/piggy-bank-fill.js +0 -12
- package/bootstrap-icons/piggy-bank.d.ts +0 -5
- package/bootstrap-icons/piggy-bank.js +0 -12
- package/bootstrap-icons/pin-angle-fill.d.ts +0 -5
- package/bootstrap-icons/pin-angle-fill.js +0 -12
- package/bootstrap-icons/pin-angle.d.ts +0 -5
- package/bootstrap-icons/pin-angle.js +0 -12
- package/bootstrap-icons/pin-fill.d.ts +0 -5
- package/bootstrap-icons/pin-fill.js +0 -12
- package/bootstrap-icons/pin-map-fill.d.ts +0 -5
- package/bootstrap-icons/pin-map-fill.js +0 -12
- package/bootstrap-icons/pin-map.d.ts +0 -5
- package/bootstrap-icons/pin-map.js +0 -12
- package/bootstrap-icons/pin.d.ts +0 -5
- package/bootstrap-icons/pin.js +0 -12
- package/bootstrap-icons/pinterest.d.ts +0 -5
- package/bootstrap-icons/pinterest.js +0 -12
- package/bootstrap-icons/pip-fill.d.ts +0 -5
- package/bootstrap-icons/pip-fill.js +0 -12
- package/bootstrap-icons/pip.d.ts +0 -5
- package/bootstrap-icons/pip.js +0 -12
- package/bootstrap-icons/play-btn-fill.d.ts +0 -5
- package/bootstrap-icons/play-btn-fill.js +0 -12
- package/bootstrap-icons/play-btn.d.ts +0 -5
- package/bootstrap-icons/play-btn.js +0 -12
- package/bootstrap-icons/play-circle-fill.d.ts +0 -5
- package/bootstrap-icons/play-circle-fill.js +0 -12
- package/bootstrap-icons/play-circle.d.ts +0 -5
- package/bootstrap-icons/play-circle.js +0 -12
- package/bootstrap-icons/play-fill.d.ts +0 -5
- package/bootstrap-icons/play-fill.js +0 -12
- package/bootstrap-icons/play.d.ts +0 -5
- package/bootstrap-icons/play.js +0 -12
- package/bootstrap-icons/playstation.d.ts +0 -5
- package/bootstrap-icons/playstation.js +0 -12
- package/bootstrap-icons/plug-fill.d.ts +0 -5
- package/bootstrap-icons/plug-fill.js +0 -12
- package/bootstrap-icons/plug.d.ts +0 -5
- package/bootstrap-icons/plug.js +0 -12
- package/bootstrap-icons/plugin.d.ts +0 -5
- package/bootstrap-icons/plugin.js +0 -12
- package/bootstrap-icons/plus-circle-dotted.d.ts +0 -5
- package/bootstrap-icons/plus-circle-dotted.js +0 -12
- package/bootstrap-icons/plus-circle-fill.d.ts +0 -5
- package/bootstrap-icons/plus-circle-fill.js +0 -12
- package/bootstrap-icons/plus-circle.d.ts +0 -5
- package/bootstrap-icons/plus-circle.js +0 -12
- package/bootstrap-icons/plus-lg.d.ts +0 -5
- package/bootstrap-icons/plus-lg.js +0 -12
- package/bootstrap-icons/plus-slash-minus.d.ts +0 -5
- package/bootstrap-icons/plus-slash-minus.js +0 -12
- package/bootstrap-icons/plus-square-dotted.d.ts +0 -5
- package/bootstrap-icons/plus-square-dotted.js +0 -12
- package/bootstrap-icons/plus-square-fill.d.ts +0 -5
- package/bootstrap-icons/plus-square-fill.js +0 -12
- package/bootstrap-icons/plus-square.d.ts +0 -5
- package/bootstrap-icons/plus-square.js +0 -12
- package/bootstrap-icons/plus.d.ts +0 -5
- package/bootstrap-icons/plus.js +0 -12
- package/bootstrap-icons/postage-fill.d.ts +0 -5
- package/bootstrap-icons/postage-fill.js +0 -12
- package/bootstrap-icons/postage-heart-fill.d.ts +0 -5
- package/bootstrap-icons/postage-heart-fill.js +0 -12
- package/bootstrap-icons/postage-heart.d.ts +0 -5
- package/bootstrap-icons/postage-heart.js +0 -12
- package/bootstrap-icons/postage.d.ts +0 -5
- package/bootstrap-icons/postage.js +0 -12
- package/bootstrap-icons/postcard-fill.d.ts +0 -5
- package/bootstrap-icons/postcard-fill.js +0 -12
- package/bootstrap-icons/postcard-heart-fill.d.ts +0 -5
- package/bootstrap-icons/postcard-heart-fill.js +0 -12
- package/bootstrap-icons/postcard-heart.d.ts +0 -5
- package/bootstrap-icons/postcard-heart.js +0 -12
- package/bootstrap-icons/postcard.d.ts +0 -5
- package/bootstrap-icons/postcard.js +0 -12
- package/bootstrap-icons/power.d.ts +0 -5
- package/bootstrap-icons/power.js +0 -12
- package/bootstrap-icons/printer-fill.d.ts +0 -5
- package/bootstrap-icons/printer-fill.js +0 -12
- package/bootstrap-icons/printer.d.ts +0 -5
- package/bootstrap-icons/printer.js +0 -12
- package/bootstrap-icons/projector-fill.d.ts +0 -5
- package/bootstrap-icons/projector-fill.js +0 -12
- package/bootstrap-icons/projector.d.ts +0 -5
- package/bootstrap-icons/projector.js +0 -12
- package/bootstrap-icons/puzzle-fill.d.ts +0 -5
- package/bootstrap-icons/puzzle-fill.js +0 -12
- package/bootstrap-icons/puzzle.d.ts +0 -5
- package/bootstrap-icons/puzzle.js +0 -12
- package/bootstrap-icons/qr-code-scan.d.ts +0 -5
- package/bootstrap-icons/qr-code-scan.js +0 -12
- package/bootstrap-icons/qr-code.d.ts +0 -5
- package/bootstrap-icons/qr-code.js +0 -12
- package/bootstrap-icons/question-circle-fill.d.ts +0 -5
- package/bootstrap-icons/question-circle-fill.js +0 -12
- package/bootstrap-icons/question-circle.d.ts +0 -5
- package/bootstrap-icons/question-circle.js +0 -12
- package/bootstrap-icons/question-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/question-diamond-fill.js +0 -12
- package/bootstrap-icons/question-diamond.d.ts +0 -5
- package/bootstrap-icons/question-diamond.js +0 -12
- package/bootstrap-icons/question-lg.d.ts +0 -5
- package/bootstrap-icons/question-lg.js +0 -12
- package/bootstrap-icons/question-octagon-fill.d.ts +0 -5
- package/bootstrap-icons/question-octagon-fill.js +0 -12
- package/bootstrap-icons/question-octagon.d.ts +0 -5
- package/bootstrap-icons/question-octagon.js +0 -12
- package/bootstrap-icons/question-square-fill.d.ts +0 -5
- package/bootstrap-icons/question-square-fill.js +0 -12
- package/bootstrap-icons/question-square.d.ts +0 -5
- package/bootstrap-icons/question-square.js +0 -12
- package/bootstrap-icons/question.d.ts +0 -5
- package/bootstrap-icons/question.js +0 -12
- package/bootstrap-icons/quora.d.ts +0 -5
- package/bootstrap-icons/quora.js +0 -12
- package/bootstrap-icons/quote.d.ts +0 -5
- package/bootstrap-icons/quote.js +0 -12
- package/bootstrap-icons/radioactive.d.ts +0 -5
- package/bootstrap-icons/radioactive.js +0 -12
- package/bootstrap-icons/rainbow.d.ts +0 -5
- package/bootstrap-icons/rainbow.js +0 -12
- package/bootstrap-icons/receipt-cutoff.d.ts +0 -5
- package/bootstrap-icons/receipt-cutoff.js +0 -12
- package/bootstrap-icons/receipt.d.ts +0 -5
- package/bootstrap-icons/receipt.js +0 -12
- package/bootstrap-icons/reception-0.d.ts +0 -5
- package/bootstrap-icons/reception-0.js +0 -12
- package/bootstrap-icons/reception-1.d.ts +0 -5
- package/bootstrap-icons/reception-1.js +0 -12
- package/bootstrap-icons/reception-2.d.ts +0 -5
- package/bootstrap-icons/reception-2.js +0 -12
- package/bootstrap-icons/reception-3.d.ts +0 -5
- package/bootstrap-icons/reception-3.js +0 -12
- package/bootstrap-icons/reception-4.d.ts +0 -5
- package/bootstrap-icons/reception-4.js +0 -12
- package/bootstrap-icons/record-btn-fill.d.ts +0 -5
- package/bootstrap-icons/record-btn-fill.js +0 -12
- package/bootstrap-icons/record-btn.d.ts +0 -5
- package/bootstrap-icons/record-btn.js +0 -12
- package/bootstrap-icons/record-circle-fill.d.ts +0 -5
- package/bootstrap-icons/record-circle-fill.js +0 -12
- package/bootstrap-icons/record-circle.d.ts +0 -5
- package/bootstrap-icons/record-circle.js +0 -12
- package/bootstrap-icons/record-fill.d.ts +0 -5
- package/bootstrap-icons/record-fill.js +0 -12
- package/bootstrap-icons/record.d.ts +0 -5
- package/bootstrap-icons/record.js +0 -12
- package/bootstrap-icons/record2-fill.d.ts +0 -5
- package/bootstrap-icons/record2-fill.js +0 -12
- package/bootstrap-icons/record2.d.ts +0 -5
- package/bootstrap-icons/record2.js +0 -12
- package/bootstrap-icons/recycle.d.ts +0 -5
- package/bootstrap-icons/recycle.js +0 -12
- package/bootstrap-icons/reddit.d.ts +0 -5
- package/bootstrap-icons/reddit.js +0 -12
- package/bootstrap-icons/reply-all-fill.d.ts +0 -5
- package/bootstrap-icons/reply-all-fill.js +0 -12
- package/bootstrap-icons/reply-all.d.ts +0 -5
- package/bootstrap-icons/reply-all.js +0 -12
- package/bootstrap-icons/reply-fill.d.ts +0 -5
- package/bootstrap-icons/reply-fill.js +0 -12
- package/bootstrap-icons/reply.d.ts +0 -5
- package/bootstrap-icons/reply.js +0 -12
- package/bootstrap-icons/robot.d.ts +0 -5
- package/bootstrap-icons/robot.js +0 -12
- package/bootstrap-icons/router-fill.d.ts +0 -5
- package/bootstrap-icons/router-fill.js +0 -12
- package/bootstrap-icons/router.d.ts +0 -5
- package/bootstrap-icons/router.js +0 -12
- package/bootstrap-icons/rss-fill.d.ts +0 -5
- package/bootstrap-icons/rss-fill.js +0 -12
- package/bootstrap-icons/rss.d.ts +0 -5
- package/bootstrap-icons/rss.js +0 -12
- package/bootstrap-icons/rulers.d.ts +0 -5
- package/bootstrap-icons/rulers.js +0 -12
- package/bootstrap-icons/safe-fill.d.ts +0 -5
- package/bootstrap-icons/safe-fill.js +0 -12
- package/bootstrap-icons/safe.d.ts +0 -5
- package/bootstrap-icons/safe.js +0 -12
- package/bootstrap-icons/safe2-fill.d.ts +0 -5
- package/bootstrap-icons/safe2-fill.js +0 -12
- package/bootstrap-icons/safe2.d.ts +0 -5
- package/bootstrap-icons/safe2.js +0 -12
- package/bootstrap-icons/save-fill.d.ts +0 -5
- package/bootstrap-icons/save-fill.js +0 -12
- package/bootstrap-icons/save.d.ts +0 -5
- package/bootstrap-icons/save.js +0 -12
- package/bootstrap-icons/save2-fill.d.ts +0 -5
- package/bootstrap-icons/save2-fill.js +0 -12
- package/bootstrap-icons/save2.d.ts +0 -5
- package/bootstrap-icons/save2.js +0 -12
- package/bootstrap-icons/scissors.d.ts +0 -5
- package/bootstrap-icons/scissors.js +0 -12
- package/bootstrap-icons/screwdriver.d.ts +0 -5
- package/bootstrap-icons/screwdriver.js +0 -12
- package/bootstrap-icons/sd-card-fill.d.ts +0 -5
- package/bootstrap-icons/sd-card-fill.js +0 -12
- package/bootstrap-icons/sd-card.d.ts +0 -5
- package/bootstrap-icons/sd-card.js +0 -12
- package/bootstrap-icons/search-heart-fill.d.ts +0 -5
- package/bootstrap-icons/search-heart-fill.js +0 -12
- package/bootstrap-icons/search-heart.d.ts +0 -5
- package/bootstrap-icons/search-heart.js +0 -12
- package/bootstrap-icons/search.d.ts +0 -5
- package/bootstrap-icons/search.js +0 -12
- package/bootstrap-icons/segmented-nav.d.ts +0 -5
- package/bootstrap-icons/segmented-nav.js +0 -12
- package/bootstrap-icons/send-check-fill.d.ts +0 -5
- package/bootstrap-icons/send-check-fill.js +0 -12
- package/bootstrap-icons/send-check.d.ts +0 -5
- package/bootstrap-icons/send-check.js +0 -12
- package/bootstrap-icons/send-dash-fill.d.ts +0 -5
- package/bootstrap-icons/send-dash-fill.js +0 -12
- package/bootstrap-icons/send-dash.d.ts +0 -5
- package/bootstrap-icons/send-dash.js +0 -12
- package/bootstrap-icons/send-exclamation-fill.d.ts +0 -5
- package/bootstrap-icons/send-exclamation-fill.js +0 -12
- package/bootstrap-icons/send-exclamation.d.ts +0 -5
- package/bootstrap-icons/send-exclamation.js +0 -12
- package/bootstrap-icons/send-fill.d.ts +0 -5
- package/bootstrap-icons/send-fill.js +0 -12
- package/bootstrap-icons/send-plus-fill.d.ts +0 -5
- package/bootstrap-icons/send-plus-fill.js +0 -12
- package/bootstrap-icons/send-plus.d.ts +0 -5
- package/bootstrap-icons/send-plus.js +0 -12
- package/bootstrap-icons/send-slash-fill.d.ts +0 -5
- package/bootstrap-icons/send-slash-fill.js +0 -12
- package/bootstrap-icons/send-slash.d.ts +0 -5
- package/bootstrap-icons/send-slash.js +0 -12
- package/bootstrap-icons/send-x-fill.d.ts +0 -5
- package/bootstrap-icons/send-x-fill.js +0 -12
- package/bootstrap-icons/send-x.d.ts +0 -5
- package/bootstrap-icons/send-x.js +0 -12
- package/bootstrap-icons/send.d.ts +0 -5
- package/bootstrap-icons/send.js +0 -12
- package/bootstrap-icons/server.d.ts +0 -5
- package/bootstrap-icons/server.js +0 -12
- package/bootstrap-icons/share-fill.d.ts +0 -5
- package/bootstrap-icons/share-fill.js +0 -12
- package/bootstrap-icons/share.d.ts +0 -5
- package/bootstrap-icons/share.js +0 -12
- package/bootstrap-icons/shield-check.d.ts +0 -5
- package/bootstrap-icons/shield-check.js +0 -12
- package/bootstrap-icons/shield-exclamation.d.ts +0 -5
- package/bootstrap-icons/shield-exclamation.js +0 -12
- package/bootstrap-icons/shield-fill-check.d.ts +0 -5
- package/bootstrap-icons/shield-fill-check.js +0 -12
- package/bootstrap-icons/shield-fill-exclamation.d.ts +0 -5
- package/bootstrap-icons/shield-fill-exclamation.js +0 -12
- package/bootstrap-icons/shield-fill-minus.d.ts +0 -5
- package/bootstrap-icons/shield-fill-minus.js +0 -12
- package/bootstrap-icons/shield-fill-plus.d.ts +0 -5
- package/bootstrap-icons/shield-fill-plus.js +0 -12
- package/bootstrap-icons/shield-fill-x.d.ts +0 -5
- package/bootstrap-icons/shield-fill-x.js +0 -12
- package/bootstrap-icons/shield-fill.d.ts +0 -5
- package/bootstrap-icons/shield-fill.js +0 -12
- package/bootstrap-icons/shield-lock-fill.d.ts +0 -5
- package/bootstrap-icons/shield-lock-fill.js +0 -12
- package/bootstrap-icons/shield-lock.d.ts +0 -5
- package/bootstrap-icons/shield-lock.js +0 -12
- package/bootstrap-icons/shield-minus.d.ts +0 -5
- package/bootstrap-icons/shield-minus.js +0 -12
- package/bootstrap-icons/shield-plus.d.ts +0 -5
- package/bootstrap-icons/shield-plus.js +0 -12
- package/bootstrap-icons/shield-shaded.d.ts +0 -5
- package/bootstrap-icons/shield-shaded.js +0 -12
- package/bootstrap-icons/shield-slash-fill.d.ts +0 -5
- package/bootstrap-icons/shield-slash-fill.js +0 -12
- package/bootstrap-icons/shield-slash.d.ts +0 -5
- package/bootstrap-icons/shield-slash.js +0 -12
- package/bootstrap-icons/shield-x.d.ts +0 -5
- package/bootstrap-icons/shield-x.js +0 -12
- package/bootstrap-icons/shield.d.ts +0 -5
- package/bootstrap-icons/shield.js +0 -12
- package/bootstrap-icons/shift-fill.d.ts +0 -5
- package/bootstrap-icons/shift-fill.js +0 -12
- package/bootstrap-icons/shift.d.ts +0 -5
- package/bootstrap-icons/shift.js +0 -12
- package/bootstrap-icons/shop-window.d.ts +0 -5
- package/bootstrap-icons/shop-window.js +0 -12
- package/bootstrap-icons/shop.d.ts +0 -5
- package/bootstrap-icons/shop.js +0 -12
- package/bootstrap-icons/shuffle.d.ts +0 -5
- package/bootstrap-icons/shuffle.js +0 -12
- package/bootstrap-icons/signal.d.ts +0 -5
- package/bootstrap-icons/signal.js +0 -12
- package/bootstrap-icons/signpost-2-fill.d.ts +0 -5
- package/bootstrap-icons/signpost-2-fill.js +0 -12
- package/bootstrap-icons/signpost-2.d.ts +0 -5
- package/bootstrap-icons/signpost-2.js +0 -12
- package/bootstrap-icons/signpost-fill.d.ts +0 -5
- package/bootstrap-icons/signpost-fill.js +0 -12
- package/bootstrap-icons/signpost-split-fill.d.ts +0 -5
- package/bootstrap-icons/signpost-split-fill.js +0 -12
- package/bootstrap-icons/signpost-split.d.ts +0 -5
- package/bootstrap-icons/signpost-split.js +0 -12
- package/bootstrap-icons/signpost.d.ts +0 -5
- package/bootstrap-icons/signpost.js +0 -12
- package/bootstrap-icons/sim-fill.d.ts +0 -5
- package/bootstrap-icons/sim-fill.js +0 -12
- package/bootstrap-icons/sim.d.ts +0 -5
- package/bootstrap-icons/sim.js +0 -12
- package/bootstrap-icons/skip-backward-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-backward-btn-fill.js +0 -12
- package/bootstrap-icons/skip-backward-btn.d.ts +0 -5
- package/bootstrap-icons/skip-backward-btn.js +0 -12
- package/bootstrap-icons/skip-backward-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-backward-circle-fill.js +0 -12
- package/bootstrap-icons/skip-backward-circle.d.ts +0 -5
- package/bootstrap-icons/skip-backward-circle.js +0 -12
- package/bootstrap-icons/skip-backward-fill.d.ts +0 -5
- package/bootstrap-icons/skip-backward-fill.js +0 -12
- package/bootstrap-icons/skip-backward.d.ts +0 -5
- package/bootstrap-icons/skip-backward.js +0 -12
- package/bootstrap-icons/skip-end-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-end-btn-fill.js +0 -12
- package/bootstrap-icons/skip-end-btn.d.ts +0 -5
- package/bootstrap-icons/skip-end-btn.js +0 -12
- package/bootstrap-icons/skip-end-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-end-circle-fill.js +0 -12
- package/bootstrap-icons/skip-end-circle.d.ts +0 -5
- package/bootstrap-icons/skip-end-circle.js +0 -12
- package/bootstrap-icons/skip-end-fill.d.ts +0 -5
- package/bootstrap-icons/skip-end-fill.js +0 -12
- package/bootstrap-icons/skip-end.d.ts +0 -5
- package/bootstrap-icons/skip-end.js +0 -12
- package/bootstrap-icons/skip-forward-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-forward-btn-fill.js +0 -12
- package/bootstrap-icons/skip-forward-btn.d.ts +0 -5
- package/bootstrap-icons/skip-forward-btn.js +0 -12
- package/bootstrap-icons/skip-forward-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-forward-circle-fill.js +0 -12
- package/bootstrap-icons/skip-forward-circle.d.ts +0 -5
- package/bootstrap-icons/skip-forward-circle.js +0 -12
- package/bootstrap-icons/skip-forward-fill.d.ts +0 -5
- package/bootstrap-icons/skip-forward-fill.js +0 -12
- package/bootstrap-icons/skip-forward.d.ts +0 -5
- package/bootstrap-icons/skip-forward.js +0 -12
- package/bootstrap-icons/skip-start-btn-fill.d.ts +0 -5
- package/bootstrap-icons/skip-start-btn-fill.js +0 -12
- package/bootstrap-icons/skip-start-btn.d.ts +0 -5
- package/bootstrap-icons/skip-start-btn.js +0 -12
- package/bootstrap-icons/skip-start-circle-fill.d.ts +0 -5
- package/bootstrap-icons/skip-start-circle-fill.js +0 -12
- package/bootstrap-icons/skip-start-circle.d.ts +0 -5
- package/bootstrap-icons/skip-start-circle.js +0 -12
- package/bootstrap-icons/skip-start-fill.d.ts +0 -5
- package/bootstrap-icons/skip-start-fill.js +0 -12
- package/bootstrap-icons/skip-start.d.ts +0 -5
- package/bootstrap-icons/skip-start.js +0 -12
- package/bootstrap-icons/skype.d.ts +0 -5
- package/bootstrap-icons/skype.js +0 -12
- package/bootstrap-icons/slack.d.ts +0 -5
- package/bootstrap-icons/slack.js +0 -12
- package/bootstrap-icons/slash-circle-fill.d.ts +0 -5
- package/bootstrap-icons/slash-circle-fill.js +0 -12
- package/bootstrap-icons/slash-circle.d.ts +0 -5
- package/bootstrap-icons/slash-circle.js +0 -12
- package/bootstrap-icons/slash-lg.d.ts +0 -5
- package/bootstrap-icons/slash-lg.js +0 -12
- package/bootstrap-icons/slash-square-fill.d.ts +0 -5
- package/bootstrap-icons/slash-square-fill.js +0 -12
- package/bootstrap-icons/slash-square.d.ts +0 -5
- package/bootstrap-icons/slash-square.js +0 -12
- package/bootstrap-icons/slash.d.ts +0 -5
- package/bootstrap-icons/slash.js +0 -12
- package/bootstrap-icons/sliders.d.ts +0 -5
- package/bootstrap-icons/sliders.js +0 -12
- package/bootstrap-icons/sliders2-vertical.d.ts +0 -5
- package/bootstrap-icons/sliders2-vertical.js +0 -12
- package/bootstrap-icons/sliders2.d.ts +0 -5
- package/bootstrap-icons/sliders2.js +0 -12
- package/bootstrap-icons/smartwatch.d.ts +0 -5
- package/bootstrap-icons/smartwatch.js +0 -12
- package/bootstrap-icons/snapchat.d.ts +0 -5
- package/bootstrap-icons/snapchat.js +0 -12
- package/bootstrap-icons/snow.d.ts +0 -5
- package/bootstrap-icons/snow.js +0 -12
- package/bootstrap-icons/snow2.d.ts +0 -5
- package/bootstrap-icons/snow2.js +0 -12
- package/bootstrap-icons/snow3.d.ts +0 -5
- package/bootstrap-icons/snow3.js +0 -12
- package/bootstrap-icons/sort-alpha-down-alt.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-down-alt.js +0 -12
- package/bootstrap-icons/sort-alpha-down.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-down.js +0 -12
- package/bootstrap-icons/sort-alpha-up-alt.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-up-alt.js +0 -12
- package/bootstrap-icons/sort-alpha-up.d.ts +0 -5
- package/bootstrap-icons/sort-alpha-up.js +0 -12
- package/bootstrap-icons/sort-down-alt.d.ts +0 -5
- package/bootstrap-icons/sort-down-alt.js +0 -12
- package/bootstrap-icons/sort-down.d.ts +0 -5
- package/bootstrap-icons/sort-down.js +0 -12
- package/bootstrap-icons/sort-numeric-down-alt.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-down-alt.js +0 -12
- package/bootstrap-icons/sort-numeric-down.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-down.js +0 -12
- package/bootstrap-icons/sort-numeric-up-alt.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-up-alt.js +0 -12
- package/bootstrap-icons/sort-numeric-up.d.ts +0 -5
- package/bootstrap-icons/sort-numeric-up.js +0 -12
- package/bootstrap-icons/sort-up-alt.d.ts +0 -5
- package/bootstrap-icons/sort-up-alt.js +0 -12
- package/bootstrap-icons/sort-up.d.ts +0 -5
- package/bootstrap-icons/sort-up.js +0 -12
- package/bootstrap-icons/soundwave.d.ts +0 -5
- package/bootstrap-icons/soundwave.js +0 -12
- package/bootstrap-icons/speaker-fill.d.ts +0 -5
- package/bootstrap-icons/speaker-fill.js +0 -12
- package/bootstrap-icons/speaker.d.ts +0 -5
- package/bootstrap-icons/speaker.js +0 -12
- package/bootstrap-icons/speedometer.d.ts +0 -5
- package/bootstrap-icons/speedometer.js +0 -12
- package/bootstrap-icons/speedometer2.d.ts +0 -5
- package/bootstrap-icons/speedometer2.js +0 -12
- package/bootstrap-icons/spellcheck.d.ts +0 -5
- package/bootstrap-icons/spellcheck.js +0 -12
- package/bootstrap-icons/spotify.d.ts +0 -5
- package/bootstrap-icons/spotify.js +0 -12
- package/bootstrap-icons/square-fill.d.ts +0 -5
- package/bootstrap-icons/square-fill.js +0 -12
- package/bootstrap-icons/square-half.d.ts +0 -5
- package/bootstrap-icons/square-half.js +0 -12
- package/bootstrap-icons/square.d.ts +0 -5
- package/bootstrap-icons/square.js +0 -12
- package/bootstrap-icons/stack-overflow.d.ts +0 -5
- package/bootstrap-icons/stack-overflow.js +0 -12
- package/bootstrap-icons/stack.d.ts +0 -5
- package/bootstrap-icons/stack.js +0 -12
- package/bootstrap-icons/star-fill.d.ts +0 -5
- package/bootstrap-icons/star-fill.js +0 -12
- package/bootstrap-icons/star-half.d.ts +0 -5
- package/bootstrap-icons/star-half.js +0 -12
- package/bootstrap-icons/star.d.ts +0 -5
- package/bootstrap-icons/star.js +0 -12
- package/bootstrap-icons/stars.d.ts +0 -5
- package/bootstrap-icons/stars.js +0 -12
- package/bootstrap-icons/steam.d.ts +0 -5
- package/bootstrap-icons/steam.js +0 -12
- package/bootstrap-icons/stickies-fill.d.ts +0 -5
- package/bootstrap-icons/stickies-fill.js +0 -12
- package/bootstrap-icons/stickies.d.ts +0 -5
- package/bootstrap-icons/stickies.js +0 -12
- package/bootstrap-icons/sticky-fill.d.ts +0 -5
- package/bootstrap-icons/sticky-fill.js +0 -12
- package/bootstrap-icons/sticky.d.ts +0 -5
- package/bootstrap-icons/sticky.js +0 -12
- package/bootstrap-icons/stop-btn-fill.d.ts +0 -5
- package/bootstrap-icons/stop-btn-fill.js +0 -12
- package/bootstrap-icons/stop-btn.d.ts +0 -5
- package/bootstrap-icons/stop-btn.js +0 -12
- package/bootstrap-icons/stop-circle-fill.d.ts +0 -5
- package/bootstrap-icons/stop-circle-fill.js +0 -12
- package/bootstrap-icons/stop-circle.d.ts +0 -5
- package/bootstrap-icons/stop-circle.js +0 -12
- package/bootstrap-icons/stop-fill.d.ts +0 -5
- package/bootstrap-icons/stop-fill.js +0 -12
- package/bootstrap-icons/stop.d.ts +0 -5
- package/bootstrap-icons/stop.js +0 -12
- package/bootstrap-icons/stoplights-fill.d.ts +0 -5
- package/bootstrap-icons/stoplights-fill.js +0 -12
- package/bootstrap-icons/stoplights.d.ts +0 -5
- package/bootstrap-icons/stoplights.js +0 -12
- package/bootstrap-icons/stopwatch-fill.d.ts +0 -5
- package/bootstrap-icons/stopwatch-fill.js +0 -12
- package/bootstrap-icons/stopwatch.d.ts +0 -5
- package/bootstrap-icons/stopwatch.js +0 -12
- package/bootstrap-icons/strava.d.ts +0 -5
- package/bootstrap-icons/strava.js +0 -12
- package/bootstrap-icons/subtract.d.ts +0 -5
- package/bootstrap-icons/subtract.js +0 -12
- package/bootstrap-icons/suit-club-fill.d.ts +0 -5
- package/bootstrap-icons/suit-club-fill.js +0 -12
- package/bootstrap-icons/suit-club.d.ts +0 -5
- package/bootstrap-icons/suit-club.js +0 -12
- package/bootstrap-icons/suit-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/suit-diamond-fill.js +0 -12
- package/bootstrap-icons/suit-diamond.d.ts +0 -5
- package/bootstrap-icons/suit-diamond.js +0 -12
- package/bootstrap-icons/suit-heart-fill.d.ts +0 -5
- package/bootstrap-icons/suit-heart-fill.js +0 -12
- package/bootstrap-icons/suit-heart.d.ts +0 -5
- package/bootstrap-icons/suit-heart.js +0 -12
- package/bootstrap-icons/suit-spade-fill.d.ts +0 -5
- package/bootstrap-icons/suit-spade-fill.js +0 -12
- package/bootstrap-icons/suit-spade.d.ts +0 -5
- package/bootstrap-icons/suit-spade.js +0 -12
- package/bootstrap-icons/sun-fill.d.ts +0 -5
- package/bootstrap-icons/sun-fill.js +0 -12
- package/bootstrap-icons/sun.d.ts +0 -5
- package/bootstrap-icons/sun.js +0 -12
- package/bootstrap-icons/sunglasses.d.ts +0 -5
- package/bootstrap-icons/sunglasses.js +0 -12
- package/bootstrap-icons/sunrise-fill.d.ts +0 -5
- package/bootstrap-icons/sunrise-fill.js +0 -12
- package/bootstrap-icons/sunrise.d.ts +0 -5
- package/bootstrap-icons/sunrise.js +0 -12
- package/bootstrap-icons/sunset-fill.d.ts +0 -5
- package/bootstrap-icons/sunset-fill.js +0 -12
- package/bootstrap-icons/sunset.d.ts +0 -5
- package/bootstrap-icons/sunset.js +0 -12
- package/bootstrap-icons/symmetry-horizontal.d.ts +0 -5
- package/bootstrap-icons/symmetry-horizontal.js +0 -12
- package/bootstrap-icons/symmetry-vertical.d.ts +0 -5
- package/bootstrap-icons/symmetry-vertical.js +0 -12
- package/bootstrap-icons/table.d.ts +0 -5
- package/bootstrap-icons/table.js +0 -12
- package/bootstrap-icons/tablet-fill.d.ts +0 -5
- package/bootstrap-icons/tablet-fill.js +0 -12
- package/bootstrap-icons/tablet-landscape-fill.d.ts +0 -5
- package/bootstrap-icons/tablet-landscape-fill.js +0 -12
- package/bootstrap-icons/tablet-landscape.d.ts +0 -5
- package/bootstrap-icons/tablet-landscape.js +0 -12
- package/bootstrap-icons/tablet.d.ts +0 -5
- package/bootstrap-icons/tablet.js +0 -12
- package/bootstrap-icons/tag-fill.d.ts +0 -5
- package/bootstrap-icons/tag-fill.js +0 -12
- package/bootstrap-icons/tag.d.ts +0 -5
- package/bootstrap-icons/tag.js +0 -12
- package/bootstrap-icons/tags-fill.d.ts +0 -5
- package/bootstrap-icons/tags-fill.js +0 -12
- package/bootstrap-icons/tags.d.ts +0 -5
- package/bootstrap-icons/tags.js +0 -12
- package/bootstrap-icons/telegram.d.ts +0 -5
- package/bootstrap-icons/telegram.js +0 -12
- package/bootstrap-icons/telephone-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-fill.js +0 -12
- package/bootstrap-icons/telephone-forward-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-forward-fill.js +0 -12
- package/bootstrap-icons/telephone-forward.d.ts +0 -5
- package/bootstrap-icons/telephone-forward.js +0 -12
- package/bootstrap-icons/telephone-inbound-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-inbound-fill.js +0 -12
- package/bootstrap-icons/telephone-inbound.d.ts +0 -5
- package/bootstrap-icons/telephone-inbound.js +0 -12
- package/bootstrap-icons/telephone-minus-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-minus-fill.js +0 -12
- package/bootstrap-icons/telephone-minus.d.ts +0 -5
- package/bootstrap-icons/telephone-minus.js +0 -12
- package/bootstrap-icons/telephone-outbound-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-outbound-fill.js +0 -12
- package/bootstrap-icons/telephone-outbound.d.ts +0 -5
- package/bootstrap-icons/telephone-outbound.js +0 -12
- package/bootstrap-icons/telephone-plus-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-plus-fill.js +0 -12
- package/bootstrap-icons/telephone-plus.d.ts +0 -5
- package/bootstrap-icons/telephone-plus.js +0 -12
- package/bootstrap-icons/telephone-x-fill.d.ts +0 -5
- package/bootstrap-icons/telephone-x-fill.js +0 -12
- package/bootstrap-icons/telephone-x.d.ts +0 -5
- package/bootstrap-icons/telephone-x.js +0 -12
- package/bootstrap-icons/telephone.d.ts +0 -5
- package/bootstrap-icons/telephone.js +0 -12
- package/bootstrap-icons/terminal-dash.d.ts +0 -5
- package/bootstrap-icons/terminal-dash.js +0 -12
- package/bootstrap-icons/terminal-fill.d.ts +0 -5
- package/bootstrap-icons/terminal-fill.js +0 -12
- package/bootstrap-icons/terminal-plus.d.ts +0 -5
- package/bootstrap-icons/terminal-plus.js +0 -12
- package/bootstrap-icons/terminal-split.d.ts +0 -5
- package/bootstrap-icons/terminal-split.js +0 -12
- package/bootstrap-icons/terminal-x.d.ts +0 -5
- package/bootstrap-icons/terminal-x.js +0 -12
- package/bootstrap-icons/terminal.d.ts +0 -5
- package/bootstrap-icons/terminal.js +0 -12
- package/bootstrap-icons/text-center.d.ts +0 -5
- package/bootstrap-icons/text-center.js +0 -12
- package/bootstrap-icons/text-indent-left.d.ts +0 -5
- package/bootstrap-icons/text-indent-left.js +0 -12
- package/bootstrap-icons/text-indent-right.d.ts +0 -5
- package/bootstrap-icons/text-indent-right.js +0 -12
- package/bootstrap-icons/text-left.d.ts +0 -5
- package/bootstrap-icons/text-left.js +0 -12
- package/bootstrap-icons/text-paragraph.d.ts +0 -5
- package/bootstrap-icons/text-paragraph.js +0 -12
- package/bootstrap-icons/text-right.d.ts +0 -5
- package/bootstrap-icons/text-right.js +0 -12
- package/bootstrap-icons/textarea-resize.d.ts +0 -5
- package/bootstrap-icons/textarea-resize.js +0 -12
- package/bootstrap-icons/textarea-t.d.ts +0 -5
- package/bootstrap-icons/textarea-t.js +0 -12
- package/bootstrap-icons/textarea.d.ts +0 -5
- package/bootstrap-icons/textarea.js +0 -12
- package/bootstrap-icons/thermometer-half.d.ts +0 -5
- package/bootstrap-icons/thermometer-half.js +0 -12
- package/bootstrap-icons/thermometer-high.d.ts +0 -5
- package/bootstrap-icons/thermometer-high.js +0 -12
- package/bootstrap-icons/thermometer-low.d.ts +0 -5
- package/bootstrap-icons/thermometer-low.js +0 -12
- package/bootstrap-icons/thermometer-snow.d.ts +0 -5
- package/bootstrap-icons/thermometer-snow.js +0 -12
- package/bootstrap-icons/thermometer-sun.d.ts +0 -5
- package/bootstrap-icons/thermometer-sun.js +0 -12
- package/bootstrap-icons/thermometer.d.ts +0 -5
- package/bootstrap-icons/thermometer.js +0 -12
- package/bootstrap-icons/three-dots-vertical.d.ts +0 -5
- package/bootstrap-icons/three-dots-vertical.js +0 -12
- package/bootstrap-icons/three-dots.d.ts +0 -5
- package/bootstrap-icons/three-dots.js +0 -12
- package/bootstrap-icons/thunderbolt-fill.d.ts +0 -5
- package/bootstrap-icons/thunderbolt-fill.js +0 -12
- package/bootstrap-icons/thunderbolt.d.ts +0 -5
- package/bootstrap-icons/thunderbolt.js +0 -12
- package/bootstrap-icons/ticket-detailed-fill.d.ts +0 -5
- package/bootstrap-icons/ticket-detailed-fill.js +0 -12
- package/bootstrap-icons/ticket-detailed.d.ts +0 -5
- package/bootstrap-icons/ticket-detailed.js +0 -12
- package/bootstrap-icons/ticket-fill.d.ts +0 -5
- package/bootstrap-icons/ticket-fill.js +0 -12
- package/bootstrap-icons/ticket-perforated-fill.d.ts +0 -5
- package/bootstrap-icons/ticket-perforated-fill.js +0 -12
- package/bootstrap-icons/ticket-perforated.d.ts +0 -5
- package/bootstrap-icons/ticket-perforated.js +0 -12
- package/bootstrap-icons/ticket.d.ts +0 -5
- package/bootstrap-icons/ticket.js +0 -12
- package/bootstrap-icons/tiktok.d.ts +0 -5
- package/bootstrap-icons/tiktok.js +0 -12
- package/bootstrap-icons/toggle-off.d.ts +0 -5
- package/bootstrap-icons/toggle-off.js +0 -12
- package/bootstrap-icons/toggle-on.d.ts +0 -5
- package/bootstrap-icons/toggle-on.js +0 -12
- package/bootstrap-icons/toggle2-off.d.ts +0 -5
- package/bootstrap-icons/toggle2-off.js +0 -12
- package/bootstrap-icons/toggle2-on.d.ts +0 -5
- package/bootstrap-icons/toggle2-on.js +0 -12
- package/bootstrap-icons/toggles.d.ts +0 -5
- package/bootstrap-icons/toggles.js +0 -12
- package/bootstrap-icons/toggles2.d.ts +0 -5
- package/bootstrap-icons/toggles2.js +0 -12
- package/bootstrap-icons/tools.d.ts +0 -5
- package/bootstrap-icons/tools.js +0 -12
- package/bootstrap-icons/tornado.d.ts +0 -5
- package/bootstrap-icons/tornado.js +0 -12
- package/bootstrap-icons/translate.d.ts +0 -5
- package/bootstrap-icons/translate.js +0 -12
- package/bootstrap-icons/trash-fill.d.ts +0 -5
- package/bootstrap-icons/trash-fill.js +0 -12
- package/bootstrap-icons/trash.d.ts +0 -5
- package/bootstrap-icons/trash.js +0 -12
- package/bootstrap-icons/trash2-fill.d.ts +0 -5
- package/bootstrap-icons/trash2-fill.js +0 -12
- package/bootstrap-icons/trash2.d.ts +0 -5
- package/bootstrap-icons/trash2.js +0 -12
- package/bootstrap-icons/trash3-fill.d.ts +0 -5
- package/bootstrap-icons/trash3-fill.js +0 -12
- package/bootstrap-icons/trash3.d.ts +0 -5
- package/bootstrap-icons/trash3.js +0 -12
- package/bootstrap-icons/tree-fill.d.ts +0 -5
- package/bootstrap-icons/tree-fill.js +0 -12
- package/bootstrap-icons/tree.d.ts +0 -5
- package/bootstrap-icons/tree.js +0 -12
- package/bootstrap-icons/triangle-fill.d.ts +0 -5
- package/bootstrap-icons/triangle-fill.js +0 -12
- package/bootstrap-icons/triangle-half.d.ts +0 -5
- package/bootstrap-icons/triangle-half.js +0 -12
- package/bootstrap-icons/triangle.d.ts +0 -5
- package/bootstrap-icons/triangle.js +0 -12
- package/bootstrap-icons/trophy-fill.d.ts +0 -5
- package/bootstrap-icons/trophy-fill.js +0 -12
- package/bootstrap-icons/trophy.d.ts +0 -5
- package/bootstrap-icons/trophy.js +0 -12
- package/bootstrap-icons/tropical-storm.d.ts +0 -5
- package/bootstrap-icons/tropical-storm.js +0 -12
- package/bootstrap-icons/truck-flatbed.d.ts +0 -5
- package/bootstrap-icons/truck-flatbed.js +0 -12
- package/bootstrap-icons/truck.d.ts +0 -5
- package/bootstrap-icons/truck.js +0 -12
- package/bootstrap-icons/tsunami.d.ts +0 -5
- package/bootstrap-icons/tsunami.js +0 -12
- package/bootstrap-icons/tv-fill.d.ts +0 -5
- package/bootstrap-icons/tv-fill.js +0 -12
- package/bootstrap-icons/tv.d.ts +0 -5
- package/bootstrap-icons/tv.js +0 -12
- package/bootstrap-icons/twitch.d.ts +0 -5
- package/bootstrap-icons/twitch.js +0 -12
- package/bootstrap-icons/twitter.d.ts +0 -5
- package/bootstrap-icons/twitter.js +0 -12
- package/bootstrap-icons/type-bold.d.ts +0 -5
- package/bootstrap-icons/type-bold.js +0 -12
- package/bootstrap-icons/type-h1.d.ts +0 -5
- package/bootstrap-icons/type-h1.js +0 -12
- package/bootstrap-icons/type-h2.d.ts +0 -5
- package/bootstrap-icons/type-h2.js +0 -12
- package/bootstrap-icons/type-h3.d.ts +0 -5
- package/bootstrap-icons/type-h3.js +0 -12
- package/bootstrap-icons/type-italic.d.ts +0 -5
- package/bootstrap-icons/type-italic.js +0 -12
- package/bootstrap-icons/type-strikethrough.d.ts +0 -5
- package/bootstrap-icons/type-strikethrough.js +0 -12
- package/bootstrap-icons/type-underline.d.ts +0 -5
- package/bootstrap-icons/type-underline.js +0 -12
- package/bootstrap-icons/type.d.ts +0 -5
- package/bootstrap-icons/type.js +0 -12
- package/bootstrap-icons/ui-checks-grid.d.ts +0 -5
- package/bootstrap-icons/ui-checks-grid.js +0 -12
- package/bootstrap-icons/ui-checks.d.ts +0 -5
- package/bootstrap-icons/ui-checks.js +0 -12
- package/bootstrap-icons/ui-radios-grid.d.ts +0 -5
- package/bootstrap-icons/ui-radios-grid.js +0 -12
- package/bootstrap-icons/ui-radios.d.ts +0 -5
- package/bootstrap-icons/ui-radios.js +0 -12
- package/bootstrap-icons/umbrella-fill.d.ts +0 -5
- package/bootstrap-icons/umbrella-fill.js +0 -12
- package/bootstrap-icons/umbrella.d.ts +0 -5
- package/bootstrap-icons/umbrella.js +0 -12
- package/bootstrap-icons/union.d.ts +0 -5
- package/bootstrap-icons/union.js +0 -12
- package/bootstrap-icons/unlock-fill.d.ts +0 -5
- package/bootstrap-icons/unlock-fill.js +0 -12
- package/bootstrap-icons/unlock.d.ts +0 -5
- package/bootstrap-icons/unlock.js +0 -12
- package/bootstrap-icons/upc-scan.d.ts +0 -5
- package/bootstrap-icons/upc-scan.js +0 -12
- package/bootstrap-icons/upc.d.ts +0 -5
- package/bootstrap-icons/upc.js +0 -12
- package/bootstrap-icons/upload.d.ts +0 -5
- package/bootstrap-icons/upload.js +0 -12
- package/bootstrap-icons/usb-c-fill.d.ts +0 -5
- package/bootstrap-icons/usb-c-fill.js +0 -12
- package/bootstrap-icons/usb-c.d.ts +0 -5
- package/bootstrap-icons/usb-c.js +0 -12
- package/bootstrap-icons/usb-drive-fill.d.ts +0 -5
- package/bootstrap-icons/usb-drive-fill.js +0 -12
- package/bootstrap-icons/usb-drive.d.ts +0 -5
- package/bootstrap-icons/usb-drive.js +0 -12
- package/bootstrap-icons/usb-fill.d.ts +0 -5
- package/bootstrap-icons/usb-fill.js +0 -12
- package/bootstrap-icons/usb-micro-fill.d.ts +0 -5
- package/bootstrap-icons/usb-micro-fill.js +0 -12
- package/bootstrap-icons/usb-micro.d.ts +0 -5
- package/bootstrap-icons/usb-micro.js +0 -12
- package/bootstrap-icons/usb-mini-fill.d.ts +0 -5
- package/bootstrap-icons/usb-mini-fill.js +0 -12
- package/bootstrap-icons/usb-mini.d.ts +0 -5
- package/bootstrap-icons/usb-mini.js +0 -12
- package/bootstrap-icons/usb-plug-fill.d.ts +0 -5
- package/bootstrap-icons/usb-plug-fill.js +0 -12
- package/bootstrap-icons/usb-plug.d.ts +0 -5
- package/bootstrap-icons/usb-plug.js +0 -12
- package/bootstrap-icons/usb-symbol.d.ts +0 -5
- package/bootstrap-icons/usb-symbol.js +0 -12
- package/bootstrap-icons/usb.d.ts +0 -5
- package/bootstrap-icons/usb.js +0 -12
- package/bootstrap-icons/valentine.d.ts +0 -5
- package/bootstrap-icons/valentine.js +0 -12
- package/bootstrap-icons/valentine2.d.ts +0 -5
- package/bootstrap-icons/valentine2.js +0 -12
- package/bootstrap-icons/vector-pen.d.ts +0 -5
- package/bootstrap-icons/vector-pen.js +0 -12
- package/bootstrap-icons/view-list.d.ts +0 -5
- package/bootstrap-icons/view-list.js +0 -12
- package/bootstrap-icons/view-stacked.d.ts +0 -5
- package/bootstrap-icons/view-stacked.js +0 -12
- package/bootstrap-icons/vimeo.d.ts +0 -5
- package/bootstrap-icons/vimeo.js +0 -12
- package/bootstrap-icons/vinyl-fill.d.ts +0 -5
- package/bootstrap-icons/vinyl-fill.js +0 -12
- package/bootstrap-icons/vinyl.d.ts +0 -5
- package/bootstrap-icons/vinyl.js +0 -12
- package/bootstrap-icons/voicemail.d.ts +0 -5
- package/bootstrap-icons/voicemail.js +0 -12
- package/bootstrap-icons/volume-down-fill.d.ts +0 -5
- package/bootstrap-icons/volume-down-fill.js +0 -12
- package/bootstrap-icons/volume-down.d.ts +0 -5
- package/bootstrap-icons/volume-down.js +0 -12
- package/bootstrap-icons/volume-mute-fill.d.ts +0 -5
- package/bootstrap-icons/volume-mute-fill.js +0 -12
- package/bootstrap-icons/volume-mute.d.ts +0 -5
- package/bootstrap-icons/volume-mute.js +0 -12
- package/bootstrap-icons/volume-off-fill.d.ts +0 -5
- package/bootstrap-icons/volume-off-fill.js +0 -12
- package/bootstrap-icons/volume-off.d.ts +0 -5
- package/bootstrap-icons/volume-off.js +0 -12
- package/bootstrap-icons/volume-up-fill.d.ts +0 -5
- package/bootstrap-icons/volume-up-fill.js +0 -12
- package/bootstrap-icons/volume-up.d.ts +0 -5
- package/bootstrap-icons/volume-up.js +0 -12
- package/bootstrap-icons/vr.d.ts +0 -5
- package/bootstrap-icons/vr.js +0 -12
- package/bootstrap-icons/wallet-fill.d.ts +0 -5
- package/bootstrap-icons/wallet-fill.js +0 -12
- package/bootstrap-icons/wallet.d.ts +0 -5
- package/bootstrap-icons/wallet.js +0 -12
- package/bootstrap-icons/wallet2.d.ts +0 -5
- package/bootstrap-icons/wallet2.js +0 -12
- package/bootstrap-icons/watch.d.ts +0 -5
- package/bootstrap-icons/watch.js +0 -12
- package/bootstrap-icons/water.d.ts +0 -5
- package/bootstrap-icons/water.js +0 -12
- package/bootstrap-icons/webcam-fill.d.ts +0 -5
- package/bootstrap-icons/webcam-fill.js +0 -12
- package/bootstrap-icons/webcam.d.ts +0 -5
- package/bootstrap-icons/webcam.js +0 -12
- package/bootstrap-icons/whatsapp.d.ts +0 -5
- package/bootstrap-icons/whatsapp.js +0 -12
- package/bootstrap-icons/wifi-1.d.ts +0 -5
- package/bootstrap-icons/wifi-1.js +0 -12
- package/bootstrap-icons/wifi-2.d.ts +0 -5
- package/bootstrap-icons/wifi-2.js +0 -12
- package/bootstrap-icons/wifi-off.d.ts +0 -5
- package/bootstrap-icons/wifi-off.js +0 -12
- package/bootstrap-icons/wifi.d.ts +0 -5
- package/bootstrap-icons/wifi.js +0 -12
- package/bootstrap-icons/wind.d.ts +0 -5
- package/bootstrap-icons/wind.js +0 -12
- package/bootstrap-icons/window-dash.d.ts +0 -5
- package/bootstrap-icons/window-dash.js +0 -12
- package/bootstrap-icons/window-desktop.d.ts +0 -5
- package/bootstrap-icons/window-desktop.js +0 -12
- package/bootstrap-icons/window-dock.d.ts +0 -5
- package/bootstrap-icons/window-dock.js +0 -12
- package/bootstrap-icons/window-fullscreen.d.ts +0 -5
- package/bootstrap-icons/window-fullscreen.js +0 -12
- package/bootstrap-icons/window-plus.d.ts +0 -5
- package/bootstrap-icons/window-plus.js +0 -12
- package/bootstrap-icons/window-sidebar.d.ts +0 -5
- package/bootstrap-icons/window-sidebar.js +0 -12
- package/bootstrap-icons/window-split.d.ts +0 -5
- package/bootstrap-icons/window-split.js +0 -12
- package/bootstrap-icons/window-stack.d.ts +0 -5
- package/bootstrap-icons/window-stack.js +0 -12
- package/bootstrap-icons/window-x.d.ts +0 -5
- package/bootstrap-icons/window-x.js +0 -12
- package/bootstrap-icons/window.d.ts +0 -5
- package/bootstrap-icons/window.js +0 -12
- package/bootstrap-icons/windows.d.ts +0 -5
- package/bootstrap-icons/windows.js +0 -12
- package/bootstrap-icons/wordpress.d.ts +0 -5
- package/bootstrap-icons/wordpress.js +0 -12
- package/bootstrap-icons/wrench-adjustable-circle-fill.d.ts +0 -5
- package/bootstrap-icons/wrench-adjustable-circle-fill.js +0 -12
- package/bootstrap-icons/wrench-adjustable-circle.d.ts +0 -5
- package/bootstrap-icons/wrench-adjustable-circle.js +0 -12
- package/bootstrap-icons/wrench-adjustable.d.ts +0 -5
- package/bootstrap-icons/wrench-adjustable.js +0 -12
- package/bootstrap-icons/wrench.d.ts +0 -5
- package/bootstrap-icons/wrench.js +0 -12
- package/bootstrap-icons/x-circle-fill.d.ts +0 -5
- package/bootstrap-icons/x-circle-fill.js +0 -12
- package/bootstrap-icons/x-circle.d.ts +0 -5
- package/bootstrap-icons/x-circle.js +0 -12
- package/bootstrap-icons/x-diamond-fill.d.ts +0 -5
- package/bootstrap-icons/x-diamond-fill.js +0 -12
- package/bootstrap-icons/x-diamond.d.ts +0 -5
- package/bootstrap-icons/x-diamond.js +0 -12
- package/bootstrap-icons/x-lg.d.ts +0 -5
- package/bootstrap-icons/x-lg.js +0 -12
- package/bootstrap-icons/x-octagon-fill.d.ts +0 -5
- package/bootstrap-icons/x-octagon-fill.js +0 -12
- package/bootstrap-icons/x-octagon.d.ts +0 -5
- package/bootstrap-icons/x-octagon.js +0 -12
- package/bootstrap-icons/x-square-fill.d.ts +0 -5
- package/bootstrap-icons/x-square-fill.js +0 -12
- package/bootstrap-icons/x-square.d.ts +0 -5
- package/bootstrap-icons/x-square.js +0 -12
- package/bootstrap-icons/x.d.ts +0 -5
- package/bootstrap-icons/x.js +0 -12
- package/bootstrap-icons/xbox.d.ts +0 -5
- package/bootstrap-icons/xbox.js +0 -12
- package/bootstrap-icons/yin-yang.d.ts +0 -5
- package/bootstrap-icons/yin-yang.js +0 -12
- package/bootstrap-icons/youtube.d.ts +0 -5
- package/bootstrap-icons/youtube.js +0 -12
- package/bootstrap-icons/zoom-in.d.ts +0 -5
- package/bootstrap-icons/zoom-in.js +0 -12
- package/bootstrap-icons/zoom-out.d.ts +0 -5
- package/bootstrap-icons/zoom-out.js +0 -12
- package/components/actions-group/action-button.d.ts +0 -8
- package/components/actions-group/action-button.js +0 -10
- package/components/actions-group/actions-group.d.ts +0 -7
- package/components/actions-group/actions-group.js +0 -11
- package/components/actions-group/index.d.ts +0 -1
- package/components/actions-group/index.js +0 -17
- package/components/alert/alert.d.ts +0 -7
- package/components/alert/alert.js +0 -24
- package/components/avatar/avatar-group.d.ts +0 -14
- package/components/avatar/avatar-group.js +0 -40
- package/components/avatar/avatar-shape.d.ts +0 -9
- package/components/avatar/avatar-shape.js +0 -49
- package/components/avatar/avatar.d.ts +0 -18
- package/components/avatar/avatar.js +0 -43
- package/components/avatar/get-avatar-size-in-pixels.d.ts +0 -3
- package/components/avatar/get-avatar-size-in-pixels.js +0 -17
- package/components/avatar/make-avatar-shape-path.d.ts +0 -9
- package/components/avatar/make-avatar-shape-path.js +0 -40
- package/components/avatar/make-initials.d.ts +0 -1
- package/components/avatar/make-initials.js +0 -17
- package/components/avatar/types.d.ts +0 -2
- package/components/box/box.d.ts +0 -28
- package/components/box/box.js +0 -9
- package/components/box/index.d.ts +0 -1
- package/components/box/index.js +0 -17
- package/components/breadcrumb/breadcrumb-link.d.ts +0 -15
- package/components/breadcrumb/breadcrumb-link.js +0 -21
- package/components/breadcrumb/breadcrumb.d.ts +0 -6
- package/components/breadcrumb/breadcrumb.js +0 -12
- package/components/breadcrumb/index.d.ts +0 -2
- package/components/breadcrumb/index.js +0 -18
- package/components/button/button.d.ts +0 -18
- package/components/button/button.js +0 -24
- package/components/button/index.d.ts +0 -1
- package/components/button/index.js +0 -17
- package/components/buttons-group/buttons-group.d.ts +0 -3
- package/components/buttons-group/buttons-group.js +0 -9
- package/components/buttons-group/index.d.ts +0 -1
- package/components/buttons-group/index.js +0 -17
- package/components/calendar/calendar-day.d.ts +0 -19
- package/components/calendar/calendar-day.js +0 -10
- package/components/calendar/calendar-header.d.ts +0 -14
- package/components/calendar/calendar-header.js +0 -13
- package/components/calendar/calendar-row.d.ts +0 -7
- package/components/calendar/calendar-row.js +0 -9
- package/components/calendar/calendar.d.ts +0 -16
- package/components/calendar/calendar.js +0 -82
- package/components/calendar/index.d.ts +0 -1
- package/components/calendar/index.js +0 -17
- package/components/checkbox/checkbox.d.ts +0 -8
- package/components/checkbox/checkbox.js +0 -17
- package/components/date-picker/date-picker.d.ts +0 -15
- package/components/date-picker/date-picker.js +0 -55
- package/components/date-picker/index.d.ts +0 -2
- package/components/date-picker/index.js +0 -18
- package/components/date-picker-popover/date-picker-popover.d.ts +0 -13
- package/components/date-picker-popover/date-picker-popover.js +0 -17
- package/components/date-preset-picker-popover/date-preset-picker-popover.d.ts +0 -34
- package/components/date-preset-picker-popover/date-preset-picker-popover.js +0 -94
- package/components/date-preset-picker-popover/date-preset-picker.d.ts +0 -23
- package/components/date-preset-picker-popover/date-preset-picker.js +0 -26
- package/components/date-preset-picker-popover/date-preset-select.d.ts +0 -16
- package/components/date-preset-picker-popover/date-preset-select.js +0 -10
- package/components/date-preset-picker-popover/index.d.ts +0 -1
- package/components/date-preset-picker-popover/index.js +0 -17
- package/components/date-range-picker/date-range-picker.d.ts +0 -13
- package/components/date-range-picker/date-range-picker.js +0 -103
- package/components/date-range-picker/index.d.ts +0 -1
- package/components/date-range-picker/index.js +0 -17
- package/components/datetime-input/date-component-input.d.ts +0 -14
- package/components/datetime-input/date-component-input.js +0 -9
- package/components/datetime-input/date-components.d.ts +0 -28
- package/components/datetime-input/date-components.js +0 -103
- package/components/datetime-input/datetime-input.d.ts +0 -22
- package/components/datetime-input/datetime-input.js +0 -173
- package/components/datetime-input/index.d.ts +0 -2
- package/components/datetime-input/index.js +0 -18
- package/components/dialog/dialog.d.ts +0 -19
- package/components/dialog/dialog.js +0 -62
- package/components/dialog/index.d.ts +0 -1
- package/components/dialog/index.js +0 -17
- package/components/file-input/file-input-button.d.ts +0 -3
- package/components/file-input/file-input-button.js +0 -10
- package/components/file-input/file-input-context.d.ts +0 -12
- package/components/file-input/file-input-context.js +0 -20
- package/components/file-input/file-input.d.ts +0 -16
- package/components/file-input/file-input.js +0 -54
- package/components/file-input/index.d.ts +0 -2
- package/components/file-input/index.js +0 -18
- package/components/form-field/form-field.d.ts +0 -17
- package/components/form-field/form-field.js +0 -31
- package/components/formatted-content/formatted-content.d.ts +0 -55
- package/components/formatted-content/formatted-content.js +0 -67
- package/components/formatted-content/index.d.ts +0 -1
- package/components/formatted-content/index.js +0 -17
- package/components/index.d.ts +0 -46
- package/components/index.js +0 -62
- package/components/inline-message/index.d.ts +0 -1
- package/components/inline-message/index.js +0 -17
- package/components/inline-message/inline-message.d.ts +0 -6
- package/components/inline-message/inline-message.js +0 -23
- package/components/label/label.d.ts +0 -5
- package/components/label/label.js +0 -10
- package/components/loading-view/index.d.ts +0 -1
- package/components/loading-view/index.js +0 -17
- package/components/loading-view/loading-view.d.ts +0 -8
- package/components/loading-view/loading-view.js +0 -10
- package/components/menu/index.d.ts +0 -3
- package/components/menu/index.js +0 -19
- package/components/menu/menu-button.d.ts +0 -7
- package/components/menu/menu-button.js +0 -9
- package/components/menu/menu-divider.d.ts +0 -2
- package/components/menu/menu-divider.js +0 -9
- package/components/menu/menu.d.ts +0 -25
- package/components/menu/menu.js +0 -123
- package/components/non-ideal-state-view/index.d.ts +0 -1
- package/components/non-ideal-state-view/index.js +0 -17
- package/components/non-ideal-state-view/non-ideal-state-view.d.ts +0 -9
- package/components/non-ideal-state-view/non-ideal-state-view.js +0 -40
- package/components/number-input/index.d.ts +0 -1
- package/components/number-input/index.js +0 -17
- package/components/number-input/number-input.d.ts +0 -13
- package/components/number-input/number-input.js +0 -94
- package/components/password-input/password-input.d.ts +0 -9
- package/components/password-input/password-input.js +0 -22
- package/components/popover/popover.d.ts +0 -53
- package/components/popover/popover.js +0 -99
- package/components/popover/use-body-click.d.ts +0 -12
- package/components/popover/use-body-click.js +0 -49
- package/components/portal/portal.d.ts +0 -5
- package/components/portal/portal.js +0 -15
- package/components/positioner/get-position.d.ts +0 -32
- package/components/positioner/get-position.js +0 -117
- package/components/positioner/positioner.d.ts +0 -16
- package/components/positioner/positioner.js +0 -65
- package/components/positioner/types.d.ts +0 -14
- package/components/radio-button/index.d.ts +0 -1
- package/components/radio-button/index.js +0 -17
- package/components/radio-button/radio-button.d.ts +0 -7
- package/components/radio-button/radio-button.js +0 -14
- package/components/radio-group/index.d.ts +0 -2
- package/components/radio-group/index.js +0 -18
- package/components/radio-group/radio-group-item.d.ts +0 -7
- package/components/radio-group/radio-group-item.js +0 -11
- package/components/radio-group/radio-group.d.ts +0 -15
- package/components/radio-group/radio-group.js +0 -22
- package/components/scope-buttons/index.d.ts +0 -1
- package/components/scope-buttons/index.js +0 -17
- package/components/scope-buttons/scope-button.d.ts +0 -6
- package/components/scope-buttons/scope-button.js +0 -10
- package/components/scope-buttons/scope-buttons.d.ts +0 -6
- package/components/scope-buttons/scope-buttons.js +0 -26
- package/components/search-input/index.d.ts +0 -1
- package/components/search-input/index.js +0 -17
- package/components/search-input/search-input.d.ts +0 -4
- package/components/search-input/search-input.js +0 -17
- package/components/secret/index.d.ts +0 -1
- package/components/secret/index.js +0 -17
- package/components/secret/secret.d.ts +0 -8
- package/components/secret/secret.js +0 -18
- package/components/segmented-control/segmented-control.d.ts +0 -15
- package/components/segmented-control/segmented-control.js +0 -60
- package/components/select/select.d.ts +0 -8
- package/components/select/select.js +0 -17
- package/components/selection-control/selection-control.d.ts +0 -11
- package/components/selection-control/selection-control.js +0 -11
- package/components/slider/index.d.ts +0 -1
- package/components/slider/index.js +0 -17
- package/components/slider/slider.d.ts +0 -12
- package/components/slider/slider.js +0 -34
- package/components/spinner/index.d.ts +0 -2
- package/components/spinner/index.js +0 -6
- package/components/spinner/spinner.d.ts +0 -6
- package/components/spinner/spinner.js +0 -9
- package/components/svg-icon/index.d.ts +0 -1
- package/components/svg-icon/index.js +0 -17
- package/components/svg-icon/svg-icon.d.ts +0 -18
- package/components/svg-icon/svg-icon.js +0 -49
- package/components/switch/switch.d.ts +0 -3
- package/components/switch/switch.js +0 -14
- package/components/table/index.d.ts +0 -7
- package/components/table/index.js +0 -23
- package/components/table/table-body.d.ts +0 -5
- package/components/table/table-body.js +0 -9
- package/components/table/table-cell.d.ts +0 -5
- package/components/table/table-cell.js +0 -9
- package/components/table/table-container.d.ts +0 -5
- package/components/table/table-container.js +0 -25
- package/components/table/table-head.d.ts +0 -5
- package/components/table/table-head.js +0 -9
- package/components/table/table-header-cell.d.ts +0 -9
- package/components/table/table-header-cell.js +0 -15
- package/components/table/table-row.d.ts +0 -5
- package/components/table/table-row.js +0 -9
- package/components/table/table-sort-button.d.ts +0 -10
- package/components/table/table-sort-button.js +0 -52
- package/components/table/table.d.ts +0 -10
- package/components/table/table.js +0 -16
- package/components/tabs/index.d.ts +0 -1
- package/components/tabs/index.js +0 -17
- package/components/tabs/tab-list.d.ts +0 -3
- package/components/tabs/tab-list.js +0 -50
- package/components/tabs/tab-panel.d.ts +0 -6
- package/components/tabs/tab-panel.js +0 -14
- package/components/tabs/tab.d.ts +0 -7
- package/components/tabs/tab.js +0 -21
- package/components/tabs/tabs-state.d.ts +0 -20
- package/components/tabs/tabs-state.js +0 -63
- package/components/tabs/tabs.d.ts +0 -14
- package/components/tabs/tabs.js +0 -16
- package/components/tag/tag.d.ts +0 -12
- package/components/tag/tag.js +0 -20
- package/components/text-input/text-input.d.ts +0 -12
- package/components/text-input/text-input.js +0 -39
- package/components/textarea/textarea.d.ts +0 -8
- package/components/textarea/textarea.js +0 -17
- package/components/toast/index.d.ts +0 -1
- package/components/toast/index.js +0 -17
- package/components/toast/toast-button.d.ts +0 -5
- package/components/toast/toast-button.js +0 -9
- package/components/toast/toast.d.ts +0 -17
- package/components/toast/toast.js +0 -28
- package/components/toaster/toaster.d.ts +0 -17
- package/components/toaster/toaster.js +0 -77
- package/components/toaster/use-toasts.d.ts +0 -22
- package/components/toaster/use-toasts.js +0 -41
- package/components/tooltip/tooltip.d.ts +0 -17
- package/components/tooltip/tooltip.js +0 -60
- package/components/vertical-navigation/index.d.ts +0 -2
- package/components/vertical-navigation/index.js +0 -18
- package/components/vertical-navigation/vertical-navigation-item.d.ts +0 -16
- package/components/vertical-navigation/vertical-navigation-item.js +0 -20
- package/components/vertical-navigation/vertical-navigation.d.ts +0 -10
- package/components/vertical-navigation/vertical-navigation.js +0 -14
- package/css/draft-components-utils.css +0 -1
- package/hooks/index.d.ts +0 -6
- package/hooks/index.js +0 -22
- package/hooks/use-close-animation.d.ts +0 -13
- package/hooks/use-close-animation.js +0 -42
- package/hooks/use-disable-body-scroll.d.ts +0 -1
- package/hooks/use-disable-body-scroll.js +0 -34
- package/hooks/use-esc-key-down.d.ts +0 -3
- package/hooks/use-esc-key-down.js +0 -38
- package/hooks/use-focus-trap.d.ts +0 -2
- package/hooks/use-focus-trap.js +0 -76
- package/hooks/use-is-first-render.d.ts +0 -1
- package/hooks/use-is-first-render.js +0 -13
- package/hooks/use-is-mounted.d.ts +0 -2
- package/hooks/use-is-mounted.js +0 -15
- package/lib/guards.d.ts +0 -2
- package/lib/guards.js +0 -12
- package/lib/index.d.ts +0 -7
- package/lib/index.js +0 -36
- package/lib/keyboard-helpers.d.ts +0 -22
- package/lib/keyboard-helpers.js +0 -26
- package/lib/plain-date-range.d.ts +0 -15
- package/lib/plain-date-range.js +0 -35
- package/lib/plain-date.d.ts +0 -38
- package/lib/plain-date.js +0 -103
- package/lib/react-helpers.d.ts +0 -9
- package/lib/react-helpers.js +0 -42
- package/lib/stack.d.ts +0 -11
- package/lib/stack.js +0 -34
- package/lib/util.d.ts +0 -5
- package/lib/util.js +0 -41
- package/scss/abstracts/_functions.scss +0 -82
- package/scss/abstracts/_index.scss +0 -3
- package/scss/abstracts/_mixins.scss +0 -23
- package/scss/abstracts/_variables.scss +0 -229
- package/scss/base/_animations.scss +0 -8
- package/scss/base/_index.scss +0 -2
- package/scss/base/_normalize.scss +0 -351
- package/scss/components/_actions-group.scss +0 -20
- package/scss/components/_alert.scss +0 -95
- package/scss/components/_avatar.scss +0 -124
- package/scss/components/_box.scss +0 -277
- package/scss/components/_breadcrumb.scss +0 -55
- package/scss/components/_button.scss +0 -200
- package/scss/components/_buttons-group.scss +0 -25
- package/scss/components/_calendar.scss +0 -185
- package/scss/components/_checkbox.scss +0 -55
- package/scss/components/_date-picker.scss +0 -11
- package/scss/components/_date-preset-picker-popover.scss +0 -78
- package/scss/components/_datetime-input.scss +0 -94
- package/scss/components/_dialog.scss +0 -114
- package/scss/components/_file-input.scss +0 -94
- package/scss/components/_form-field.scss +0 -21
- package/scss/components/_formatted-content.scss +0 -171
- package/scss/components/_index.scss +0 -45
- package/scss/components/_inline-message.scss +0 -30
- package/scss/components/_input.scss +0 -74
- package/scss/components/_label.scss +0 -14
- package/scss/components/_loading-view.scss +0 -58
- package/scss/components/_menu.scss +0 -43
- package/scss/components/_non-ideal-state-view.scss +0 -93
- package/scss/components/_number-input.scss +0 -19
- package/scss/components/_password-input.scss +0 -9
- package/scss/components/_popover.scss +0 -70
- package/scss/components/_portal.scss +0 -3
- package/scss/components/_radio-button.scss +0 -58
- package/scss/components/_radio-group.scss +0 -96
- package/scss/components/_scope-buttons.scss +0 -49
- package/scss/components/_secret.scss +0 -32
- package/scss/components/_segmented-control.scss +0 -33
- package/scss/components/_select.scss +0 -36
- package/scss/components/_selection-control.scss +0 -39
- package/scss/components/_slider.scss +0 -130
- package/scss/components/_spinner.scss +0 -6
- package/scss/components/_svg-icon.scss +0 -8
- package/scss/components/_switch.scss +0 -58
- package/scss/components/_table.scss +0 -180
- package/scss/components/_tabs.scss +0 -80
- package/scss/components/_tag.scss +0 -117
- package/scss/components/_text-input.scss +0 -58
- package/scss/components/_textarea.scss +0 -10
- package/scss/components/_toast.scss +0 -104
- package/scss/components/_toaster.scss +0 -87
- package/scss/components/_tooltip.scss +0 -29
- package/scss/components/_vertical-navigation.scss +0 -73
- package/scss/draft-components-utils.scss +0 -8
- package/scss/draft-components.scss +0 -3
- package/scss/themes/_default-theme.scss +0 -294
- package/scss/utils/_border.scss +0 -85
- package/scss/utils/_box-model.scss +0 -36
- package/scss/utils/_color.scss +0 -601
- package/scss/utils/_flexbox.scss +0 -169
- package/scss/utils/_gap.scss +0 -23
- package/scss/utils/_margin.scss +0 -50
- package/scss/utils/_padding.scss +0 -49
- package/scss/utils/_typography.scss +0 -120
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filetypeTsx = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filetype-tsx.svg
|
|
6
|
-
exports.filetypeTsx = {
|
|
7
|
-
name: 'filetype-tsx',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", d: "M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5L14 4.5ZM3.172 14.841a1.13 1.13 0 0 0 .401.823c.129.108.288.192.478.252.189.061.41.091.665.091.338 0 .624-.053.858-.158.236-.105.416-.252.54-.44a1.17 1.17 0 0 0 .187-.656c0-.224-.045-.41-.135-.56a1.001 1.001 0 0 0-.375-.357 2.027 2.027 0 0 0-.566-.21l-.62-.144a.97.97 0 0 1-.405-.176.37.37 0 0 1-.144-.299c0-.156.062-.284.185-.384.125-.101.296-.152.513-.152.142 0 .265.023.369.068a.624.624 0 0 1 .246.181.56.56 0 0 1 .12.258h.75a1.092 1.092 0 0 0-.2-.566 1.21 1.21 0 0 0-.5-.41 1.813 1.813 0 0 0-.78-.152c-.292 0-.551.05-.776.15-.224.099-.4.24-.527.421-.127.182-.19.395-.19.639 0 .201.04.376.122.524.083.149.2.27.352.367.152.095.332.167.54.213l.617.144c.207.049.362.113.463.193a.387.387 0 0 1 .152.326.511.511 0 0 1-.084.29.559.559 0 0 1-.255.193 1.07 1.07 0 0 1-.413.07c-.118 0-.224-.013-.32-.04a.837.837 0 0 1-.249-.115.578.578 0 0 1-.255-.384h-.764Zm-1.244 1.09v-3.337h1.136v-.662H0v.662h1.134v3.337h.794Zm7.076-3.999h.893l-1.274 2.007 1.254 1.992h-.909l-.85-1.415h-.034l-.853 1.415H6.37l1.239-2.016-1.228-1.983h.932l.832 1.438h.035l.824-1.438Z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filetypeTtf = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filetype-ttf.svg
|
|
6
|
-
exports.filetypeTtf = {
|
|
7
|
-
name: 'filetype-ttf',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", d: "M14 4.5V14a2 2 0 0 1-2 2h-2v-1h2a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5L14 4.5ZM1.928 15.849v-3.337h2.269v3.337h.794v-3.337h1.137v-.662H0v.662h1.134v3.337h.794Zm5.315-1.59v1.59h-.791V11.85H9v.653H7.243v1.117h1.605v.638H7.243Z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filetypeTxt = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filetype-txt.svg
|
|
6
|
-
exports.filetypeTxt = {
|
|
7
|
-
name: 'filetype-txt',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", d: "M14 4.5V14a2 2 0 0 1-2 2h-2v-1h2a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5L14 4.5ZM1.928 15.849v-3.337h1.136v-.662H0v.662h1.134v3.337h.794Zm4.689-3.999h-.894L4.9 13.289h-.035l-.832-1.439h-.932l1.228 1.983-1.24 2.016h.862l.853-1.415h.035l.85 1.415h.907l-1.253-1.992 1.274-2.007Zm1.93.662v3.337h-.794v-3.337H6.619v-.662h3.064v.662H8.546Z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filetypeWav = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filetype-wav.svg
|
|
6
|
-
exports.filetypeWav = {
|
|
7
|
-
name: 'filetype-wav',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", d: "M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5L14 4.5ZM1.784 15.849l.741-2.789h.033l.74 2.789h.73l1.055-3.999h-.858l-.595 2.903h-.041l-.706-2.903H2.2l-.706 2.903h-.038l-.6-2.903H0l1.055 3.999h.73Zm3.715 0 .314-1.028h1.336l.313 1.028h.841L6.967 11.85h-.926L4.7 15.849h.8Zm1.002-3.234.49 1.617H5.977l.49-1.617H6.5Zm3.604 3.234h-.952L7.814 11.85h.917l.897 3.138h.038l.888-3.138h.879l-1.328 3.999Z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filetypeWoff = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filetype-woff.svg
|
|
6
|
-
exports.filetypeWoff = {
|
|
7
|
-
name: 'filetype-woff',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", d: "M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5L14 4.5Zm-5.464 9.688v-.522c0-.257-.04-.471-.117-.641a.861.861 0 0 0-.323-.387.862.862 0 0 0-.468-.129.868.868 0 0 0-.472.13.868.868 0 0 0-.32.386c-.077.17-.116.384-.116.641v.522c0 .256.039.47.117.641a.866.866 0 0 0 .319.387.883.883 0 0 0 .472.126.877.877 0 0 0 .468-.126.861.861 0 0 0 .323-.386 1.55 1.55 0 0 0 .117-.642Zm.803-.516v.513c0 .375-.069.7-.205.973-.137.271-.333.48-.59.627-.253.144-.559.216-.916.216-.356 0-.662-.072-.92-.216a1.463 1.463 0 0 1-.59-.627 2.151 2.151 0 0 1-.204-.973v-.513c0-.379.068-.704.205-.975.137-.274.333-.483.589-.627.258-.147.564-.22.92-.22.357 0 .663.073.917.22.256.146.452.356.589.63.136.271.205.595.205.972Zm-6.064-.536-.74 2.79h-.73l-1.055-4h.855l.601 2.903h.038l.706-2.903h.683l.706 2.903h.04l.596-2.903h.858l-1.055 4h-.73l-.74-2.79h-.033Zm7.398 2.79v-1.592h1.606v-.638h-1.606v-1.117h1.758v-.653H9.882v4h.791Zm2.988-1.592v1.591h-.791v-3.999h2.548v.653h-1.757v1.117h1.605v.638h-1.605Z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filetypeXls = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filetype-xls.svg
|
|
6
|
-
exports.filetypeXls = {
|
|
7
|
-
name: 'filetype-xls',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", d: "M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5L14 4.5ZM6.472 15.29a1.176 1.176 0 0 1-.111-.449h.765a.578.578 0 0 0 .254.384c.07.049.154.087.25.114.095.028.202.041.319.041.164 0 .302-.023.413-.07a.559.559 0 0 0 .255-.193.507.507 0 0 0 .085-.29.387.387 0 0 0-.153-.326c-.101-.08-.255-.144-.462-.193l-.619-.143a1.72 1.72 0 0 1-.539-.214 1.001 1.001 0 0 1-.351-.367 1.068 1.068 0 0 1-.123-.524c0-.244.063-.457.19-.639.127-.181.303-.322.527-.422.225-.1.484-.149.777-.149.305 0 .564.05.78.152.216.102.383.239.5.41.12.17.186.359.2.566h-.75a.56.56 0 0 0-.12-.258.625.625 0 0 0-.247-.181.923.923 0 0 0-.369-.068c-.217 0-.388.05-.513.152a.472.472 0 0 0-.184.384c0 .121.048.22.143.3a.97.97 0 0 0 .405.175l.62.143c.217.05.406.12.566.211a1 1 0 0 1 .375.358c.09.148.135.335.135.56 0 .247-.063.466-.188.656a1.216 1.216 0 0 1-.539.439c-.234.105-.52.158-.858.158-.254 0-.476-.03-.665-.09a1.404 1.404 0 0 1-.478-.252 1.13 1.13 0 0 1-.29-.375Zm-2.945-3.358h-.893L1.81 13.37h-.036l-.832-1.438h-.93l1.227 1.983L0 15.931h.861l.853-1.415h.035l.85 1.415h.908L2.253 13.94l1.274-2.007Zm2.727 3.325H4.557v-3.325h-.79v4h2.487v-.675Z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filetypeXlsx = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filetype-xlsx.svg
|
|
6
|
-
exports.filetypeXlsx = {
|
|
7
|
-
name: 'filetype-xlsx',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", d: "M14 4.5V11h-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5L14 4.5ZM7.86 14.841a1.13 1.13 0 0 0 .401.823c.13.108.29.192.479.252.19.061.411.091.665.091.338 0 .624-.053.858-.158.237-.105.416-.252.54-.44a1.17 1.17 0 0 0 .187-.656c0-.224-.045-.41-.135-.56a1.002 1.002 0 0 0-.375-.357 2.028 2.028 0 0 0-.565-.21l-.621-.144a.97.97 0 0 1-.405-.176.37.37 0 0 1-.143-.299c0-.156.061-.284.184-.384.125-.101.296-.152.513-.152.143 0 .266.023.37.068a.624.624 0 0 1 .245.181.56.56 0 0 1 .12.258h.75a1.093 1.093 0 0 0-.199-.566 1.21 1.21 0 0 0-.5-.41 1.813 1.813 0 0 0-.78-.152c-.293 0-.552.05-.777.15-.224.099-.4.24-.527.421-.127.182-.19.395-.19.639 0 .201.04.376.123.524.082.149.199.27.351.367.153.095.332.167.54.213l.618.144c.207.049.36.113.462.193a.387.387 0 0 1 .153.326.512.512 0 0 1-.085.29.558.558 0 0 1-.255.193c-.111.047-.25.07-.413.07-.117 0-.224-.013-.32-.04a.837.837 0 0 1-.249-.115.578.578 0 0 1-.255-.384h-.764Zm-3.726-2.909h.893l-1.274 2.007 1.254 1.992h-.908l-.85-1.415h-.035l-.853 1.415H1.5l1.24-2.016-1.228-1.983h.931l.832 1.438h.036l.823-1.438Zm1.923 3.325h1.697v.674H5.266v-3.999h.791v3.325Zm7.636-3.325h.893l-1.274 2.007 1.254 1.992h-.908l-.85-1.415h-.035l-.853 1.415h-.861l1.24-2.016-1.228-1.983h.931l.832 1.438h.036l.823-1.438Z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filetypeXml = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filetype-xml.svg
|
|
6
|
-
exports.filetypeXml = {
|
|
7
|
-
name: 'filetype-xml',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", d: "M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5L14 4.5ZM3.527 11.85h-.893l-.823 1.439h-.036L.943 11.85H.012l1.227 1.983L0 15.85h.861l.853-1.415h.035l.85 1.415h.908l-1.254-1.992 1.274-2.007Zm.954 3.999v-2.66h.038l.952 2.159h.516l.946-2.16h.038v2.661h.715V11.85h-.8l-1.14 2.596h-.025L4.58 11.85h-.806v3.999h.706Zm4.71-.674h1.696v.674H8.4V11.85h.791v3.325Z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filetypeYml = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filetype-yml.svg
|
|
6
|
-
exports.filetypeYml = {
|
|
7
|
-
name: 'filetype-yml',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", d: "M14 4.5V14a2 2 0 0 1-2 2v-1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5L14 4.5ZM2.133 15.849v-1.535l1.339-2.464h-.856l-.855 1.696h-.032L.876 11.85H0l1.339 2.479v1.52h.794Zm2.287 0v-2.66h.038l.952 2.159h.516l.946-2.16h.038v2.661h.715V11.85h-.8l-1.14 2.596H5.66L4.52 11.85h-.805v3.999h.706Zm4.71-.674h1.696v.674H8.338V11.85h.791v3.325Z" })),
|
|
12
|
-
};
|
package/bootstrap-icons/film.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.film = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/film.svg
|
|
6
|
-
exports.film = {
|
|
7
|
-
name: 'film',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M0 1a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V1zm4 0v6h8V1H4zm8 8H4v6h8V9zM1 1v2h2V1H1zm2 3H1v2h2V4zM1 7v2h2V7H1zm2 3H1v2h2v-2zm-2 3v2h2v-2H1zM15 1h-2v2h2V1zm-2 3v2h2V4h-2zm2 3h-2v2h2V7zm-2 3v2h2v-2h-2zm2 3h-2v2h2v-2z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filterCircleFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filter-circle-fill.svg
|
|
6
|
-
exports.filterCircleFill = {
|
|
7
|
-
name: 'filter-circle-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zM3.5 5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1 0-1zM5 8.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm2 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filterCircle = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filter-circle.svg
|
|
6
|
-
exports.filterCircle = {
|
|
7
|
-
name: 'filter-circle',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z" }), (0, jsx_runtime_1.jsx)("path", { d: "M7 11.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 0 1h-1a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filterLeft = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filter-left.svg
|
|
6
|
-
exports.filterLeft = {
|
|
7
|
-
name: 'filter-left',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M2 10.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filterRight = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filter-right.svg
|
|
6
|
-
exports.filterRight = {
|
|
7
|
-
name: 'filter-right',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M14 10.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0 0 1h3a.5.5 0 0 0 .5-.5zm0-3a.5.5 0 0 0-.5-.5h-7a.5.5 0 0 0 0 1h7a.5.5 0 0 0 .5-.5zm0-3a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0 0 1h11a.5.5 0 0 0 .5-.5z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filterSquareFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filter-square-fill.svg
|
|
6
|
-
exports.filterSquareFill = {
|
|
7
|
-
name: 'filter-square-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm.5 5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1 0-1zM4 8.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm2 3a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filterSquare = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filter-square.svg
|
|
6
|
-
exports.filterSquare = {
|
|
7
|
-
name: 'filter-square',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M14 1a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z" }), (0, jsx_runtime_1.jsx)("path", { d: "M6 11.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.filter = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/filter.svg
|
|
6
|
-
exports.filter = {
|
|
7
|
-
name: 'filter',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M6 10.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.fingerprint = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/fingerprint.svg
|
|
6
|
-
exports.fingerprint = {
|
|
7
|
-
name: 'fingerprint',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M8.06 6.5a.5.5 0 0 1 .5.5v.776a11.5 11.5 0 0 1-.552 3.519l-1.331 4.14a.5.5 0 0 1-.952-.305l1.33-4.141a10.5 10.5 0 0 0 .504-3.213V7a.5.5 0 0 1 .5-.5Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M6.06 7a2 2 0 1 1 4 0 .5.5 0 1 1-1 0 1 1 0 1 0-2 0v.332c0 .409-.022.816-.066 1.221A.5.5 0 0 1 6 8.447c.04-.37.06-.742.06-1.115V7Zm3.509 1a.5.5 0 0 1 .487.513 11.5 11.5 0 0 1-.587 3.339l-1.266 3.8a.5.5 0 0 1-.949-.317l1.267-3.8a10.5 10.5 0 0 0 .535-3.048A.5.5 0 0 1 9.569 8Zm-3.356 2.115a.5.5 0 0 1 .33.626L5.24 14.939a.5.5 0 1 1-.955-.296l1.303-4.199a.5.5 0 0 1 .625-.329Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M4.759 5.833A3.501 3.501 0 0 1 11.559 7a.5.5 0 0 1-1 0 2.5 2.5 0 0 0-4.857-.833.5.5 0 1 1-.943-.334Zm.3 1.67a.5.5 0 0 1 .449.546 10.72 10.72 0 0 1-.4 2.031l-1.222 4.072a.5.5 0 1 1-.958-.287L4.15 9.793a9.72 9.72 0 0 0 .363-1.842.5.5 0 0 1 .546-.449Zm6 .647a.5.5 0 0 1 .5.5c0 1.28-.213 2.552-.632 3.762l-1.09 3.145a.5.5 0 0 1-.944-.327l1.089-3.145c.382-1.105.578-2.266.578-3.435a.5.5 0 0 1 .5-.5Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M3.902 4.222a4.996 4.996 0 0 1 5.202-2.113.5.5 0 0 1-.208.979 3.996 3.996 0 0 0-4.163 1.69.5.5 0 0 1-.831-.556Zm6.72-.955a.5.5 0 0 1 .705-.052A4.99 4.99 0 0 1 13.059 7v1.5a.5.5 0 1 1-1 0V7a3.99 3.99 0 0 0-1.386-3.028.5.5 0 0 1-.051-.705ZM3.68 5.842a.5.5 0 0 1 .422.568c-.029.192-.044.39-.044.59 0 .71-.1 1.417-.298 2.1l-1.14 3.923a.5.5 0 1 1-.96-.279L2.8 8.821A6.531 6.531 0 0 0 3.058 7c0-.25.019-.496.054-.736a.5.5 0 0 1 .568-.422Zm8.882 3.66a.5.5 0 0 1 .456.54c-.084 1-.298 1.986-.64 2.934l-.744 2.068a.5.5 0 0 1-.941-.338l.745-2.07a10.51 10.51 0 0 0 .584-2.678.5.5 0 0 1 .54-.456Z" }), (0, jsx_runtime_1.jsx)("path", { d: "M4.81 1.37A6.5 6.5 0 0 1 14.56 7a.5.5 0 1 1-1 0 5.5 5.5 0 0 0-8.25-4.765.5.5 0 0 1-.5-.865Zm-.89 1.257a.5.5 0 0 1 .04.706A5.478 5.478 0 0 0 2.56 7a.5.5 0 0 1-1 0c0-1.664.626-3.184 1.655-4.333a.5.5 0 0 1 .706-.04ZM1.915 8.02a.5.5 0 0 1 .346.616l-.779 2.767a.5.5 0 1 1-.962-.27l.778-2.767a.5.5 0 0 1 .617-.346Zm12.15.481a.5.5 0 0 1 .49.51c-.03 1.499-.161 3.025-.727 4.533l-.07.187a.5.5 0 0 1-.936-.351l.07-.187c.506-1.35.634-2.74.663-4.202a.5.5 0 0 1 .51-.49Z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.flagFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/flag-fill.svg
|
|
6
|
-
exports.flagFill = {
|
|
7
|
-
name: 'flag-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001" })),
|
|
12
|
-
};
|
package/bootstrap-icons/flag.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.flag = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/flag.svg
|
|
6
|
-
exports.flag = {
|
|
7
|
-
name: 'flag',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M14.778.085A.5.5 0 0 1 15 .5V8a.5.5 0 0 1-.314.464L14.5 8l.186.464-.003.001-.006.003-.023.009a12.435 12.435 0 0 1-.397.15c-.264.095-.631.223-1.047.35-.816.252-1.879.523-2.71.523-.847 0-1.548-.28-2.158-.525l-.028-.01C7.68 8.71 7.14 8.5 6.5 8.5c-.7 0-1.638.23-2.437.477A19.626 19.626 0 0 0 3 9.342V15.5a.5.5 0 0 1-1 0V.5a.5.5 0 0 1 1 0v.282c.226-.079.496-.17.79-.26C4.606.272 5.67 0 6.5 0c.84 0 1.524.277 2.121.519l.043.018C9.286.788 9.828 1 10.5 1c.7 0 1.638-.23 2.437-.477a19.587 19.587 0 0 0 1.349-.476l.019-.007.004-.002h.001M14 1.221c-.22.078-.48.167-.766.255-.81.252-1.872.523-2.734.523-.886 0-1.592-.286-2.203-.534l-.008-.003C7.662 1.21 7.139 1 6.5 1c-.669 0-1.606.229-2.415.478A21.294 21.294 0 0 0 3 1.845v6.433c.22-.078.48-.167.766-.255C4.576 7.77 5.638 7.5 6.5 7.5c.847 0 1.548.28 2.158.525l.028.01C9.32 8.29 9.86 8.5 10.5 8.5c.668 0 1.606-.229 2.415-.478A21.317 21.317 0 0 0 14 7.655V1.222z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.flower1 = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/flower1.svg
|
|
6
|
-
exports.flower1 = {
|
|
7
|
-
name: 'flower1',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M6.174 1.184a2 2 0 0 1 3.652 0A2 2 0 0 1 12.99 3.01a2 2 0 0 1 1.826 3.164 2 2 0 0 1 0 3.652 2 2 0 0 1-1.826 3.164 2 2 0 0 1-3.164 1.826 2 2 0 0 1-3.652 0A2 2 0 0 1 3.01 12.99a2 2 0 0 1-1.826-3.164 2 2 0 0 1 0-3.652A2 2 0 0 1 3.01 3.01a2 2 0 0 1 3.164-1.826zM8 1a1 1 0 0 0-.998 1.03l.01.091c.012.077.029.176.054.296.049.241.122.542.213.887.182.688.428 1.513.676 2.314L8 5.762l.045-.144c.248-.8.494-1.626.676-2.314.091-.345.164-.646.213-.887a4.997 4.997 0 0 0 .064-.386L9 2a1 1 0 0 0-1-1zM2 9l.03-.002.091-.01a4.99 4.99 0 0 0 .296-.054c.241-.049.542-.122.887-.213a60.59 60.59 0 0 0 2.314-.676L5.762 8l-.144-.045a60.59 60.59 0 0 0-2.314-.676 16.705 16.705 0 0 0-.887-.213 4.99 4.99 0 0 0-.386-.064L2 7a1 1 0 1 0 0 2zm7 5-.002-.03a5.005 5.005 0 0 0-.064-.386 16.398 16.398 0 0 0-.213-.888 60.582 60.582 0 0 0-.676-2.314L8 10.238l-.045.144c-.248.8-.494 1.626-.676 2.314-.091.345-.164.646-.213.887a4.996 4.996 0 0 0-.064.386L7 14a1 1 0 1 0 2 0zm-5.696-2.134.025-.017a5.001 5.001 0 0 0 .303-.248c.184-.164.408-.377.661-.629A60.614 60.614 0 0 0 5.96 9.23l.103-.111-.147.033a60.88 60.88 0 0 0-2.343.572c-.344.093-.64.18-.874.258a5.063 5.063 0 0 0-.367.138l-.027.014a1 1 0 1 0 1 1.732zM4.5 14.062a1 1 0 0 0 1.366-.366l.014-.027c.01-.02.021-.048.036-.084a5.09 5.09 0 0 0 .102-.283c.078-.233.165-.53.258-.874a60.6 60.6 0 0 0 .572-2.343l.033-.147-.11.102a60.848 60.848 0 0 0-1.743 1.667 17.07 17.07 0 0 0-.629.66 5.06 5.06 0 0 0-.248.304l-.017.025a1 1 0 0 0 .366 1.366zm9.196-8.196a1 1 0 0 0-1-1.732l-.025.017a4.951 4.951 0 0 0-.303.248 16.69 16.69 0 0 0-.661.629A60.72 60.72 0 0 0 10.04 6.77l-.102.111.147-.033a60.6 60.6 0 0 0 2.342-.572c.345-.093.642-.18.875-.258a4.993 4.993 0 0 0 .367-.138.53.53 0 0 0 .027-.014zM11.5 1.938a1 1 0 0 0-1.366.366l-.014.027c-.01.02-.021.048-.036.084a5.09 5.09 0 0 0-.102.283c-.078.233-.165.53-.258.875a60.62 60.62 0 0 0-.572 2.342l-.033.147.11-.102a60.848 60.848 0 0 0 1.743-1.667c.252-.253.465-.477.629-.66a5.001 5.001 0 0 0 .248-.304l.017-.025a1 1 0 0 0-.366-1.366zM14 9a1 1 0 0 0 0-2l-.03.002a4.996 4.996 0 0 0-.386.064c-.242.049-.543.122-.888.213-.688.182-1.513.428-2.314.676L10.238 8l.144.045c.8.248 1.626.494 2.314.676.345.091.646.164.887.213a4.996 4.996 0 0 0 .386.064L14 9zM1.938 4.5a1 1 0 0 0 .393 1.38l.084.035c.072.03.166.064.283.103.233.078.53.165.874.258a60.88 60.88 0 0 0 2.343.572l.147.033-.103-.111a60.584 60.584 0 0 0-1.666-1.742 16.705 16.705 0 0 0-.66-.629 4.996 4.996 0 0 0-.304-.248l-.025-.017a1 1 0 0 0-1.366.366zm2.196-1.196.017.025a4.996 4.996 0 0 0 .248.303c.164.184.377.408.629.661A60.597 60.597 0 0 0 6.77 5.96l.111.102-.033-.147a60.602 60.602 0 0 0-.572-2.342c-.093-.345-.18-.642-.258-.875a5.006 5.006 0 0 0-.138-.367l-.014-.027a1 1 0 1 0-1.732 1zm9.928 8.196a1 1 0 0 0-.366-1.366l-.027-.014a5 5 0 0 0-.367-.138c-.233-.078-.53-.165-.875-.258a60.619 60.619 0 0 0-2.342-.572l-.147-.033.102.111a60.73 60.73 0 0 0 1.667 1.742c.253.252.477.465.66.629a4.946 4.946 0 0 0 .304.248l.025.017a1 1 0 0 0 1.366-.366zm-3.928 2.196a1 1 0 0 0 1.732-1l-.017-.025a5.065 5.065 0 0 0-.248-.303 16.705 16.705 0 0 0-.629-.661A60.462 60.462 0 0 0 9.23 10.04l-.111-.102.033.147a60.6 60.6 0 0 0 .572 2.342c.093.345.18.642.258.875a4.985 4.985 0 0 0 .138.367.575.575 0 0 0 .014.027zM8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.flower2 = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/flower2.svg
|
|
6
|
-
exports.flower2 = {
|
|
7
|
-
name: 'flower2',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M8 16a4 4 0 0 0 4-4 4 4 0 0 0 0-8 4 4 0 0 0-8 0 4 4 0 1 0 0 8 4 4 0 0 0 4 4zm3-12c0 .073-.01.155-.03.247-.544.241-1.091.638-1.598 1.084A2.987 2.987 0 0 0 8 5c-.494 0-.96.12-1.372.331-.507-.446-1.054-.843-1.597-1.084A1.117 1.117 0 0 1 5 4a3 3 0 0 1 6 0zm-.812 6.052A2.99 2.99 0 0 0 11 8a2.99 2.99 0 0 0-.812-2.052c.215-.18.432-.346.647-.487C11.34 5.131 11.732 5 12 5a3 3 0 1 1 0 6c-.268 0-.66-.13-1.165-.461a6.833 6.833 0 0 1-.647-.487zm-3.56.617a3.001 3.001 0 0 0 2.744 0c.507.446 1.054.842 1.598 1.084.02.091.03.174.03.247a3 3 0 1 1-6 0c0-.073.01-.155.03-.247.544-.242 1.091-.638 1.598-1.084zm-.816-4.721A2.99 2.99 0 0 0 5 8c0 .794.308 1.516.812 2.052a6.83 6.83 0 0 1-.647.487C4.66 10.869 4.268 11 4 11a3 3 0 0 1 0-6c.268 0 .66.13 1.165.461.215.141.432.306.647.487zM8 9a1 1 0 1 1 0-2 1 1 0 0 1 0 2z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.flower3 = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/flower3.svg
|
|
6
|
-
exports.flower3 = {
|
|
7
|
-
name: 'flower3',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M11.424 8c.437-.052.811-.136 1.04-.268a2 2 0 0 0-2-3.464c-.229.132-.489.414-.752.767C9.886 4.63 10 4.264 10 4a2 2 0 1 0-4 0c0 .264.114.63.288 1.035-.263-.353-.523-.635-.752-.767a2 2 0 0 0-2 3.464c.229.132.603.216 1.04.268-.437.052-.811.136-1.04.268a2 2 0 1 0 2 3.464c.229-.132.489-.414.752-.767C6.114 11.37 6 11.736 6 12a2 2 0 1 0 4 0c0-.264-.114-.63-.288-1.035.263.353.523.635.752.767a2 2 0 1 0 2-3.464c-.229-.132-.603-.216-1.04-.268zM9 4a1.468 1.468 0 0 1-.045.205c-.039.132-.1.295-.183.484a12.88 12.88 0 0 1-.637 1.223L8 6.142a21.73 21.73 0 0 1-.135-.23 12.88 12.88 0 0 1-.637-1.223 4.216 4.216 0 0 1-.183-.484A1.473 1.473 0 0 1 7 4a1 1 0 1 1 2 0zM3.67 5.5a1 1 0 0 1 1.366-.366 1.472 1.472 0 0 1 .156.142c.094.1.204.233.326.4.245.333.502.747.742 1.163l.13.232a21.86 21.86 0 0 1-.265.002 12.88 12.88 0 0 1-1.379-.06 4.214 4.214 0 0 1-.51-.083 1.47 1.47 0 0 1-.2-.064A1 1 0 0 1 3.67 5.5zm1.366 5.366a1 1 0 0 1-1-1.732c.001 0 .016-.008.047-.02.037-.013.087-.028.153-.044.134-.032.305-.06.51-.083a12.88 12.88 0 0 1 1.379-.06c.09 0 .178 0 .266.002a21.82 21.82 0 0 1-.131.232c-.24.416-.497.83-.742 1.163a4.1 4.1 0 0 1-.327.4 1.483 1.483 0 0 1-.155.142zM9 12a1 1 0 0 1-2 0 1.476 1.476 0 0 1 .045-.206c.039-.131.1-.294.183-.483.166-.378.396-.808.637-1.223L8 9.858l.135.23c.241.415.47.845.637 1.223.083.19.144.352.183.484A1.338 1.338 0 0 1 9 12zm3.33-6.5a1 1 0 0 1-.366 1.366 1.478 1.478 0 0 1-.2.064c-.134.032-.305.06-.51.083-.412.045-.898.061-1.379.06-.09 0-.178 0-.266-.002l.131-.232c.24-.416.497-.83.742-1.163a4.1 4.1 0 0 1 .327-.4c.046-.05.085-.086.114-.11.026-.022.04-.03.041-.032a1 1 0 0 1 1.366.366zm-1.366 5.366a1.494 1.494 0 0 1-.155-.141 4.225 4.225 0 0 1-.327-.4A12.88 12.88 0 0 1 9.74 9.16a22 22 0 0 1-.13-.232l.265-.002c.48-.001.967.015 1.379.06.205.023.376.051.51.083.066.016.116.031.153.044l.048.02a1 1 0 1 1-1 1.732zM8 9a1 1 0 1 1 0-2 1 1 0 0 1 0 2z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.folderCheck = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/folder-check.svg
|
|
6
|
-
exports.folderCheck = {
|
|
7
|
-
name: 'folder-check',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "m.5 3 .04.87a1.99 1.99 0 0 0-.342 1.311l.637 7A2 2 0 0 0 2.826 14H9v-1H2.826a1 1 0 0 1-.995-.91l-.637-7A1 1 0 0 1 2.19 4h11.62a1 1 0 0 1 .996 1.09L14.54 8h1.005l.256-2.819A2 2 0 0 0 13.81 3H9.828a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 6.172 1H2.5a2 2 0 0 0-2 2zm5.672-1a1 1 0 0 1 .707.293L7.586 3H2.19c-.24 0-.47.042-.683.12L1.5 2.98a1 1 0 0 1 1-.98h3.672z" }), (0, jsx_runtime_1.jsx)("path", { d: "M15.854 10.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.707 0l-1.5-1.5a.5.5 0 0 1 .707-.708l1.146 1.147 2.646-2.647a.5.5 0 0 1 .708 0z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.folderFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/folder-fill.svg
|
|
6
|
-
exports.folderFill = {
|
|
7
|
-
name: 'folder-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M9.828 3h3.982a2 2 0 0 1 1.992 2.181l-.637 7A2 2 0 0 1 13.174 14H2.825a2 2 0 0 1-1.991-1.819l-.637-7a1.99 1.99 0 0 1 .342-1.31L.5 3a2 2 0 0 1 2-2h3.672a2 2 0 0 1 1.414.586l.828.828A2 2 0 0 0 9.828 3zm-8.322.12C1.72 3.042 1.95 3 2.19 3h5.396l-.707-.707A1 1 0 0 0 6.172 2H2.5a1 1 0 0 0-1 .981l.006.139z" })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.folderMinus = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/folder-minus.svg
|
|
6
|
-
exports.folderMinus = {
|
|
7
|
-
name: 'folder-minus',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "m.5 3 .04.87a1.99 1.99 0 0 0-.342 1.311l.637 7A2 2 0 0 0 2.826 14H9v-1H2.826a1 1 0 0 1-.995-.91l-.637-7A1 1 0 0 1 2.19 4h11.62a1 1 0 0 1 .996 1.09L14.54 8h1.005l.256-2.819A2 2 0 0 0 13.81 3H9.828a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 6.172 1H2.5a2 2 0 0 0-2 2zm5.672-1a1 1 0 0 1 .707.293L7.586 3H2.19c-.24 0-.47.042-.683.12L1.5 2.98a1 1 0 0 1 1-.98h3.672z" }), (0, jsx_runtime_1.jsx)("path", { d: "M11 11.5a.5.5 0 0 1 .5-.5h4a.5.5 0 1 1 0 1h-4a.5.5 0 0 1-.5-.5z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.folderPlus = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/folder-plus.svg
|
|
6
|
-
exports.folderPlus = {
|
|
7
|
-
name: 'folder-plus',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("path", { d: "m.5 3 .04.87a1.99 1.99 0 0 0-.342 1.311l.637 7A2 2 0 0 0 2.826 14H9v-1H2.826a1 1 0 0 1-.995-.91l-.637-7A1 1 0 0 1 2.19 4h11.62a1 1 0 0 1 .996 1.09L14.54 8h1.005l.256-2.819A2 2 0 0 0 13.81 3H9.828a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 6.172 1H2.5a2 2 0 0 0-2 2zm5.672-1a1 1 0 0 1 .707.293L7.586 3H2.19c-.24 0-.47.042-.683.12L1.5 2.98a1 1 0 0 1 1-.98h3.672z" }), (0, jsx_runtime_1.jsx)("path", { d: "M13.5 10a.5.5 0 0 1 .5.5V12h1.5a.5.5 0 1 1 0 1H14v1.5a.5.5 0 1 1-1 0V13h-1.5a.5.5 0 0 1 0-1H13v-1.5a.5.5 0 0 1 .5-.5z" })] })),
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.folderSymlinkFill = void 0;
|
|
4
|
-
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
-
// https://github.com/twbs/icons/blob/main/icons/folder-symlink-fill.svg
|
|
6
|
-
exports.folderSymlinkFill = {
|
|
7
|
-
name: 'folder-symlink-fill',
|
|
8
|
-
width: 16,
|
|
9
|
-
height: 16,
|
|
10
|
-
viewBox: '0 0 16 16',
|
|
11
|
-
children: ((0, jsx_runtime_1.jsx)("path", { d: "M13.81 3H9.828a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 6.172 1H2.5a2 2 0 0 0-2 2l.04.87a1.99 1.99 0 0 0-.342 1.311l.637 7A2 2 0 0 0 2.826 14h10.348a2 2 0 0 0 1.991-1.819l.637-7A2 2 0 0 0 13.81 3zM2.19 3c-.24 0-.47.042-.683.12L1.5 2.98a1 1 0 0 1 1-.98h3.672a1 1 0 0 1 .707.293L7.586 3H2.19zm9.608 5.271-3.182 1.97c-.27.166-.616-.036-.616-.372V9.1s-2.571-.3-4 2.4c.571-4.8 3.143-4.8 4-4.8v-.769c0-.336.346-.538.616-.371l3.182 1.969c.27.166.27.576 0 .742z" })),
|
|
12
|
-
};
|