@a-little-world/little-world-design-system 2.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +7 -0
- package/.storybook/main.ts +36 -0
- package/.storybook/preview-head.html +6 -0
- package/.storybook/preview.ts +15 -0
- package/.turbo/turbo-build.log +14 -0
- package/CHANGELOG.md +398 -0
- package/LICENSE +21 -0
- package/README.md +180 -0
- package/__mocks__/focus-trap-react.tsx +1 -0
- package/__mocks__/svg.tsx +6 -0
- package/dist/cjs/components/Accordion/Accordion.d.ts +15 -0
- package/dist/cjs/components/Accordion/Accordion.js +20 -0
- package/dist/cjs/components/Accordion/styles.d.ts +18 -0
- package/dist/cjs/components/Accordion/styles.js +100 -0
- package/dist/cjs/components/Button/Button.d.ts +9 -0
- package/dist/cjs/components/Button/Button.js +17 -0
- package/dist/cjs/components/Button/styles.d.ts +16 -0
- package/dist/cjs/components/Button/styles.js +313 -0
- package/dist/cjs/components/Card/Card.d.ts +11 -0
- package/dist/cjs/components/Card/Card.js +108 -0
- package/dist/cjs/components/Checkbox/Checkbox.d.ts +15 -0
- package/dist/cjs/components/Checkbox/Checkbox.js +24 -0
- package/dist/cjs/components/Checkbox/styles.d.ts +27 -0
- package/dist/cjs/components/Checkbox/styles.js +108 -0
- package/dist/cjs/components/CheckboxGrid/CheckboxGrid.d.ts +22 -0
- package/dist/cjs/components/CheckboxGrid/CheckboxGrid.js +73 -0
- package/dist/cjs/components/CheckboxGrid/styles.d.ts +64 -0
- package/dist/cjs/components/CheckboxGrid/styles.js +137 -0
- package/dist/cjs/components/Dropdown/Dropdown.d.ts +25 -0
- package/dist/cjs/components/Dropdown/Dropdown.js +70 -0
- package/dist/cjs/components/Dropdown/styles.d.ts +15 -0
- package/dist/cjs/components/Dropdown/styles.js +145 -0
- package/dist/cjs/components/Icon/Icon.d.ts +10 -0
- package/dist/cjs/components/Icon/Icon.js +82 -0
- package/dist/cjs/components/Icon/IconGradient.d.ts +4 -0
- package/dist/cjs/components/Icon/IconGradient.js +29 -0
- package/dist/cjs/components/Icon/createIconComponent.d.ts +10 -0
- package/dist/cjs/components/Icon/createIconComponent.js +31 -0
- package/dist/cjs/components/Icon/getDefaultIconProps.d.ts +2 -0
- package/dist/cjs/components/Icon/getDefaultIconProps.js +15 -0
- package/dist/cjs/components/Icon/index.d.ts +553 -0
- package/dist/cjs/components/Icon/index.js +342 -0
- package/dist/cjs/components/Illustrations/Illustration.d.ts +3 -0
- package/dist/cjs/components/Illustrations/Illustration.js +12 -0
- package/dist/cjs/components/Illustrations/createIllustrationComponent.d.ts +10 -0
- package/dist/cjs/components/Illustrations/createIllustrationComponent.js +23 -0
- package/dist/cjs/components/Illustrations/index.d.ts +152 -0
- package/dist/cjs/components/Illustrations/index.js +81 -0
- package/dist/cjs/components/InputError/InputError.d.ts +15 -0
- package/dist/cjs/components/InputError/InputError.js +79 -0
- package/dist/cjs/components/Label/Label.d.ts +10 -0
- package/dist/cjs/components/Label/Label.js +68 -0
- package/dist/cjs/components/Link/Link.d.ts +6 -0
- package/dist/cjs/components/Link/Link.js +48 -0
- package/dist/cjs/components/Link/styles.d.ts +22 -0
- package/dist/cjs/components/Link/styles.js +99 -0
- package/dist/cjs/components/Loading/Loading.d.ts +10 -0
- package/dist/cjs/components/Loading/Loading.js +27 -0
- package/dist/cjs/components/Loading/LoadingLogo.d.ts +8 -0
- package/dist/cjs/components/Loading/LoadingLogo.js +31 -0
- package/dist/cjs/components/Loading/styles.d.ts +15 -0
- package/dist/cjs/components/Loading/styles.js +107 -0
- package/dist/cjs/components/Modal/Modal.d.ts +20 -0
- package/dist/cjs/components/Modal/Modal.js +95 -0
- package/dist/cjs/components/Modal/styles.d.ts +4 -0
- package/dist/cjs/components/Modal/styles.js +102 -0
- package/dist/cjs/components/MultiCheckbox/MultiCheckbox.d.ts +15 -0
- package/dist/cjs/components/MultiCheckbox/MultiCheckbox.js +61 -0
- package/dist/cjs/components/MultiCheckbox/styles.d.ts +1 -0
- package/dist/cjs/components/MultiCheckbox/styles.js +15 -0
- package/dist/cjs/components/MultiDropdown/MultiDropdown.d.ts +28 -0
- package/dist/cjs/components/MultiDropdown/MultiDropdown.js +124 -0
- package/dist/cjs/components/MultiDropdown/styles.d.ts +7 -0
- package/dist/cjs/components/MultiDropdown/styles.js +44 -0
- package/dist/cjs/components/MultiSelection/MultiSelection.d.ts +16 -0
- package/dist/cjs/components/MultiSelection/MultiSelection.js +62 -0
- package/dist/cjs/components/MultiSelection/styles.d.ts +9 -0
- package/dist/cjs/components/MultiSelection/styles.js +99 -0
- package/dist/cjs/components/NavigationMenu/NavigationMenu.d.ts +35 -0
- package/dist/cjs/components/NavigationMenu/NavigationMenu.js +85 -0
- package/dist/cjs/components/NavigationMenu/styles.d.ts +81 -0
- package/dist/cjs/components/NavigationMenu/styles.js +296 -0
- package/dist/cjs/components/Popover/InfoPopover.d.ts +8 -0
- package/dist/cjs/components/Popover/InfoPopover.js +46 -0
- package/dist/cjs/components/Popover/Popover.d.ts +16 -0
- package/dist/cjs/components/Popover/Popover.js +61 -0
- package/dist/cjs/components/Popover/styles.d.ts +14 -0
- package/dist/cjs/components/Popover/styles.js +116 -0
- package/dist/cjs/components/ProgressBar/ProgressBar.d.ts +8 -0
- package/dist/cjs/components/ProgressBar/ProgressBar.js +85 -0
- package/dist/cjs/components/RadioGroup/RadioGroup.d.ts +16 -0
- package/dist/cjs/components/RadioGroup/RadioGroup.js +24 -0
- package/dist/cjs/components/RadioGroup/styles.d.ts +12 -0
- package/dist/cjs/components/RadioGroup/styles.js +126 -0
- package/dist/cjs/components/Separator/Separator.d.ts +11 -0
- package/dist/cjs/components/Separator/Separator.js +61 -0
- package/dist/cjs/components/Separator/styles.d.ts +6 -0
- package/dist/cjs/components/Separator/styles.js +57 -0
- package/dist/cjs/components/Slider/Slider.d.ts +12 -0
- package/dist/cjs/components/Slider/Slider.js +17 -0
- package/dist/cjs/components/Slider/styles.d.ts +6 -0
- package/dist/cjs/components/Slider/styles.js +57 -0
- package/dist/cjs/components/StarRating/StarRating.d.ts +22 -0
- package/dist/cjs/components/StarRating/StarRating.js +143 -0
- package/dist/cjs/components/StarRating/styles.d.ts +35 -0
- package/dist/cjs/components/StarRating/styles.js +104 -0
- package/dist/cjs/components/StatusMessage/StatusMessage.d.ts +4 -0
- package/dist/cjs/components/StatusMessage/StatusMessage.js +112 -0
- package/dist/cjs/components/Switch/Switch.d.ts +15 -0
- package/dist/cjs/components/Switch/Switch.js +19 -0
- package/dist/cjs/components/Switch/styles.d.ts +14 -0
- package/dist/cjs/components/Switch/styles.js +99 -0
- package/dist/cjs/components/Tags/Tags.d.ts +15 -0
- package/dist/cjs/components/Tags/Tags.js +17 -0
- package/dist/cjs/components/Tags/styles.d.ts +19 -0
- package/dist/cjs/components/Tags/styles.js +119 -0
- package/dist/cjs/components/Text/Text.d.ts +11 -0
- package/dist/cjs/components/Text/Text.js +13 -0
- package/dist/cjs/components/Text/styles.d.ts +8 -0
- package/dist/cjs/components/Text/styles.js +98 -0
- package/dist/cjs/components/Text/types.d.ts +8 -0
- package/dist/cjs/components/Text/types.js +2 -0
- package/dist/cjs/components/TextArea/TextArea.d.ts +19 -0
- package/dist/cjs/components/TextArea/TextArea.js +84 -0
- package/dist/cjs/components/TextArea/styles.d.ts +22 -0
- package/dist/cjs/components/TextArea/styles.js +81 -0
- package/dist/cjs/components/TextContent/TextContent.d.ts +28 -0
- package/dist/cjs/components/TextContent/TextContent.js +46 -0
- package/dist/cjs/components/TextContent/styles.d.ts +24 -0
- package/dist/cjs/components/TextContent/styles.js +75 -0
- package/dist/cjs/components/TextInput/TextInput.d.ts +8 -0
- package/dist/cjs/components/TextInput/TextInput.js +49 -0
- package/dist/cjs/components/TextInput/styles.d.ts +18 -0
- package/dist/cjs/components/TextInput/styles.js +150 -0
- package/dist/cjs/components/Toast/Toast.d.ts +5 -0
- package/dist/cjs/components/Toast/Toast.js +90 -0
- package/dist/cjs/components/Toast/styles.d.ts +27 -0
- package/dist/cjs/components/Toast/styles.js +164 -0
- package/dist/cjs/components/Tooltip/Tooltip.d.ts +9 -0
- package/dist/cjs/components/Tooltip/Tooltip.js +55 -0
- package/dist/cjs/components/Tooltip/styles.d.ts +2 -0
- package/dist/cjs/components/Tooltip/styles.js +24 -0
- package/dist/cjs/components/Widget/AttachmentWidget.d.ts +18 -0
- package/dist/cjs/components/Widget/AttachmentWidget.js +124 -0
- package/dist/cjs/components/Widget/CallWidget.d.ts +11 -0
- package/dist/cjs/components/Widget/CallWidget.js +84 -0
- package/dist/cjs/components/Widget/Widget.d.ts +26 -0
- package/dist/cjs/components/Widget/Widget.js +87 -0
- package/dist/cjs/globalStyles.d.ts +5 -0
- package/dist/cjs/globalStyles.js +66 -0
- package/dist/cjs/hooks/useAutosizeTextArea.d.ts +2 -0
- package/dist/cjs/hooks/useAutosizeTextArea.js +14 -0
- package/dist/cjs/index.d.ts +51 -0
- package/dist/cjs/index.js +139 -0
- package/dist/cjs/storybook/BreakpointDocumentation.d.ts +3 -0
- package/dist/cjs/storybook/BreakpointDocumentation.js +139 -0
- package/dist/cjs/storybook/Components.d.ts +2 -0
- package/dist/cjs/storybook/Components.js +30 -0
- package/dist/cjs/storybook/Documentation.d.ts +5 -0
- package/dist/cjs/storybook/Documentation.js +67 -0
- package/dist/cjs/storybook/RadiusDocumentation.d.ts +3 -0
- package/dist/cjs/storybook/RadiusDocumentation.js +150 -0
- package/dist/cjs/storybook/SpacingDocumentation.d.ts +3 -0
- package/dist/cjs/storybook/SpacingDocumentation.js +146 -0
- package/dist/cjs/theme/index.d.ts +17 -0
- package/dist/cjs/theme/index.js +90 -0
- package/dist/cjs/utils/animations.d.ts +12 -0
- package/dist/cjs/utils/animations.js +120 -0
- package/dist/cjs/utils/createReactSvg.d.ts +3 -0
- package/dist/cjs/utils/createReactSvg.js +77 -0
- package/dist/cjs/utils/parser.d.ts +12 -0
- package/dist/cjs/utils/parser.js +200 -0
- package/dist/cjs/utils/replaceUrlsWithAnchors.d.ts +6 -0
- package/dist/cjs/utils/replaceUrlsWithAnchors.js +32 -0
- package/dist/cjs/utils/status.d.ts +6 -0
- package/dist/cjs/utils/status.js +54 -0
- package/dist/cjs/utils/styles.d.ts +1 -0
- package/dist/cjs/utils/styles.js +5 -0
- package/dist/cjs/utils/types.d.ts +1 -0
- package/dist/cjs/utils/types.js +2 -0
- package/dist/esm/components/Accordion/Accordion.d.ts +15 -0
- package/dist/esm/components/Accordion/Accordion.js +14 -0
- package/dist/esm/components/Accordion/styles.d.ts +18 -0
- package/dist/esm/components/Accordion/styles.js +61 -0
- package/dist/esm/components/Button/Button.d.ts +9 -0
- package/dist/esm/components/Button/Button.js +10 -0
- package/dist/esm/components/Button/styles.d.ts +16 -0
- package/dist/esm/components/Button/styles.js +277 -0
- package/dist/esm/components/Card/Card.d.ts +11 -0
- package/dist/esm/components/Card/Card.js +66 -0
- package/dist/esm/components/Checkbox/Checkbox.d.ts +15 -0
- package/dist/esm/components/Checkbox/Checkbox.js +17 -0
- package/dist/esm/components/Checkbox/styles.d.ts +27 -0
- package/dist/esm/components/Checkbox/styles.js +69 -0
- package/dist/esm/components/CheckboxGrid/CheckboxGrid.d.ts +22 -0
- package/dist/esm/components/CheckboxGrid/CheckboxGrid.js +35 -0
- package/dist/esm/components/CheckboxGrid/styles.d.ts +64 -0
- package/dist/esm/components/CheckboxGrid/styles.js +98 -0
- package/dist/esm/components/Dropdown/Dropdown.d.ts +25 -0
- package/dist/esm/components/Dropdown/Dropdown.js +32 -0
- package/dist/esm/components/Dropdown/styles.d.ts +15 -0
- package/dist/esm/components/Dropdown/styles.js +106 -0
- package/dist/esm/components/Icon/Icon.d.ts +10 -0
- package/dist/esm/components/Icon/Icon.js +42 -0
- package/dist/esm/components/Icon/IconGradient.d.ts +4 -0
- package/dist/esm/components/Icon/IconGradient.js +24 -0
- package/dist/esm/components/Icon/createIconComponent.d.ts +10 -0
- package/dist/esm/components/Icon/createIconComponent.js +24 -0
- package/dist/esm/components/Icon/getDefaultIconProps.d.ts +2 -0
- package/dist/esm/components/Icon/getDefaultIconProps.js +11 -0
- package/dist/esm/components/Icon/index.d.ts +553 -0
- package/dist/esm/components/Icon/index.js +338 -0
- package/dist/esm/components/Illustrations/Illustration.d.ts +3 -0
- package/dist/esm/components/Illustrations/Illustration.js +5 -0
- package/dist/esm/components/Illustrations/createIllustrationComponent.d.ts +10 -0
- package/dist/esm/components/Illustrations/createIllustrationComponent.js +16 -0
- package/dist/esm/components/Illustrations/index.d.ts +152 -0
- package/dist/esm/components/Illustrations/index.js +78 -0
- package/dist/esm/components/InputError/InputError.d.ts +15 -0
- package/dist/esm/components/InputError/InputError.js +40 -0
- package/dist/esm/components/Label/Label.d.ts +10 -0
- package/dist/esm/components/Label/Label.js +30 -0
- package/dist/esm/components/Link/Link.d.ts +6 -0
- package/dist/esm/components/Link/Link.js +13 -0
- package/dist/esm/components/Link/styles.d.ts +22 -0
- package/dist/esm/components/Link/styles.js +63 -0
- package/dist/esm/components/Loading/Loading.d.ts +10 -0
- package/dist/esm/components/Loading/Loading.js +21 -0
- package/dist/esm/components/Loading/LoadingLogo.d.ts +8 -0
- package/dist/esm/components/Loading/LoadingLogo.js +26 -0
- package/dist/esm/components/Loading/styles.d.ts +15 -0
- package/dist/esm/components/Loading/styles.js +71 -0
- package/dist/esm/components/Modal/Modal.d.ts +20 -0
- package/dist/esm/components/Modal/Modal.js +59 -0
- package/dist/esm/components/Modal/styles.d.ts +4 -0
- package/dist/esm/components/Modal/styles.js +63 -0
- package/dist/esm/components/MultiCheckbox/MultiCheckbox.d.ts +15 -0
- package/dist/esm/components/MultiCheckbox/MultiCheckbox.js +23 -0
- package/dist/esm/components/MultiCheckbox/styles.d.ts +1 -0
- package/dist/esm/components/MultiCheckbox/styles.js +9 -0
- package/dist/esm/components/MultiDropdown/MultiDropdown.d.ts +28 -0
- package/dist/esm/components/MultiDropdown/MultiDropdown.js +86 -0
- package/dist/esm/components/MultiDropdown/styles.d.ts +7 -0
- package/dist/esm/components/MultiDropdown/styles.js +38 -0
- package/dist/esm/components/MultiSelection/MultiSelection.d.ts +16 -0
- package/dist/esm/components/MultiSelection/MultiSelection.js +24 -0
- package/dist/esm/components/MultiSelection/styles.d.ts +9 -0
- package/dist/esm/components/MultiSelection/styles.js +63 -0
- package/dist/esm/components/NavigationMenu/NavigationMenu.d.ts +35 -0
- package/dist/esm/components/NavigationMenu/NavigationMenu.js +40 -0
- package/dist/esm/components/NavigationMenu/styles.d.ts +81 -0
- package/dist/esm/components/NavigationMenu/styles.js +257 -0
- package/dist/esm/components/Popover/InfoPopover.d.ts +8 -0
- package/dist/esm/components/Popover/InfoPopover.js +8 -0
- package/dist/esm/components/Popover/Popover.d.ts +16 -0
- package/dist/esm/components/Popover/Popover.js +22 -0
- package/dist/esm/components/Popover/styles.d.ts +14 -0
- package/dist/esm/components/Popover/styles.js +80 -0
- package/dist/esm/components/ProgressBar/ProgressBar.d.ts +8 -0
- package/dist/esm/components/ProgressBar/ProgressBar.js +47 -0
- package/dist/esm/components/RadioGroup/RadioGroup.d.ts +16 -0
- package/dist/esm/components/RadioGroup/RadioGroup.js +19 -0
- package/dist/esm/components/RadioGroup/styles.d.ts +12 -0
- package/dist/esm/components/RadioGroup/styles.js +90 -0
- package/dist/esm/components/Separator/Separator.d.ts +11 -0
- package/dist/esm/components/Separator/Separator.js +23 -0
- package/dist/esm/components/Separator/styles.d.ts +6 -0
- package/dist/esm/components/Separator/styles.js +51 -0
- package/dist/esm/components/Slider/Slider.d.ts +12 -0
- package/dist/esm/components/Slider/Slider.js +12 -0
- package/dist/esm/components/Slider/styles.d.ts +6 -0
- package/dist/esm/components/Slider/styles.js +51 -0
- package/dist/esm/components/StarRating/StarRating.d.ts +22 -0
- package/dist/esm/components/StarRating/StarRating.js +107 -0
- package/dist/esm/components/StarRating/styles.d.ts +35 -0
- package/dist/esm/components/StarRating/styles.js +65 -0
- package/dist/esm/components/StatusMessage/StatusMessage.d.ts +4 -0
- package/dist/esm/components/StatusMessage/StatusMessage.js +74 -0
- package/dist/esm/components/Switch/Switch.d.ts +15 -0
- package/dist/esm/components/Switch/Switch.js +14 -0
- package/dist/esm/components/Switch/styles.d.ts +14 -0
- package/dist/esm/components/Switch/styles.js +63 -0
- package/dist/esm/components/Tags/Tags.d.ts +15 -0
- package/dist/esm/components/Tags/Tags.js +10 -0
- package/dist/esm/components/Tags/styles.d.ts +19 -0
- package/dist/esm/components/Tags/styles.js +80 -0
- package/dist/esm/components/Text/Text.d.ts +11 -0
- package/dist/esm/components/Text/Text.js +8 -0
- package/dist/esm/components/Text/styles.d.ts +8 -0
- package/dist/esm/components/Text/styles.js +62 -0
- package/dist/esm/components/Text/types.d.ts +8 -0
- package/dist/esm/components/Text/types.js +1 -0
- package/dist/esm/components/TextArea/TextArea.d.ts +19 -0
- package/dist/esm/components/TextArea/TextArea.js +45 -0
- package/dist/esm/components/TextArea/styles.d.ts +22 -0
- package/dist/esm/components/TextArea/styles.js +42 -0
- package/dist/esm/components/TextContent/TextContent.d.ts +28 -0
- package/dist/esm/components/TextContent/TextContent.js +40 -0
- package/dist/esm/components/TextContent/styles.d.ts +24 -0
- package/dist/esm/components/TextContent/styles.js +36 -0
- package/dist/esm/components/TextInput/TextInput.d.ts +8 -0
- package/dist/esm/components/TextInput/TextInput.js +42 -0
- package/dist/esm/components/TextInput/styles.d.ts +18 -0
- package/dist/esm/components/TextInput/styles.js +111 -0
- package/dist/esm/components/Toast/Toast.d.ts +5 -0
- package/dist/esm/components/Toast/Toast.js +54 -0
- package/dist/esm/components/Toast/styles.d.ts +27 -0
- package/dist/esm/components/Toast/styles.js +125 -0
- package/dist/esm/components/Tooltip/Tooltip.d.ts +9 -0
- package/dist/esm/components/Tooltip/Tooltip.js +16 -0
- package/dist/esm/components/Tooltip/styles.d.ts +2 -0
- package/dist/esm/components/Tooltip/styles.js +18 -0
- package/dist/esm/components/Widget/AttachmentWidget.d.ts +18 -0
- package/dist/esm/components/Widget/AttachmentWidget.js +85 -0
- package/dist/esm/components/Widget/CallWidget.d.ts +11 -0
- package/dist/esm/components/Widget/CallWidget.js +46 -0
- package/dist/esm/components/Widget/Widget.d.ts +26 -0
- package/dist/esm/components/Widget/Widget.js +46 -0
- package/dist/esm/globalStyles.d.ts +5 -0
- package/dist/esm/globalStyles.js +64 -0
- package/dist/esm/hooks/useAutosizeTextArea.d.ts +2 -0
- package/dist/esm/hooks/useAutosizeTextArea.js +12 -0
- package/dist/esm/index.d.ts +51 -0
- package/dist/esm/index.js +45 -0
- package/dist/esm/storybook/BreakpointDocumentation.d.ts +3 -0
- package/dist/esm/storybook/BreakpointDocumentation.js +101 -0
- package/dist/esm/storybook/Components.d.ts +2 -0
- package/dist/esm/storybook/Components.js +23 -0
- package/dist/esm/storybook/Documentation.d.ts +5 -0
- package/dist/esm/storybook/Documentation.js +62 -0
- package/dist/esm/storybook/RadiusDocumentation.d.ts +3 -0
- package/dist/esm/storybook/RadiusDocumentation.js +112 -0
- package/dist/esm/storybook/SpacingDocumentation.d.ts +3 -0
- package/dist/esm/storybook/SpacingDocumentation.js +108 -0
- package/dist/esm/theme/index.d.ts +17 -0
- package/dist/esm/theme/index.js +53 -0
- package/dist/esm/utils/animations.d.ts +12 -0
- package/dist/esm/utils/animations.js +117 -0
- package/dist/esm/utils/createReactSvg.d.ts +3 -0
- package/dist/esm/utils/createReactSvg.js +70 -0
- package/dist/esm/utils/parser.d.ts +12 -0
- package/dist/esm/utils/parser.js +195 -0
- package/dist/esm/utils/replaceUrlsWithAnchors.d.ts +6 -0
- package/dist/esm/utils/replaceUrlsWithAnchors.js +29 -0
- package/dist/esm/utils/status.d.ts +6 -0
- package/dist/esm/utils/status.js +49 -0
- package/dist/esm/utils/styles.d.ts +1 -0
- package/dist/esm/utils/styles.js +1 -0
- package/dist/esm/utils/types.d.ts +1 -0
- package/dist/esm/utils/types.js +1 -0
- package/jest.config.ts +30 -0
- package/package.json +98 -0
- package/src/components/Accordion/Accordion.stories.tsx +66 -0
- package/src/components/Accordion/Accordion.tsx +59 -0
- package/src/components/Accordion/styles.tsx +68 -0
- package/src/components/Button/Button.stories.tsx +119 -0
- package/src/components/Button/Button.tsx +59 -0
- package/src/components/Button/styles.tsx +313 -0
- package/src/components/Card/Card.stories.tsx +22 -0
- package/src/components/Card/Card.tsx +125 -0
- package/src/components/Checkbox/Checkbox.stories.tsx +11 -0
- package/src/components/Checkbox/Checkbox.tsx +112 -0
- package/src/components/Checkbox/styles.tsx +96 -0
- package/src/components/CheckboxGrid/CheckboxGrid.stories.tsx +49 -0
- package/src/components/CheckboxGrid/CheckboxGrid.tsx +126 -0
- package/src/components/CheckboxGrid/styles.tsx +122 -0
- package/src/components/Dropdown/Dropdown.stories.tsx +59 -0
- package/src/components/Dropdown/Dropdown.tsx +128 -0
- package/src/components/Dropdown/styles.tsx +120 -0
- package/src/components/Icon/Icon.stories.tsx +44 -0
- package/src/components/Icon/Icon.test.tsx +20 -0
- package/src/components/Icon/Icon.tsx +88 -0
- package/src/components/Icon/IconDocs.mdx +22 -0
- package/src/components/Icon/IconGradient.tsx +70 -0
- package/src/components/Icon/createIconComponent.tsx +63 -0
- package/src/components/Icon/getDefaultIconProps.ts +23 -0
- package/src/components/Icon/index.ts +499 -0
- package/src/components/Illustrations/Illustration.tsx +18 -0
- package/src/components/Illustrations/Illustrations.stories.tsx +53 -0
- package/src/components/Illustrations/createIllustrationComponent.tsx +39 -0
- package/src/components/Illustrations/index.ts +118 -0
- package/src/components/InputError/InputError.tsx +86 -0
- package/src/components/Label/Label.stories.tsx +18 -0
- package/src/components/Label/Label.tsx +76 -0
- package/src/components/Link/Link.stories.tsx +14 -0
- package/src/components/Link/Link.test.tsx +27 -0
- package/src/components/Link/Link.tsx +68 -0
- package/src/components/Link/styles.tsx +86 -0
- package/src/components/Loading/Loading.stories.tsx +26 -0
- package/src/components/Loading/Loading.tsx +65 -0
- package/src/components/Loading/LoadingLogo.tsx +141 -0
- package/src/components/Loading/styles.ts +95 -0
- package/src/components/Modal/Modal.stories.tsx +52 -0
- package/src/components/Modal/Modal.test.tsx +98 -0
- package/src/components/Modal/Modal.tsx +115 -0
- package/src/components/Modal/ModalDocs.mdx +21 -0
- package/src/components/Modal/styles.tsx +67 -0
- package/src/components/MultiCheckbox/MultiCheckbox.stories.tsx +24 -0
- package/src/components/MultiCheckbox/MultiCheckbox.tsx +73 -0
- package/src/components/MultiCheckbox/styles.tsx +10 -0
- package/src/components/MultiDropdown/MultiDropdown.stories.tsx +105 -0
- package/src/components/MultiDropdown/MultiDropdown.tsx +247 -0
- package/src/components/MultiDropdown/styles.tsx +45 -0
- package/src/components/MultiSelection/MultiSelection.stories.tsx +19 -0
- package/src/components/MultiSelection/MultiSelection.tsx +74 -0
- package/src/components/MultiSelection/styles.tsx +78 -0
- package/src/components/NavigationMenu/NavigationMenu.stories.tsx +108 -0
- package/src/components/NavigationMenu/NavigationMenu.tsx +151 -0
- package/src/components/NavigationMenu/styles.tsx +293 -0
- package/src/components/Popover/InfoPopover.tsx +40 -0
- package/src/components/Popover/Popover.stories.tsx +85 -0
- package/src/components/Popover/Popover.tsx +68 -0
- package/src/components/Popover/styles.tsx +109 -0
- package/src/components/ProgressBar/ProgressBar.stories.tsx +15 -0
- package/src/components/ProgressBar/ProgressBar.tsx +76 -0
- package/src/components/RadioGroup/RadioGroup.stories.tsx +42 -0
- package/src/components/RadioGroup/RadioGroup.tsx +91 -0
- package/src/components/RadioGroup/styles.tsx +100 -0
- package/src/components/Separator/Separator.stories.tsx +27 -0
- package/src/components/Separator/Separator.tsx +52 -0
- package/src/components/Separator/styles.tsx +57 -0
- package/src/components/Slider/Slider.stories.tsx +27 -0
- package/src/components/Slider/Slider.tsx +61 -0
- package/src/components/Slider/styles.tsx +57 -0
- package/src/components/StarRating/StarRating.stories.tsx +20 -0
- package/src/components/StarRating/StarRating.tsx +212 -0
- package/src/components/StarRating/styles.ts +76 -0
- package/src/components/StatusMessage/StatusMessage.stories.tsx +44 -0
- package/src/components/StatusMessage/StatusMessage.tsx +110 -0
- package/src/components/Switch/Switch.stories.tsx +12 -0
- package/src/components/Switch/Switch.tsx +83 -0
- package/src/components/Switch/styles.tsx +75 -0
- package/src/components/Tags/Tags.stories.tsx +44 -0
- package/src/components/Tags/Tags.tsx +68 -0
- package/src/components/Tags/styles.tsx +89 -0
- package/src/components/Text/Text.stories.tsx +288 -0
- package/src/components/Text/Text.tsx +58 -0
- package/src/components/Text/styles.tsx +75 -0
- package/src/components/Text/types.ts +9 -0
- package/src/components/Text/typography.mdx +91 -0
- package/src/components/TextArea/TextArea.stories.tsx +26 -0
- package/src/components/TextArea/TextArea.tsx +117 -0
- package/src/components/TextArea/styles.tsx +58 -0
- package/src/components/TextContent/TextContent.stories.tsx +54 -0
- package/src/components/TextContent/TextContent.tsx +154 -0
- package/src/components/TextContent/styles.tsx +47 -0
- package/src/components/TextInput/TextInput.stories.tsx +43 -0
- package/src/components/TextInput/TextInput.tsx +146 -0
- package/src/components/TextInput/styles.tsx +129 -0
- package/src/components/Toast/Toast.stories.tsx +55 -0
- package/src/components/Toast/Toast.tsx +139 -0
- package/src/components/Toast/styles.tsx +142 -0
- package/src/components/Tooltip/Tooltip.stories.tsx +31 -0
- package/src/components/Tooltip/Tooltip.tsx +48 -0
- package/src/components/Tooltip/styles.tsx +20 -0
- package/src/components/Widget/AttachmentWidget.stories.tsx +14 -0
- package/src/components/Widget/AttachmentWidget.tsx +142 -0
- package/src/components/Widget/CallWidget.stories.tsx +38 -0
- package/src/components/Widget/CallWidget.tsx +114 -0
- package/src/components/Widget/Widget.stories.tsx +10 -0
- package/src/components/Widget/Widget.tsx +104 -0
- package/src/globalStyles.ts +68 -0
- package/src/hooks/useAutosizeTextArea.tsx +19 -0
- package/src/index.ts +107 -0
- package/src/setupTests.ts +8 -0
- package/src/storybook/BreakpointDocumentation.tsx +126 -0
- package/src/storybook/Components.tsx +29 -0
- package/src/storybook/Documentation.tsx +86 -0
- package/src/storybook/RadiusDocumentation.tsx +133 -0
- package/src/storybook/SpacingDocumentation.tsx +131 -0
- package/src/storybook/breakpoints.mdx +83 -0
- package/src/storybook/colors.mdx +118 -0
- package/src/storybook/radius.mdx +48 -0
- package/src/storybook/spacing.mdx +45 -0
- package/src/testUtils.tsx +49 -0
- package/src/theme/index.tsx +98 -0
- package/src/utils/animations.ts +129 -0
- package/src/utils/createReactSvg.tsx +140 -0
- package/src/utils/parser.mdx +41 -0
- package/src/utils/parser.test.tsx +542 -0
- package/src/utils/parser.tsx +333 -0
- package/src/utils/replaceUrlsWithAnchors.test.ts +42 -0
- package/src/utils/replaceUrlsWithAnchors.ts +32 -0
- package/src/utils/status.tsx +85 -0
- package/src/utils/styles.ts +1 -0
- package/src/utils/types.ts +1 -0
- package/tsconfig.json +34 -0
- package/tsconfig.test.json +16 -0
|
@@ -0,0 +1,553 @@
|
|
|
1
|
+
export declare const AccountIcon: {
|
|
2
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
3
|
+
style?: import("react").CSSProperties;
|
|
4
|
+
color?: string;
|
|
5
|
+
}): import("react").JSX.Element;
|
|
6
|
+
displayName: string;
|
|
7
|
+
};
|
|
8
|
+
export declare const AddToChatIcon: {
|
|
9
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
10
|
+
style?: import("react").CSSProperties;
|
|
11
|
+
color?: string;
|
|
12
|
+
}): import("react").JSX.Element;
|
|
13
|
+
displayName: string;
|
|
14
|
+
};
|
|
15
|
+
export declare const AppointmentIcon: {
|
|
16
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
17
|
+
style?: import("react").CSSProperties;
|
|
18
|
+
color?: string;
|
|
19
|
+
}): import("react").JSX.Element;
|
|
20
|
+
displayName: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const ArchiveIcon: {
|
|
23
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
24
|
+
style?: import("react").CSSProperties;
|
|
25
|
+
color?: string;
|
|
26
|
+
}): import("react").JSX.Element;
|
|
27
|
+
displayName: string;
|
|
28
|
+
};
|
|
29
|
+
export declare const ArrowLeftIcon: {
|
|
30
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
31
|
+
style?: import("react").CSSProperties;
|
|
32
|
+
color?: string;
|
|
33
|
+
}): import("react").JSX.Element;
|
|
34
|
+
displayName: string;
|
|
35
|
+
};
|
|
36
|
+
export declare const AttachmentIcon: {
|
|
37
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
38
|
+
style?: import("react").CSSProperties;
|
|
39
|
+
color?: string;
|
|
40
|
+
}): import("react").JSX.Element;
|
|
41
|
+
displayName: string;
|
|
42
|
+
};
|
|
43
|
+
export declare const BellIcon: {
|
|
44
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
45
|
+
style?: import("react").CSSProperties;
|
|
46
|
+
color?: string;
|
|
47
|
+
}): import("react").JSX.Element;
|
|
48
|
+
displayName: string;
|
|
49
|
+
};
|
|
50
|
+
export declare const CalendarIcon: {
|
|
51
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
52
|
+
style?: import("react").CSSProperties;
|
|
53
|
+
color?: string;
|
|
54
|
+
}): import("react").JSX.Element;
|
|
55
|
+
displayName: string;
|
|
56
|
+
};
|
|
57
|
+
export declare const CalendarAddIcon: {
|
|
58
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
59
|
+
style?: import("react").CSSProperties;
|
|
60
|
+
color?: string;
|
|
61
|
+
}): import("react").JSX.Element;
|
|
62
|
+
displayName: string;
|
|
63
|
+
};
|
|
64
|
+
export declare const CallIncomingIcon: {
|
|
65
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
66
|
+
style?: import("react").CSSProperties;
|
|
67
|
+
color?: string;
|
|
68
|
+
}): import("react").JSX.Element;
|
|
69
|
+
displayName: string;
|
|
70
|
+
};
|
|
71
|
+
export declare const CallOutgoingIcon: {
|
|
72
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
73
|
+
style?: import("react").CSSProperties;
|
|
74
|
+
color?: string;
|
|
75
|
+
}): import("react").JSX.Element;
|
|
76
|
+
displayName: string;
|
|
77
|
+
};
|
|
78
|
+
export declare const CameraIcon: {
|
|
79
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
80
|
+
style?: import("react").CSSProperties;
|
|
81
|
+
color?: string;
|
|
82
|
+
}): import("react").JSX.Element;
|
|
83
|
+
displayName: string;
|
|
84
|
+
};
|
|
85
|
+
export declare const CheckIcon: {
|
|
86
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
87
|
+
style?: import("react").CSSProperties;
|
|
88
|
+
color?: string;
|
|
89
|
+
}): import("react").JSX.Element;
|
|
90
|
+
displayName: string;
|
|
91
|
+
};
|
|
92
|
+
export declare const CheckInChatIcon: {
|
|
93
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
94
|
+
style?: import("react").CSSProperties;
|
|
95
|
+
color?: string;
|
|
96
|
+
}): import("react").JSX.Element;
|
|
97
|
+
displayName: string;
|
|
98
|
+
};
|
|
99
|
+
export declare const ChevronDownIcon: {
|
|
100
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
101
|
+
style?: import("react").CSSProperties;
|
|
102
|
+
color?: string;
|
|
103
|
+
}): import("react").JSX.Element;
|
|
104
|
+
displayName: string;
|
|
105
|
+
};
|
|
106
|
+
export declare const ChevronLeftIcon: {
|
|
107
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
108
|
+
style?: import("react").CSSProperties;
|
|
109
|
+
color?: string;
|
|
110
|
+
}): import("react").JSX.Element;
|
|
111
|
+
displayName: string;
|
|
112
|
+
};
|
|
113
|
+
export declare const ChevronRightIcon: {
|
|
114
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
115
|
+
style?: import("react").CSSProperties;
|
|
116
|
+
color?: string;
|
|
117
|
+
}): import("react").JSX.Element;
|
|
118
|
+
displayName: string;
|
|
119
|
+
};
|
|
120
|
+
export declare const ClockIcon: {
|
|
121
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
122
|
+
style?: import("react").CSSProperties;
|
|
123
|
+
color?: string;
|
|
124
|
+
}): import("react").JSX.Element;
|
|
125
|
+
displayName: string;
|
|
126
|
+
};
|
|
127
|
+
export declare const ClockBackIcon: {
|
|
128
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
129
|
+
style?: import("react").CSSProperties;
|
|
130
|
+
color?: string;
|
|
131
|
+
}): import("react").JSX.Element;
|
|
132
|
+
displayName: string;
|
|
133
|
+
};
|
|
134
|
+
export declare const ClockDashedIcon: {
|
|
135
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
136
|
+
style?: import("react").CSSProperties;
|
|
137
|
+
color?: string;
|
|
138
|
+
}): import("react").JSX.Element;
|
|
139
|
+
displayName: string;
|
|
140
|
+
};
|
|
141
|
+
export declare const CloseIcon: {
|
|
142
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
143
|
+
style?: import("react").CSSProperties;
|
|
144
|
+
color?: string;
|
|
145
|
+
}): import("react").JSX.Element;
|
|
146
|
+
displayName: string;
|
|
147
|
+
};
|
|
148
|
+
export declare const CopyIcon: {
|
|
149
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
150
|
+
style?: import("react").CSSProperties;
|
|
151
|
+
color?: string;
|
|
152
|
+
}): import("react").JSX.Element;
|
|
153
|
+
displayName: string;
|
|
154
|
+
};
|
|
155
|
+
export declare const DashboardIcon: {
|
|
156
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
157
|
+
style?: import("react").CSSProperties;
|
|
158
|
+
color?: string;
|
|
159
|
+
}): import("react").JSX.Element;
|
|
160
|
+
displayName: string;
|
|
161
|
+
};
|
|
162
|
+
export declare const DotsIcon: {
|
|
163
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
164
|
+
style?: import("react").CSSProperties;
|
|
165
|
+
color?: string;
|
|
166
|
+
}): import("react").JSX.Element;
|
|
167
|
+
displayName: string;
|
|
168
|
+
};
|
|
169
|
+
export declare const DownloadIcon: {
|
|
170
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
171
|
+
style?: import("react").CSSProperties;
|
|
172
|
+
color?: string;
|
|
173
|
+
}): import("react").JSX.Element;
|
|
174
|
+
displayName: string;
|
|
175
|
+
};
|
|
176
|
+
export declare const ExclamationIcon: {
|
|
177
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
178
|
+
style?: import("react").CSSProperties;
|
|
179
|
+
color?: string;
|
|
180
|
+
}): import("react").JSX.Element;
|
|
181
|
+
displayName: string;
|
|
182
|
+
};
|
|
183
|
+
export declare const EyeClosedIcon: {
|
|
184
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
185
|
+
style?: import("react").CSSProperties;
|
|
186
|
+
color?: string;
|
|
187
|
+
}): import("react").JSX.Element;
|
|
188
|
+
displayName: string;
|
|
189
|
+
};
|
|
190
|
+
export declare const EyeOpenIcon: {
|
|
191
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
192
|
+
style?: import("react").CSSProperties;
|
|
193
|
+
color?: string;
|
|
194
|
+
}): import("react").JSX.Element;
|
|
195
|
+
displayName: string;
|
|
196
|
+
};
|
|
197
|
+
export declare const FacebookIcon: {
|
|
198
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
199
|
+
style?: import("react").CSSProperties;
|
|
200
|
+
color?: string;
|
|
201
|
+
}): import("react").JSX.Element;
|
|
202
|
+
displayName: string;
|
|
203
|
+
};
|
|
204
|
+
export declare const FullScreenExitIcon: {
|
|
205
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
206
|
+
style?: import("react").CSSProperties;
|
|
207
|
+
color?: string;
|
|
208
|
+
}): import("react").JSX.Element;
|
|
209
|
+
displayName: string;
|
|
210
|
+
};
|
|
211
|
+
export declare const FullScreenIcon: {
|
|
212
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
213
|
+
style?: import("react").CSSProperties;
|
|
214
|
+
color?: string;
|
|
215
|
+
}): import("react").JSX.Element;
|
|
216
|
+
displayName: string;
|
|
217
|
+
};
|
|
218
|
+
export declare const GithubIcon: {
|
|
219
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
220
|
+
style?: import("react").CSSProperties;
|
|
221
|
+
color?: string;
|
|
222
|
+
}): import("react").JSX.Element;
|
|
223
|
+
displayName: string;
|
|
224
|
+
};
|
|
225
|
+
export declare const GroupChatIcon: {
|
|
226
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
227
|
+
style?: import("react").CSSProperties;
|
|
228
|
+
color?: string;
|
|
229
|
+
}): import("react").JSX.Element;
|
|
230
|
+
displayName: string;
|
|
231
|
+
};
|
|
232
|
+
export declare const HeartIcon: {
|
|
233
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
234
|
+
style?: import("react").CSSProperties;
|
|
235
|
+
color?: string;
|
|
236
|
+
}): import("react").JSX.Element;
|
|
237
|
+
displayName: string;
|
|
238
|
+
};
|
|
239
|
+
export declare const ImageIcon: {
|
|
240
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
241
|
+
style?: import("react").CSSProperties;
|
|
242
|
+
color?: string;
|
|
243
|
+
}): import("react").JSX.Element;
|
|
244
|
+
displayName: string;
|
|
245
|
+
};
|
|
246
|
+
export declare const ImageSearchIcon: {
|
|
247
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
248
|
+
style?: import("react").CSSProperties;
|
|
249
|
+
color?: string;
|
|
250
|
+
}): import("react").JSX.Element;
|
|
251
|
+
displayName: string;
|
|
252
|
+
};
|
|
253
|
+
export declare const InclusiveIcon: {
|
|
254
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
255
|
+
style?: import("react").CSSProperties;
|
|
256
|
+
color?: string;
|
|
257
|
+
}): import("react").JSX.Element;
|
|
258
|
+
displayName: string;
|
|
259
|
+
};
|
|
260
|
+
export declare const InfoIcon: {
|
|
261
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
262
|
+
style?: import("react").CSSProperties;
|
|
263
|
+
color?: string;
|
|
264
|
+
}): import("react").JSX.Element;
|
|
265
|
+
displayName: string;
|
|
266
|
+
};
|
|
267
|
+
export declare const InstagramIcon: {
|
|
268
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
269
|
+
style?: import("react").CSSProperties;
|
|
270
|
+
color?: string;
|
|
271
|
+
}): import("react").JSX.Element;
|
|
272
|
+
displayName: string;
|
|
273
|
+
};
|
|
274
|
+
export declare const LinkedinIcon: {
|
|
275
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
276
|
+
style?: import("react").CSSProperties;
|
|
277
|
+
color?: string;
|
|
278
|
+
}): import("react").JSX.Element;
|
|
279
|
+
displayName: string;
|
|
280
|
+
};
|
|
281
|
+
export declare const Logo: {
|
|
282
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
283
|
+
style?: import("react").CSSProperties;
|
|
284
|
+
color?: string;
|
|
285
|
+
}): import("react").JSX.Element;
|
|
286
|
+
displayName: string;
|
|
287
|
+
};
|
|
288
|
+
export declare const LogoutIcon: {
|
|
289
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
290
|
+
style?: import("react").CSSProperties;
|
|
291
|
+
color?: string;
|
|
292
|
+
}): import("react").JSX.Element;
|
|
293
|
+
displayName: string;
|
|
294
|
+
};
|
|
295
|
+
export declare const MailIcon: {
|
|
296
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
297
|
+
style?: import("react").CSSProperties;
|
|
298
|
+
color?: string;
|
|
299
|
+
}): import("react").JSX.Element;
|
|
300
|
+
displayName: string;
|
|
301
|
+
};
|
|
302
|
+
export declare const MenuIcon: {
|
|
303
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
304
|
+
style?: import("react").CSSProperties;
|
|
305
|
+
color?: string;
|
|
306
|
+
}): import("react").JSX.Element;
|
|
307
|
+
displayName: string;
|
|
308
|
+
};
|
|
309
|
+
export declare const MessageIcon: {
|
|
310
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
311
|
+
style?: import("react").CSSProperties;
|
|
312
|
+
color?: string;
|
|
313
|
+
}): import("react").JSX.Element;
|
|
314
|
+
displayName: string;
|
|
315
|
+
};
|
|
316
|
+
export declare const MessageWithQuestionIcon: {
|
|
317
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
318
|
+
style?: import("react").CSSProperties;
|
|
319
|
+
color?: string;
|
|
320
|
+
}): import("react").JSX.Element;
|
|
321
|
+
displayName: string;
|
|
322
|
+
};
|
|
323
|
+
export declare const MicIcon: {
|
|
324
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
325
|
+
style?: import("react").CSSProperties;
|
|
326
|
+
color?: string;
|
|
327
|
+
}): import("react").JSX.Element;
|
|
328
|
+
displayName: string;
|
|
329
|
+
};
|
|
330
|
+
export declare const MoonIcon: {
|
|
331
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
332
|
+
style?: import("react").CSSProperties;
|
|
333
|
+
color?: string;
|
|
334
|
+
}): import("react").JSX.Element;
|
|
335
|
+
displayName: string;
|
|
336
|
+
};
|
|
337
|
+
export declare const MobileIcon: {
|
|
338
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
339
|
+
style?: import("react").CSSProperties;
|
|
340
|
+
color?: string;
|
|
341
|
+
}): import("react").JSX.Element;
|
|
342
|
+
displayName: string;
|
|
343
|
+
};
|
|
344
|
+
export declare const NotesIcon: {
|
|
345
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
346
|
+
style?: import("react").CSSProperties;
|
|
347
|
+
color?: string;
|
|
348
|
+
}): import("react").JSX.Element;
|
|
349
|
+
displayName: string;
|
|
350
|
+
};
|
|
351
|
+
export declare const PencilIcon: {
|
|
352
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
353
|
+
style?: import("react").CSSProperties;
|
|
354
|
+
color?: string;
|
|
355
|
+
}): import("react").JSX.Element;
|
|
356
|
+
displayName: string;
|
|
357
|
+
};
|
|
358
|
+
export declare const PhoneIcon: {
|
|
359
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
360
|
+
style?: import("react").CSSProperties;
|
|
361
|
+
color?: string;
|
|
362
|
+
}): import("react").JSX.Element;
|
|
363
|
+
displayName: string;
|
|
364
|
+
};
|
|
365
|
+
export declare const PhoneSlashIcon: {
|
|
366
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
367
|
+
style?: import("react").CSSProperties;
|
|
368
|
+
color?: string;
|
|
369
|
+
}): import("react").JSX.Element;
|
|
370
|
+
displayName: string;
|
|
371
|
+
};
|
|
372
|
+
export declare const PlusIcon: {
|
|
373
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
374
|
+
style?: import("react").CSSProperties;
|
|
375
|
+
color?: string;
|
|
376
|
+
}): import("react").JSX.Element;
|
|
377
|
+
displayName: string;
|
|
378
|
+
};
|
|
379
|
+
export declare const ProfileIcon: {
|
|
380
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
381
|
+
style?: import("react").CSSProperties;
|
|
382
|
+
color?: string;
|
|
383
|
+
}): import("react").JSX.Element;
|
|
384
|
+
displayName: string;
|
|
385
|
+
};
|
|
386
|
+
export declare const ProfileChatIcon: {
|
|
387
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
388
|
+
style?: import("react").CSSProperties;
|
|
389
|
+
color?: string;
|
|
390
|
+
}): import("react").JSX.Element;
|
|
391
|
+
displayName: string;
|
|
392
|
+
};
|
|
393
|
+
export declare const PuzzleIcon: {
|
|
394
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
395
|
+
style?: import("react").CSSProperties;
|
|
396
|
+
color?: string;
|
|
397
|
+
}): import("react").JSX.Element;
|
|
398
|
+
displayName: string;
|
|
399
|
+
};
|
|
400
|
+
export declare const QuestionIcon: {
|
|
401
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
402
|
+
style?: import("react").CSSProperties;
|
|
403
|
+
color?: string;
|
|
404
|
+
}): import("react").JSX.Element;
|
|
405
|
+
displayName: string;
|
|
406
|
+
};
|
|
407
|
+
export declare const SendIcon: {
|
|
408
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
409
|
+
style?: import("react").CSSProperties;
|
|
410
|
+
color?: string;
|
|
411
|
+
}): import("react").JSX.Element;
|
|
412
|
+
displayName: string;
|
|
413
|
+
};
|
|
414
|
+
export declare const ScreenShareIcon: {
|
|
415
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
416
|
+
style?: import("react").CSSProperties;
|
|
417
|
+
color?: string;
|
|
418
|
+
}): import("react").JSX.Element;
|
|
419
|
+
displayName: string;
|
|
420
|
+
};
|
|
421
|
+
export declare const SettingsIcon: {
|
|
422
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
423
|
+
style?: import("react").CSSProperties;
|
|
424
|
+
color?: string;
|
|
425
|
+
}): import("react").JSX.Element;
|
|
426
|
+
displayName: string;
|
|
427
|
+
};
|
|
428
|
+
export declare const SpeakerIcon: {
|
|
429
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
430
|
+
style?: import("react").CSSProperties;
|
|
431
|
+
color?: string;
|
|
432
|
+
}): import("react").JSX.Element;
|
|
433
|
+
displayName: string;
|
|
434
|
+
};
|
|
435
|
+
export declare const StackIcon: {
|
|
436
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
437
|
+
style?: import("react").CSSProperties;
|
|
438
|
+
color?: string;
|
|
439
|
+
}): import("react").JSX.Element;
|
|
440
|
+
displayName: string;
|
|
441
|
+
};
|
|
442
|
+
export declare const StarIcon: {
|
|
443
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
444
|
+
style?: import("react").CSSProperties;
|
|
445
|
+
color?: string;
|
|
446
|
+
}): import("react").JSX.Element;
|
|
447
|
+
displayName: string;
|
|
448
|
+
};
|
|
449
|
+
export declare const SunIcon: {
|
|
450
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
451
|
+
style?: import("react").CSSProperties;
|
|
452
|
+
color?: string;
|
|
453
|
+
}): import("react").JSX.Element;
|
|
454
|
+
displayName: string;
|
|
455
|
+
};
|
|
456
|
+
export declare const SwapIcon: {
|
|
457
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
458
|
+
style?: import("react").CSSProperties;
|
|
459
|
+
color?: string;
|
|
460
|
+
}): import("react").JSX.Element;
|
|
461
|
+
displayName: string;
|
|
462
|
+
};
|
|
463
|
+
export declare const TelegramIcon: {
|
|
464
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
465
|
+
style?: import("react").CSSProperties;
|
|
466
|
+
color?: string;
|
|
467
|
+
}): import("react").JSX.Element;
|
|
468
|
+
displayName: string;
|
|
469
|
+
};
|
|
470
|
+
export declare const TickDoubleIcon: {
|
|
471
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
472
|
+
style?: import("react").CSSProperties;
|
|
473
|
+
color?: string;
|
|
474
|
+
}): import("react").JSX.Element;
|
|
475
|
+
displayName: string;
|
|
476
|
+
};
|
|
477
|
+
export declare const TickIcon: {
|
|
478
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
479
|
+
style?: import("react").CSSProperties;
|
|
480
|
+
color?: string;
|
|
481
|
+
}): import("react").JSX.Element;
|
|
482
|
+
displayName: string;
|
|
483
|
+
};
|
|
484
|
+
export declare const TiktokIcon: {
|
|
485
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
486
|
+
style?: import("react").CSSProperties;
|
|
487
|
+
color?: string;
|
|
488
|
+
}): import("react").JSX.Element;
|
|
489
|
+
displayName: string;
|
|
490
|
+
};
|
|
491
|
+
export declare const TranslatorIcon: {
|
|
492
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
493
|
+
style?: import("react").CSSProperties;
|
|
494
|
+
color?: string;
|
|
495
|
+
}): import("react").JSX.Element;
|
|
496
|
+
displayName: string;
|
|
497
|
+
};
|
|
498
|
+
export declare const TrashIcon: {
|
|
499
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
500
|
+
style?: import("react").CSSProperties;
|
|
501
|
+
color?: string;
|
|
502
|
+
}): import("react").JSX.Element;
|
|
503
|
+
displayName: string;
|
|
504
|
+
};
|
|
505
|
+
export declare const TwitterIcon: {
|
|
506
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
507
|
+
style?: import("react").CSSProperties;
|
|
508
|
+
color?: string;
|
|
509
|
+
}): import("react").JSX.Element;
|
|
510
|
+
displayName: string;
|
|
511
|
+
};
|
|
512
|
+
export declare const UploadIcon: {
|
|
513
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
514
|
+
style?: import("react").CSSProperties;
|
|
515
|
+
color?: string;
|
|
516
|
+
}): import("react").JSX.Element;
|
|
517
|
+
displayName: string;
|
|
518
|
+
};
|
|
519
|
+
export declare const UserDisconnectedIcon: {
|
|
520
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
521
|
+
style?: import("react").CSSProperties;
|
|
522
|
+
color?: string;
|
|
523
|
+
}): import("react").JSX.Element;
|
|
524
|
+
displayName: string;
|
|
525
|
+
};
|
|
526
|
+
export declare const UserSearchIcon: {
|
|
527
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
528
|
+
style?: import("react").CSSProperties;
|
|
529
|
+
color?: string;
|
|
530
|
+
}): import("react").JSX.Element;
|
|
531
|
+
displayName: string;
|
|
532
|
+
};
|
|
533
|
+
export declare const VideoIcon: {
|
|
534
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
535
|
+
style?: import("react").CSSProperties;
|
|
536
|
+
color?: string;
|
|
537
|
+
}): import("react").JSX.Element;
|
|
538
|
+
displayName: string;
|
|
539
|
+
};
|
|
540
|
+
export declare const WebIcon: {
|
|
541
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
542
|
+
style?: import("react").CSSProperties;
|
|
543
|
+
color?: string;
|
|
544
|
+
}): import("react").JSX.Element;
|
|
545
|
+
displayName: string;
|
|
546
|
+
};
|
|
547
|
+
export declare const WhatsappIcon: {
|
|
548
|
+
({ backgroundColor, borderColor, circular, className, color, gradient, height, label, labelVisible, style, width, }: import("./Icon").IconSvgProps & {
|
|
549
|
+
style?: import("react").CSSProperties;
|
|
550
|
+
color?: string;
|
|
551
|
+
}): import("react").JSX.Element;
|
|
552
|
+
displayName: string;
|
|
553
|
+
};
|