@ssa-ui-kit/core 0.0.10-alpha → 0.0.11-alpha
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.js +4 -4
- package/.storybook/main.ts +43 -43
- package/.storybook/preview.tsx +22 -22
- package/.storybook/style.css +31 -31
- package/LICENSE +21 -0
- package/customTest.tsx +46 -46
- package/dist/index.js.map +1 -1
- package/jest-setup.ts +17 -17
- package/lostpixel.config.ts +26 -26
- package/package.json +1 -1
- package/playwright.config.ts +7 -7
- package/src/components/AccordionGroup/Accordion.tsx +25 -25
- package/src/components/AccordionGroup/AccordionContent.tsx +21 -21
- package/src/components/AccordionGroup/AccordionContext.tsx +66 -66
- package/src/components/AccordionGroup/AccordionGroup.spec.tsx +195 -191
- package/src/components/AccordionGroup/AccordionGroup.tsx +71 -71
- package/src/components/AccordionGroup/AccordionTitle.tsx +41 -41
- package/src/components/AccordionGroup/index.ts +6 -6
- package/src/components/AccordionGroup/stories/AccordionGroup.stories.tsx +107 -107
- package/src/components/AccordionGroup/stories/helpers.tsx +86 -86
- package/src/components/AccordionGroup/styles.ts +121 -121
- package/src/components/AccordionGroup/types.ts +59 -59
- package/src/components/Avatar/Avatar.tsx +15 -15
- package/src/components/Avatar/index.ts +1 -1
- package/src/components/Badge/Badge.spec.tsx +113 -113
- package/src/components/Badge/Badge.stories.tsx +156 -156
- package/src/components/Badge/Badge.tsx +45 -45
- package/src/components/Badge/BadgeBase.tsx +19 -19
- package/src/components/Badge/helpers.ts +49 -49
- package/src/components/Badge/index.ts +1 -1
- package/src/components/Badge/styles.ts +20 -20
- package/src/components/Badge/types.ts +7 -7
- package/src/components/Button/Button.spec.tsx +529 -529
- package/src/components/Button/Button.stories.tsx +124 -124
- package/src/components/Button/Button.tsx +121 -121
- package/src/components/Button/ButtonBase.tsx +14 -14
- package/src/components/Button/ButtonText.tsx +67 -67
- package/src/components/Button/fixtures.ts +165 -165
- package/src/components/Button/helpers.ts +30 -30
- package/src/components/Button/index.ts +1 -1
- package/src/components/Button/styles.ts +168 -168
- package/src/components/Button/types.ts +48 -48
- package/src/components/ButtonGroup/ButtonGroup.spec.tsx +60 -60
- package/src/components/ButtonGroup/ButtonGroup.stories.tsx +42 -42
- package/src/components/ButtonGroup/ButtonGroup.tsx +40 -40
- package/src/components/ButtonGroup/helpers.ts +7 -7
- package/src/components/ButtonGroup/index.ts +2 -2
- package/src/components/ButtonGroup/styles.ts +53 -53
- package/src/components/ButtonGroup/types.ts +14 -14
- package/src/components/Card/Card.spec.tsx +94 -94
- package/src/components/Card/Card.stories.tsx +253 -253
- package/src/components/Card/Card.tsx +13 -13
- package/src/components/Card/CardBase.tsx +20 -20
- package/src/components/Card/index.ts +2 -2
- package/src/components/Card/types.ts +8 -8
- package/src/components/CardContent/CardContent.tsx +17 -17
- package/src/components/CardContent/CardContentBase.tsx +12 -12
- package/src/components/CardContent/index.ts +1 -1
- package/src/components/CardHeader/CardHeader.tsx +26 -26
- package/src/components/CardHeader/CardHeaderBase.tsx +21 -21
- package/src/components/CardHeader/index.ts +1 -1
- package/src/components/Checkbox/Checkbox.spec.tsx +193 -193
- package/src/components/Checkbox/Checkbox.stories.tsx +93 -93
- package/src/components/Checkbox/Checkbox.tsx +79 -79
- package/src/components/Checkbox/CheckboxBase.tsx +71 -71
- package/src/components/Checkbox/index.ts +3 -3
- package/src/components/Checkbox/styles.tsx +70 -70
- package/src/components/Checkbox/types.ts +32 -32
- package/src/components/ColorPicker/ColorPicker.spec.tsx +58 -58
- package/src/components/ColorPicker/ColorPicker.stories.tsx +48 -48
- package/src/components/ColorPicker/ColorPicker.tsx +47 -47
- package/src/components/ColorPicker/index.ts +1 -1
- package/src/components/ColorPicker/styles.ts +14 -14
- package/src/components/ColorPicker/types.ts +21 -21
- package/src/components/Dropdown/Dropdown.context.ts +16 -16
- package/src/components/Dropdown/Dropdown.spec.tsx +332 -332
- package/src/components/Dropdown/Dropdown.stories.tsx +155 -155
- package/src/components/Dropdown/Dropdown.tsx +135 -135
- package/src/components/Dropdown/index.ts +2 -2
- package/src/components/Dropdown/types.ts +17 -17
- package/src/components/DropdownArrow/DropdownArrow.tsx +17 -17
- package/src/components/DropdownArrow/index.ts +1 -1
- package/src/components/DropdownBase/DropdownBase.tsx +10 -10
- package/src/components/DropdownBase/index.ts +1 -1
- package/src/components/DropdownOption/DropdownOption.tsx +56 -56
- package/src/components/DropdownOption/index.ts +1 -1
- package/src/components/DropdownOptions/DropdownOptions.tsx +102 -102
- package/src/components/DropdownOptions/index.ts +2 -2
- package/src/components/DropdownOptions/types.ts +9 -9
- package/src/components/DropdownToggle/DropdownToggle.tsx +148 -148
- package/src/components/DropdownToggle/index.ts +1 -1
- package/src/components/DropdownToggle/types.ts +22 -22
- package/src/components/Form/Form.stories.mdx +118 -118
- package/src/components/Form/Form.stories.tsx +432 -432
- package/src/components/Form/Form.tsx +9 -9
- package/src/components/Form/index.ts +1 -1
- package/src/components/FormAction/FormAction.tsx +8 -8
- package/src/components/FormAction/index.ts +1 -1
- package/src/components/FormCheckbox/FormCheckbox.tsx +33 -33
- package/src/components/FormCheckbox/index.ts +1 -1
- package/src/components/FormCheckbox/types.ts +10 -10
- package/src/components/FormGroup/FormGroup.tsx +15 -15
- package/src/components/FormGroup/index.ts +1 -1
- package/src/components/FormHelperText/FormHelperText.tsx +18 -18
- package/src/components/FormHelperText/FormHelperTextBase.tsx +22 -22
- package/src/components/FormHelperText/index.ts +1 -1
- package/src/components/FormHelperText/types.ts +8 -8
- package/src/components/FormRadioGroup/FormRadioGroup.spec.tsx +74 -74
- package/src/components/FormRadioGroup/FormRadioGroup.stories.tsx +90 -90
- package/src/components/FormRadioGroup/FormRadioGroup.tsx +35 -35
- package/src/components/FormRadioGroup/index.ts +1 -1
- package/src/components/FormRadioGroup/types.ts +12 -12
- package/src/components/Icon/Icon.tsx +7 -7
- package/src/components/Icon/Icons.spec.tsx +89 -89
- package/src/components/Icon/Icons.stories.tsx +62 -62
- package/src/components/Icon/icons/Archive.tsx +36 -36
- package/src/components/Icon/icons/ArrowDown.tsx +27 -27
- package/src/components/Icon/icons/ArrowUp.tsx +27 -27
- package/src/components/Icon/icons/Attention.tsx +23 -23
- package/src/components/Icon/icons/Bin.tsx +29 -29
- package/src/components/Icon/icons/Calendar.tsx +17 -17
- package/src/components/Icon/icons/CarrotDown.tsx +25 -25
- package/src/components/Icon/icons/CarrotLeft.tsx +25 -25
- package/src/components/Icon/icons/CarrotRight.tsx +25 -25
- package/src/components/Icon/icons/CarrotUp.tsx +21 -21
- package/src/components/Icon/icons/Change.tsx +17 -17
- package/src/components/Icon/icons/Chart.tsx +38 -38
- package/src/components/Icon/icons/Check.tsx +21 -21
- package/src/components/Icon/icons/CheckCircle.tsx +31 -31
- package/src/components/Icon/icons/Circle.tsx +23 -23
- package/src/components/Icon/icons/Clock.tsx +32 -32
- package/src/components/Icon/icons/Copy.tsx +24 -24
- package/src/components/Icon/icons/Cross.tsx +28 -28
- package/src/components/Icon/icons/Diet.tsx +17 -17
- package/src/components/Icon/icons/Email.tsx +20 -20
- package/src/components/Icon/icons/Filter.tsx +19 -19
- package/src/components/Icon/icons/Home.tsx +17 -17
- package/src/components/Icon/icons/Information.tsx +29 -29
- package/src/components/Icon/icons/Invisible.tsx +56 -56
- package/src/components/Icon/icons/Lock.tsx +18 -18
- package/src/components/Icon/icons/LogIn.tsx +22 -22
- package/src/components/Icon/icons/LogOut.tsx +22 -22
- package/src/components/Icon/icons/Measurements.tsx +23 -23
- package/src/components/Icon/icons/Minus.tsx +21 -21
- package/src/components/Icon/icons/More.tsx +25 -25
- package/src/components/Icon/icons/MoreVertical.tsx +20 -20
- package/src/components/Icon/icons/Notification.tsx +23 -23
- package/src/components/Icon/icons/Plus.tsx +28 -28
- package/src/components/Icon/icons/RadioOn.tsx +24 -24
- package/src/components/Icon/icons/Robot.tsx +19 -19
- package/src/components/Icon/icons/Search.tsx +19 -19
- package/src/components/Icon/icons/Settings.tsx +25 -25
- package/src/components/Icon/icons/Sleep.tsx +21 -21
- package/src/components/Icon/icons/Stats.tsx +21 -21
- package/src/components/Icon/icons/Trainings.tsx +17 -17
- package/src/components/Icon/icons/Union.tsx +20 -20
- package/src/components/Icon/icons/User.tsx +35 -35
- package/src/components/Icon/icons/Visible.tsx +28 -28
- package/src/components/Icon/icons/Warning.tsx +23 -23
- package/src/components/Icon/icons/iconsList.tsx +55 -55
- package/src/components/Icon/icons/index.tsx +115 -115
- package/src/components/Icon/index.ts +2 -2
- package/src/components/Icon/types.ts +14 -14
- package/src/components/Indicator/Indicator.spec.tsx +67 -67
- package/src/components/Indicator/Indicator.stories.tsx +106 -106
- package/src/components/Indicator/Indicator.tsx +86 -86
- package/src/components/Indicator/IndicatorBase.tsx +27 -27
- package/src/components/Indicator/index.ts +1 -1
- package/src/components/Indicator/types.ts +9 -9
- package/src/components/Input/Input.spec.tsx +95 -95
- package/src/components/Input/Input.stories.tsx +215 -215
- package/src/components/Input/Input.tsx +70 -70
- package/src/components/Input/InputBase.tsx +42 -42
- package/src/components/Input/InputGroup.tsx +12 -12
- package/src/components/Input/InputStatusError.tsx +20 -20
- package/src/components/Input/InputStatusSuccess.tsx +16 -16
- package/src/components/Input/index.ts +1 -1
- package/src/components/Input/styles.ts +111 -111
- package/src/components/Input/types.ts +36 -36
- package/src/components/Label/Label.spec.tsx +57 -57
- package/src/components/Label/Label.tsx +20 -20
- package/src/components/Label/LabelBase.tsx +14 -14
- package/src/components/Label/index.ts +1 -1
- package/src/components/Label/types.ts +9 -9
- package/src/components/LargeTab/LargeTab.tsx +38 -38
- package/src/components/LargeTab/LargeTabBase.tsx +39 -39
- package/src/components/LargeTab/index.ts +1 -1
- package/src/components/LargeTab/styles.ts +17 -17
- package/src/components/Link/Link.tsx +10 -10
- package/src/components/Link/Link.types.ts +4 -4
- package/src/components/Link/LinkBase.ts +5 -5
- package/src/components/Link/index.tsx +1 -1
- package/src/components/Modal/Modal.context.tsx +9 -9
- package/src/components/Modal/Modal.spec.tsx +154 -154
- package/src/components/Modal/Modal.stories.tsx +97 -97
- package/src/components/Modal/Modal.tsx +12 -12
- package/src/components/Modal/index.ts +2 -2
- package/src/components/Modal/types.ts +4 -4
- package/src/components/ModalContent/ModalContent.tsx +21 -21
- package/src/components/ModalContent/index.ts +1 -1
- package/src/components/ModalDialog/ModalDialog.tsx +67 -67
- package/src/components/ModalDialog/index.ts +2 -2
- package/src/components/ModalDialog/types.ts +7 -7
- package/src/components/ModalDismissButton/ModalDismissButton.tsx +15 -15
- package/src/components/ModalDismissButton/index.ts +1 -1
- package/src/components/ModalOpenButton/ModalOpenButton.tsx +15 -15
- package/src/components/ModalOpenButton/index.ts +1 -1
- package/src/components/MultipleDropdown/MultipleDropdown.context.ts +20 -20
- package/src/components/MultipleDropdown/MultipleDropdown.spec.tsx +414 -414
- package/src/components/MultipleDropdown/MultipleDropdown.tsx +217 -217
- package/src/components/MultipleDropdown/index.ts +1 -1
- package/src/components/MultipleDropdown/stories/MultipleDropdown.stories.tsx +239 -239
- package/src/components/MultipleDropdown/stories/consts.ts +5 -5
- package/src/components/MultipleDropdown/types.ts +20 -20
- package/src/components/MultipleDropdown/utils.ts +32 -32
- package/src/components/MultipleDropdownNotification/MultipleDropdownNotification.tsx +13 -13
- package/src/components/MultipleDropdownNotification/index.ts +1 -1
- package/src/components/MultipleDropdownOptions/MultipleDropdownOptions.tsx +156 -156
- package/src/components/MultipleDropdownOptions/index.ts +2 -2
- package/src/components/MultipleDropdownOptions/types.ts +7 -7
- package/src/components/Popover/Popover.e2e.ts +26 -26
- package/src/components/Popover/Popover.spec.tsx +17 -17
- package/src/components/Popover/Popover.tsx +21 -21
- package/src/components/Popover/PopoverClose.tsx +21 -21
- package/src/components/Popover/PopoverContent.tsx +37 -37
- package/src/components/Popover/PopoverDescription.tsx +21 -21
- package/src/components/Popover/PopoverHeading.tsx +25 -25
- package/src/components/Popover/PopoverTrigger.tsx +47 -47
- package/src/components/Popover/hooks/usePopover.tsx +109 -109
- package/src/components/Popover/hooks/usePopoverContext.tsx +16 -16
- package/src/components/Popover/index.ts +6 -6
- package/src/components/Popover/stories/Popover.stories.tsx +39 -39
- package/src/components/Popover/stories/StoryComponent.tsx +42 -42
- package/src/components/Popover/types.ts +45 -45
- package/src/components/Progress/Progress.spec.tsx +85 -85
- package/src/components/Progress/Progress.stories.tsx +234 -234
- package/src/components/Progress/Progress.tsx +7 -7
- package/src/components/Progress/index.ts +1 -1
- package/src/components/Progress/types.ts +5 -5
- package/src/components/ProgressBar/ProgressBar.tsx +68 -68
- package/src/components/ProgressBar/index.ts +1 -1
- package/src/components/ProgressBar/styles.ts +15 -15
- package/src/components/ProgressBar/types.ts +7 -7
- package/src/components/ProgressCircle/ProgressCircle.spec.tsx +37 -37
- package/src/components/ProgressCircle/ProgressCircle.stories.tsx +96 -96
- package/src/components/ProgressCircle/ProgressCircle.tsx +60 -60
- package/src/components/ProgressCircle/ProgressCircleBase.tsx +45 -45
- package/src/components/ProgressCircle/ProgressCircleInner.tsx +16 -16
- package/src/components/ProgressCircle/ProgressCircleOuter.tsx +14 -14
- package/src/components/ProgressCircle/index.ts +1 -1
- package/src/components/ProgressCircle/styles.ts +20 -20
- package/src/components/ProgressCircle/types.ts +7 -7
- package/src/components/ProgressLegend/ProgressLegend.tsx +41 -41
- package/src/components/ProgressLegend/index.ts +1 -1
- package/src/components/ProgressLegend/types.ts +12 -12
- package/src/components/ProgressLegendItem/ProgressLegendItem.tsx +52 -52
- package/src/components/ProgressLegendItem/index.ts +1 -1
- package/src/components/ProgressLegendItem/types.ts +6 -6
- package/src/components/ProgressVertical/ProgressVertical.tsx +23 -23
- package/src/components/ProgressVertical/index.ts +1 -1
- package/src/components/ProgressVertical/types.ts +5 -5
- package/src/components/Radio/Radio.spec.tsx +234 -234
- package/src/components/Radio/Radio.stories.tsx +52 -52
- package/src/components/Radio/Radio.tsx +56 -56
- package/src/components/Radio/RadioBase.tsx +36 -36
- package/src/components/Radio/index.ts +1 -1
- package/src/components/Radio/types.ts +11 -11
- package/src/components/RadioGroup/RadioGroup.spec.tsx +116 -116
- package/src/components/RadioGroup/RadioGroup.stories.tsx +84 -84
- package/src/components/RadioGroup/RadioGroup.tsx +49 -49
- package/src/components/RadioGroup/RadioGroupBase.tsx +3 -3
- package/src/components/RadioGroup/index.ts +1 -1
- package/src/components/RadioGroup/types.ts +10 -10
- package/src/components/ResponsiveImage/ResponsiveImage.spec.tsx +43 -43
- package/src/components/ResponsiveImage/ResponsiveImage.stories.tsx +33 -33
- package/src/components/ResponsiveImage/ResponsiveImage.tsx +14 -14
- package/src/components/ResponsiveImage/index.tsx +1 -1
- package/src/components/ResponsiveImage/types.ts +7 -7
- package/src/components/Step/Step.context.ts +21 -21
- package/src/components/Step/Step.tsx +58 -58
- package/src/components/Step/index.ts +2 -2
- package/src/components/StepConnector/StepConnector.tsx +34 -34
- package/src/components/StepConnector/index.ts +1 -1
- package/src/components/StepConnector/style.ts +24 -24
- package/src/components/StepLabel/StepLabel.tsx +65 -65
- package/src/components/StepLabel/index.ts +1 -1
- package/src/components/StepLabel/styles.ts +38 -38
- package/src/components/Stepper/Stepper.context.ts +16 -16
- package/src/components/Stepper/Stepper.spec.tsx +128 -128
- package/src/components/Stepper/Stepper.stories.tsx +292 -292
- package/src/components/Stepper/Stepper.tsx +49 -49
- package/src/components/Stepper/index.ts +5 -5
- package/src/components/Stepper/types.ts +17 -17
- package/src/components/Switch/Switch.spec.tsx +181 -181
- package/src/components/Switch/Switch.stories.tsx +64 -64
- package/src/components/Switch/Switch.tsx +21 -21
- package/src/components/Switch/SwitchBase.tsx +62 -62
- package/src/components/Switch/SwitchContext.tsx +38 -38
- package/src/components/Switch/index.ts +6 -6
- package/src/components/Switch/types.ts +4 -4
- package/src/components/Tab/Tab.tsx +31 -31
- package/src/components/Tab/TabBase.tsx +31 -31
- package/src/components/Tab/index.ts +1 -1
- package/src/components/TabBar/TabBar.spec.tsx +290 -290
- package/src/components/TabBar/TabBar.tsx +43 -43
- package/src/components/TabBar/TabBarContext.tsx +43 -43
- package/src/components/TabBar/index.ts +6 -6
- package/src/components/TabBar/stories/TimePeriodTabBar.stories.tsx +84 -84
- package/src/components/TabBar/stories/WeekTabBar.stories.tsx +136 -136
- package/src/components/TabBar/stories/helpers.tsx +69 -69
- package/src/components/TabBar/types.ts +39 -39
- package/src/components/Table/Table.spec.tsx +86 -86
- package/src/components/Table/Table.tsx +13 -13
- package/src/components/Table/index.ts +1 -1
- package/src/components/Table/stories/SortableTable.tsx +78 -78
- package/src/components/Table/stories/Table.stories.tsx +94 -94
- package/src/components/Table/stories/consts.ts +6 -6
- package/src/components/Table/stories/mock.ts +16 -16
- package/src/components/Table/stories/types.ts +9 -9
- package/src/components/Table/stories/utils.ts +2 -2
- package/src/components/TableBody/TableBody.tsx +8 -8
- package/src/components/TableBody/index.ts +1 -1
- package/src/components/TableCell/TableCell.tsx +16 -16
- package/src/components/TableCell/index.ts +1 -1
- package/src/components/TableHead/TableHead.tsx +15 -15
- package/src/components/TableHead/index.ts +1 -1
- package/src/components/TableRow/TableRow.tsx +12 -12
- package/src/components/TableRow/index.ts +1 -1
- package/src/components/Tag/Tag.spec.tsx +121 -121
- package/src/components/Tag/Tag.stories.tsx +96 -96
- package/src/components/Tag/Tag.tsx +47 -47
- package/src/components/Tag/index.ts +1 -1
- package/src/components/Tag/styles.ts +123 -123
- package/src/components/Tag/types.ts +7 -7
- package/src/components/TextField/TextField.spec.tsx +171 -171
- package/src/components/TextField/TextField.stories.tsx +221 -221
- package/src/components/TextField/TextField.tsx +61 -61
- package/src/components/TextField/index.ts +1 -1
- package/src/components/TextField/types.ts +14 -14
- package/src/components/Textarea/Textarea.spec.tsx +56 -56
- package/src/components/Textarea/Textarea.stories.tsx +59 -59
- package/src/components/Textarea/Textarea.tsx +37 -37
- package/src/components/Textarea/TextareaBase.tsx +46 -46
- package/src/components/Textarea/index.ts +1 -1
- package/src/components/Textarea/types.ts +16 -16
- package/src/components/Tooltip/ProgressChartTooltip.tsx +48 -48
- package/src/components/Tooltip/SimpleChartTooltip.tsx +20 -20
- package/src/components/Tooltip/Tooltip.spec.tsx +305 -305
- package/src/components/Tooltip/Tooltip.stories.tsx +160 -160
- package/src/components/Tooltip/Tooltip.tsx +22 -22
- package/src/components/Tooltip/TooltipArrow.tsx +26 -26
- package/src/components/Tooltip/TooltipContentBase.tsx +9 -9
- package/src/components/Tooltip/index.ts +5 -5
- package/src/components/Tooltip/styles.ts +16 -16
- package/src/components/Tooltip/types.ts +88 -88
- package/src/components/Tooltip/useTooltip.tsx +74 -74
- package/src/components/Tooltip/useTooltipContext.tsx +16 -16
- package/src/components/Tooltip/utils.tsx +8 -8
- package/src/components/TooltipContent/TooltipContent.tsx +49 -49
- package/src/components/TooltipContent/index.ts +1 -1
- package/src/components/TooltipTrigger/TooltipTrigger.tsx +21 -21
- package/src/components/TooltipTrigger/index.ts +1 -1
- package/src/components/Typography/Typography.spec.tsx +259 -259
- package/src/components/Typography/Typography.stories.tsx +68 -68
- package/src/components/Typography/Typography.tsx +52 -52
- package/src/components/Typography/index.ts +1 -1
- package/src/components/Typography/styles.ts +85 -85
- package/src/components/Typography/types.ts +22 -22
- package/src/components/Wrapper/Wrapper.spec.tsx +15 -15
- package/src/components/Wrapper/Wrapper.tsx +19 -19
- package/src/components/Wrapper/index.ts +1 -1
- package/src/consts.ts +18 -18
- package/src/index.ts +94 -94
- package/src/injectGlobal.ts +41 -41
- package/src/styles/global.ts +91 -91
- package/src/styles/safari-focus-outline.ts +37 -37
- package/src/styles/styles.spec.tsx +42 -42
- package/src/themes/main.ts +116 -116
- package/src/types/emotion.d.ts +7 -7
- package/src/types/emotion.ts +132 -132
- package/src/types/global.d.ts +7 -7
- package/src/types/global.ts +19 -19
- package/tasks/create.js +45 -45
- package/tasks/firebase-import-meal-nutrients.js +66 -66
- package/tsbuildcache +1 -1
- package/tsconfig.build.json +44 -44
- package/tsconfig.json +20 -20
- package/webpack.config.js +26 -26
- package/custom-shots/components-popover--hint-opened__[w1920px].png +0 -0
- package/custom-shots/components-table-filters--opened__[w1920px].png +0 -0
- package/storybook-static/1283.a11004a1.iframe.bundle.js +0 -1
- package/storybook-static/1326.74edde53.iframe.bundle.js +0 -1
- package/storybook-static/2912.4c6e14cb.iframe.bundle.js +0 -1
- package/storybook-static/3547.515f04ab.iframe.bundle.js +0 -1
- package/storybook-static/3624.1414516c.iframe.bundle.js +0 -1
- package/storybook-static/3753.bd2e2900.iframe.bundle.js +0 -1
- package/storybook-static/4106.7f1435f2.iframe.bundle.js +0 -402
- package/storybook-static/4106.7f1435f2.iframe.bundle.js.LICENSE.txt +0 -62
- package/storybook-static/4106.7f1435f2.iframe.bundle.js.map +0 -1
- package/storybook-static/4166.6fdf56d2.iframe.bundle.js +0 -1
- package/storybook-static/4339.437b4af1.iframe.bundle.js +0 -1
- package/storybook-static/4995.d16abbf0.iframe.bundle.js +0 -1
- package/storybook-static/5199.6867eb61.iframe.bundle.js +0 -1
- package/storybook-static/5374.19c2f606.iframe.bundle.js +0 -6
- package/storybook-static/5374.19c2f606.iframe.bundle.js.LICENSE.txt +0 -8
- package/storybook-static/5374.19c2f606.iframe.bundle.js.map +0 -1
- package/storybook-static/5417.e7b726cc.iframe.bundle.js +0 -1
- package/storybook-static/5497.0b734124.iframe.bundle.js +0 -44
- package/storybook-static/5497.0b734124.iframe.bundle.js.map +0 -1
- package/storybook-static/5521.fbe15eea.iframe.bundle.js +0 -1
- package/storybook-static/5540.fa362783.iframe.bundle.js +0 -1
- package/storybook-static/5938.713bc0f1.iframe.bundle.js +0 -1
- package/storybook-static/6092.0baa0be2.iframe.bundle.js +0 -1
- package/storybook-static/6216.8da65c4d.iframe.bundle.js +0 -1
- package/storybook-static/6374.b662bb7e.iframe.bundle.js +0 -1
- package/storybook-static/7076.fc69dc87.iframe.bundle.js +0 -1
- package/storybook-static/7263.784ad817.iframe.bundle.js +0 -1
- package/storybook-static/7609.fa84d5d0.iframe.bundle.js +0 -1
- package/storybook-static/7633.6d7427ee.iframe.bundle.js +0 -1
- package/storybook-static/7767.2ce7411d.iframe.bundle.js +0 -1
- package/storybook-static/8069.7d70ab4a.iframe.bundle.js +0 -1
- package/storybook-static/8251.01f55356.iframe.bundle.js +0 -1
- package/storybook-static/9134.27efc9b6.iframe.bundle.js +0 -1
- package/storybook-static/9185.5e034211.iframe.bundle.js +0 -133
- package/storybook-static/9185.5e034211.iframe.bundle.js.map +0 -1
- package/storybook-static/9661.7fb349c2.iframe.bundle.js +0 -1
- package/storybook-static/9672.98d487be.iframe.bundle.js +0 -1
- package/storybook-static/973.378dae04.iframe.bundle.js +0 -1
- package/storybook-static/components-AccordionGroup-stories-AccordionGroup-stories.c8781719.iframe.bundle.js +0 -1
- package/storybook-static/components-Badge-Badge-stories.34ed507d.iframe.bundle.js +0 -1
- package/storybook-static/components-Button-Button-stories.42cf6ebc.iframe.bundle.js +0 -1
- package/storybook-static/components-Card-Card-stories.dce075fe.iframe.bundle.js +0 -1
- package/storybook-static/components-Checkbox-Checkbox-stories.c3b0ba2a.iframe.bundle.js +0 -1
- package/storybook-static/components-ColorPicker-ColorPicker-stories.227d5d28.iframe.bundle.js +0 -1
- package/storybook-static/components-Dropdown-Dropdown-stories.a86e6d8b.iframe.bundle.js +0 -1
- package/storybook-static/components-Form-Form-stories-mdx.febb9417.iframe.bundle.js +0 -2
- package/storybook-static/components-Form-Form-stories-mdx.febb9417.iframe.bundle.js.LICENSE.txt +0 -9
- package/storybook-static/components-Form-Form-stories.1030ead7.iframe.bundle.js +0 -1
- package/storybook-static/components-FormRadioGroup-FormRadioGroup-stories.9d91e8c9.iframe.bundle.js +0 -1
- package/storybook-static/components-Icon-Icons-stories.fe368cd9.iframe.bundle.js +0 -1
- package/storybook-static/components-Input-Input-stories.ecfd89af.iframe.bundle.js +0 -1
- package/storybook-static/components-Modal-Modal-stories.bd406807.iframe.bundle.js +0 -1
- package/storybook-static/components-MultipleDropdown-MultipleDropdown-stories.80762ee2.iframe.bundle.js +0 -1
- package/storybook-static/components-Popover-stories-Popover-stories.5bbb9c19.iframe.bundle.js +0 -1
- package/storybook-static/components-Progress-Progress-stories.924b6ce3.iframe.bundle.js +0 -1
- package/storybook-static/components-ProgressCircle-ProgressCircle-stories.abf7a711.iframe.bundle.js +0 -1
- package/storybook-static/components-Radio-Radio-stories.ea10f6ac.iframe.bundle.js +0 -1
- package/storybook-static/components-RadioGroup-RadioGroup-stories.8be03b3f.iframe.bundle.js +0 -1
- package/storybook-static/components-ResponsiveImage-ResponsiveImage-stories.d6d0fc31.iframe.bundle.js +0 -1
- package/storybook-static/components-Stepper-Stepper-stories.55fe429d.iframe.bundle.js +0 -1
- package/storybook-static/components-Switch-Switch-stories.760b85d7.iframe.bundle.js +0 -1
- package/storybook-static/components-TabBar-stories-TimePeriodTabBar-stories.6f0ee7ee.iframe.bundle.js +0 -1
- package/storybook-static/components-TabBar-stories-WeekTabBar-stories.1d8887da.iframe.bundle.js +0 -1
- package/storybook-static/components-Table-Table-stories.cf62219e.iframe.bundle.js +0 -1
- package/storybook-static/components-Tag-Tag-stories.dc89b8dd.iframe.bundle.js +0 -1
- package/storybook-static/components-TextField-TextField-stories.23ab264d.iframe.bundle.js +0 -1
- package/storybook-static/components-Textarea-Textarea-stories.5d16dfd0.iframe.bundle.js +0 -1
- package/storybook-static/components-Tooltip-Tooltip-stories.4cf83194.iframe.bundle.js +0 -1
- package/storybook-static/components-Typography-Typography-stories.b04f7644.iframe.bundle.js +0 -1
- package/storybook-static/favicon.svg +0 -7
- package/storybook-static/iframe.html +0 -355
- package/storybook-static/index.html +0 -130
- package/storybook-static/index.json +0 -1
- package/storybook-static/main.17671a9a.iframe.bundle.js +0 -1
- package/storybook-static/project.json +0 -1
- package/storybook-static/runtime~main.a44b94df.iframe.bundle.js +0 -1
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +0 -13
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +0 -115
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +0 -18
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js +0 -28
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/links-0/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/links-0/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/links-0/manager-bundle.js.map +0 -7
- package/storybook-static/sb-addons/pseudo-states-9/manager-bundle.js +0 -4
- package/storybook-static/sb-addons/pseudo-states-9/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/pseudo-states-9/manager-bundle.js.map +0 -7
- package/storybook-static/sb-common-assets/fonts.css +0 -31
- package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
- package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
- package/storybook-static/sb-manager/CRUD-I5EZL2FS-LBZVDZXV.js +0 -1
- package/storybook-static/sb-manager/Communicate-7JXCND2Z-6SIVXWT4.js +0 -1
- package/storybook-static/sb-manager/Devices-SUYACUPO-DMGV6ENX.js +0 -1
- package/storybook-static/sb-manager/Documents-SGWAY3KW-XZRZ6I6S.js +0 -1
- package/storybook-static/sb-manager/Editing-7QFB6ZMG-J5U6QGB6.js +0 -1
- package/storybook-static/sb-manager/Git-DZ2D5ZUL-VKBWYJHE.js +0 -1
- package/storybook-static/sb-manager/GlobalScrollAreaStyles-4LLX2B3H-DOBSPBNW.js +0 -7
- package/storybook-static/sb-manager/Images-S2WTXNGG-NXAYS4VP.js +0 -1
- package/storybook-static/sb-manager/Logos-SJTNNI74-F3IVL4UV.js +0 -1
- package/storybook-static/sb-manager/OS-YZ2Y4VYS-KGSGCOHC.js +0 -1
- package/storybook-static/sb-manager/OverlayScrollbars-OL4C4TVX-FNYA4OIC.js +0 -1
- package/storybook-static/sb-manager/People-OD4EV7WZ-DBPUNUXW.js +0 -1
- package/storybook-static/sb-manager/Wayfinding-BB4H7CHP-N2QAVLVA.js +0 -1
- package/storybook-static/sb-manager/WithTooltip-YBG737T3-GLWUADFI.js +0 -1
- package/storybook-static/sb-manager/chunk-6KNXZZZ5.js +0 -207
- package/storybook-static/sb-manager/chunk-DP4DR4LA.js +0 -15
- package/storybook-static/sb-manager/chunk-GBCXFRBK.js +0 -1
- package/storybook-static/sb-manager/chunk-IFNK3PLJ.js +0 -1
- package/storybook-static/sb-manager/chunk-JMPBYCHU.js +0 -1
- package/storybook-static/sb-manager/chunk-JSPL73I3.js +0 -1
- package/storybook-static/sb-manager/chunk-SJD7EFYL.js +0 -136
- package/storybook-static/sb-manager/chunk-UBXIQABM.js +0 -447
- package/storybook-static/sb-manager/chunk-V7GYLJLR.js +0 -7
- package/storybook-static/sb-manager/chunk-Z4NRYNHR.js +0 -1
- package/storybook-static/sb-manager/formatter-6736J7QO-TGL2ZGQC.js +0 -156
- package/storybook-static/sb-manager/globals.js +0 -1
- package/storybook-static/sb-manager/index.js +0 -1
- package/storybook-static/sb-manager/runtime.js +0 -1
- package/storybook-static/sb-manager/syntaxhighlighter-4OVWVELQ-5IZ45DZY.js +0 -1
- package/storybook-static/sb-preview/globals.js +0 -1
- package/storybook-static/sb-preview/runtime.js +0 -105
- package/storybook-static/stories.json +0 -1
- package/tsconfig.tsbuildinfo +0 -1
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import { SVGProps } from '@components/Icon/types';
|
|
2
|
-
|
|
3
|
-
export const Bin = ({ fill = '#000', size = 15, ...props }: SVGProps) => (
|
|
4
|
-
<svg
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
width={`${size}px`}
|
|
7
|
-
height={`${size}px`}
|
|
8
|
-
viewBox="0 0 15 15"
|
|
9
|
-
fill="none"
|
|
10
|
-
{...props}>
|
|
11
|
-
<title>Bin</title>
|
|
12
|
-
<path
|
|
13
|
-
d="M9.14062 11.1328C9.39947 11.1328 9.60938 10.9229 9.60938 10.6641V5.97656C9.60938 5.71772 9.39947 5.50781 9.14062 5.50781C8.88178 5.50781 8.67188 5.71772 8.67188 5.97656V10.6641C8.67188 10.9229 8.88178 11.1328 9.14062 11.1328Z"
|
|
14
|
-
fill={fill}
|
|
15
|
-
/>
|
|
16
|
-
<path
|
|
17
|
-
d="M5.85938 11.1328C6.11822 11.1328 6.32812 10.9229 6.32812 10.6641V5.97656C6.32812 5.71772 6.11822 5.50781 5.85938 5.50781C5.60053 5.50781 5.39062 5.71772 5.39062 5.97656V10.6641C5.39062 10.9229 5.60053 11.1328 5.85938 11.1328Z"
|
|
18
|
-
fill={fill}
|
|
19
|
-
/>
|
|
20
|
-
<path
|
|
21
|
-
d="M9.375 1.99219C9.63384 1.99219 9.84375 1.78228 9.84375 1.52344C9.84375 1.26459 9.63384 1.05469 9.375 1.05469H5.625C5.36616 1.05469 5.15625 1.26459 5.15625 1.52344C5.15625 1.78228 5.36616 1.99219 5.625 1.99219H9.375Z"
|
|
22
|
-
fill={fill}
|
|
23
|
-
/>
|
|
24
|
-
<path
|
|
25
|
-
d="M2.34375 2.46094C2.08491 2.46094 1.875 2.67084 1.875 2.92969C1.875 3.18853 2.08491 3.39844 2.34375 3.39844H2.8125V12.0234C2.8125 13.0828 3.675 13.9453 4.73438 13.9453H10.2656C11.325 13.9453 12.1875 13.0828 12.1875 12.0234V3.39844H12.6562C12.9151 3.39844 13.125 3.18853 13.125 2.92969C13.125 2.67084 12.9151 2.46094 12.6562 2.46094H11.7188H3.28125H2.34375ZM11.25 3.39844V12.0234C11.25 12.5672 10.8094 13.0078 10.2656 13.0078H4.73438C4.19063 13.0078 3.75 12.5672 3.75 12.0234V3.39844H11.25Z"
|
|
26
|
-
fill={fill}
|
|
27
|
-
/>
|
|
28
|
-
</svg>
|
|
29
|
-
);
|
|
1
|
+
import { SVGProps } from '@components/Icon/types';
|
|
2
|
+
|
|
3
|
+
export const Bin = ({ fill = '#000', size = 15, ...props }: SVGProps) => (
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
width={`${size}px`}
|
|
7
|
+
height={`${size}px`}
|
|
8
|
+
viewBox="0 0 15 15"
|
|
9
|
+
fill="none"
|
|
10
|
+
{...props}>
|
|
11
|
+
<title>Bin</title>
|
|
12
|
+
<path
|
|
13
|
+
d="M9.14062 11.1328C9.39947 11.1328 9.60938 10.9229 9.60938 10.6641V5.97656C9.60938 5.71772 9.39947 5.50781 9.14062 5.50781C8.88178 5.50781 8.67188 5.71772 8.67188 5.97656V10.6641C8.67188 10.9229 8.88178 11.1328 9.14062 11.1328Z"
|
|
14
|
+
fill={fill}
|
|
15
|
+
/>
|
|
16
|
+
<path
|
|
17
|
+
d="M5.85938 11.1328C6.11822 11.1328 6.32812 10.9229 6.32812 10.6641V5.97656C6.32812 5.71772 6.11822 5.50781 5.85938 5.50781C5.60053 5.50781 5.39062 5.71772 5.39062 5.97656V10.6641C5.39062 10.9229 5.60053 11.1328 5.85938 11.1328Z"
|
|
18
|
+
fill={fill}
|
|
19
|
+
/>
|
|
20
|
+
<path
|
|
21
|
+
d="M9.375 1.99219C9.63384 1.99219 9.84375 1.78228 9.84375 1.52344C9.84375 1.26459 9.63384 1.05469 9.375 1.05469H5.625C5.36616 1.05469 5.15625 1.26459 5.15625 1.52344C5.15625 1.78228 5.36616 1.99219 5.625 1.99219H9.375Z"
|
|
22
|
+
fill={fill}
|
|
23
|
+
/>
|
|
24
|
+
<path
|
|
25
|
+
d="M2.34375 2.46094C2.08491 2.46094 1.875 2.67084 1.875 2.92969C1.875 3.18853 2.08491 3.39844 2.34375 3.39844H2.8125V12.0234C2.8125 13.0828 3.675 13.9453 4.73438 13.9453H10.2656C11.325 13.9453 12.1875 13.0828 12.1875 12.0234V3.39844H12.6562C12.9151 3.39844 13.125 3.18853 13.125 2.92969C13.125 2.67084 12.9151 2.46094 12.6562 2.46094H11.7188H3.28125H2.34375ZM11.25 3.39844V12.0234C11.25 12.5672 10.8094 13.0078 10.2656 13.0078H4.73438C4.19063 13.0078 3.75 12.5672 3.75 12.0234V3.39844H11.25Z"
|
|
26
|
+
fill={fill}
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { SVGProps } from '@components/Icon/types';
|
|
2
|
-
|
|
3
|
-
export const Calendar = ({ fill = '#000', size = 24, ...props }: SVGProps) => (
|
|
4
|
-
<svg
|
|
5
|
-
width={`${size}px`}
|
|
6
|
-
height={`${size}px`}
|
|
7
|
-
viewBox="0 0 20 20"
|
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
-
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
10
|
-
{...props}>
|
|
11
|
-
<title>Calendar</title>
|
|
12
|
-
<path
|
|
13
|
-
d="M3.61111 0C1.6267 0 0 1.6267 0 3.61111V16.3889C0 18.3733 1.6267 20 3.61111 20H16.3889C18.3733 20 20 18.3733 20 16.3889V3.61111C20 1.6267 18.3733 0 16.3889 0H3.61111ZM3.61111 1.66667H16.3889C17.4723 1.66667 18.3333 2.52774 18.3333 3.61111V4.44444H1.66667V3.61111C1.66667 2.52774 2.52774 1.66667 3.61111 1.66667ZM1.66667 6.11111H18.3333V16.3889C18.3333 17.4723 17.4723 18.3333 16.3889 18.3333H3.61111C2.52774 18.3333 1.66667 17.4723 1.66667 16.3889V6.11111ZM5.27778 8.33333C4.90942 8.33333 4.55615 8.47966 4.29569 8.74013C4.03522 9.0006 3.88889 9.35387 3.88889 9.72222C3.88889 10.0906 4.03522 10.4438 4.29569 10.7043C4.55615 10.9648 4.90942 11.1111 5.27778 11.1111C5.64613 11.1111 5.9994 10.9648 6.25987 10.7043C6.52034 10.4438 6.66667 10.0906 6.66667 9.72222C6.66667 9.35387 6.52034 9.0006 6.25987 8.74013C5.9994 8.47966 5.64613 8.33333 5.27778 8.33333ZM10 8.33333C9.63164 8.33333 9.27837 8.47966 9.01791 8.74013C8.75744 9.0006 8.61111 9.35387 8.61111 9.72222C8.61111 10.0906 8.75744 10.4438 9.01791 10.7043C9.27837 10.9648 9.63164 11.1111 10 11.1111C10.3684 11.1111 10.7216 10.9648 10.9821 10.7043C11.2426 10.4438 11.3889 10.0906 11.3889 9.72222C11.3889 9.35387 11.2426 9.0006 10.9821 8.74013C10.7216 8.47966 10.3684 8.33333 10 8.33333ZM14.7222 8.33333C14.3539 8.33333 14.0006 8.47966 13.7401 8.74013C13.4797 9.0006 13.3333 9.35387 13.3333 9.72222C13.3333 10.0906 13.4797 10.4438 13.7401 10.7043C14.0006 10.9648 14.3539 11.1111 14.7222 11.1111C15.0906 11.1111 15.4438 10.9648 15.7043 10.7043C15.9648 10.4438 16.1111 10.0906 16.1111 9.72222C16.1111 9.35387 15.9648 9.0006 15.7043 8.74013C15.4438 8.47966 15.0906 8.33333 14.7222 8.33333ZM5.27778 13.3333C4.90942 13.3333 4.55615 13.4797 4.29569 13.7401C4.03522 14.0006 3.88889 14.3539 3.88889 14.7222C3.88889 15.0906 4.03522 15.4438 4.29569 15.7043C4.55615 15.9648 4.90942 16.1111 5.27778 16.1111C5.64613 16.1111 5.9994 15.9648 6.25987 15.7043C6.52034 15.4438 6.66667 15.0906 6.66667 14.7222C6.66667 14.3539 6.52034 14.0006 6.25987 13.7401C5.9994 13.4797 5.64613 13.3333 5.27778 13.3333ZM10 13.3333C9.63164 13.3333 9.27837 13.4797 9.01791 13.7401C8.75744 14.0006 8.61111 14.3539 8.61111 14.7222C8.61111 15.0906 8.75744 15.4438 9.01791 15.7043C9.27837 15.9648 9.63164 16.1111 10 16.1111C10.3684 16.1111 10.7216 15.9648 10.9821 15.7043C11.2426 15.4438 11.3889 15.0906 11.3889 14.7222C11.3889 14.3539 11.2426 14.0006 10.9821 13.7401C10.7216 13.4797 10.3684 13.3333 10 13.3333Z"
|
|
14
|
-
fill={fill}
|
|
15
|
-
/>
|
|
16
|
-
</svg>
|
|
17
|
-
);
|
|
1
|
+
import { SVGProps } from '@components/Icon/types';
|
|
2
|
+
|
|
3
|
+
export const Calendar = ({ fill = '#000', size = 24, ...props }: SVGProps) => (
|
|
4
|
+
<svg
|
|
5
|
+
width={`${size}px`}
|
|
6
|
+
height={`${size}px`}
|
|
7
|
+
viewBox="0 0 20 20"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
10
|
+
{...props}>
|
|
11
|
+
<title>Calendar</title>
|
|
12
|
+
<path
|
|
13
|
+
d="M3.61111 0C1.6267 0 0 1.6267 0 3.61111V16.3889C0 18.3733 1.6267 20 3.61111 20H16.3889C18.3733 20 20 18.3733 20 16.3889V3.61111C20 1.6267 18.3733 0 16.3889 0H3.61111ZM3.61111 1.66667H16.3889C17.4723 1.66667 18.3333 2.52774 18.3333 3.61111V4.44444H1.66667V3.61111C1.66667 2.52774 2.52774 1.66667 3.61111 1.66667ZM1.66667 6.11111H18.3333V16.3889C18.3333 17.4723 17.4723 18.3333 16.3889 18.3333H3.61111C2.52774 18.3333 1.66667 17.4723 1.66667 16.3889V6.11111ZM5.27778 8.33333C4.90942 8.33333 4.55615 8.47966 4.29569 8.74013C4.03522 9.0006 3.88889 9.35387 3.88889 9.72222C3.88889 10.0906 4.03522 10.4438 4.29569 10.7043C4.55615 10.9648 4.90942 11.1111 5.27778 11.1111C5.64613 11.1111 5.9994 10.9648 6.25987 10.7043C6.52034 10.4438 6.66667 10.0906 6.66667 9.72222C6.66667 9.35387 6.52034 9.0006 6.25987 8.74013C5.9994 8.47966 5.64613 8.33333 5.27778 8.33333ZM10 8.33333C9.63164 8.33333 9.27837 8.47966 9.01791 8.74013C8.75744 9.0006 8.61111 9.35387 8.61111 9.72222C8.61111 10.0906 8.75744 10.4438 9.01791 10.7043C9.27837 10.9648 9.63164 11.1111 10 11.1111C10.3684 11.1111 10.7216 10.9648 10.9821 10.7043C11.2426 10.4438 11.3889 10.0906 11.3889 9.72222C11.3889 9.35387 11.2426 9.0006 10.9821 8.74013C10.7216 8.47966 10.3684 8.33333 10 8.33333ZM14.7222 8.33333C14.3539 8.33333 14.0006 8.47966 13.7401 8.74013C13.4797 9.0006 13.3333 9.35387 13.3333 9.72222C13.3333 10.0906 13.4797 10.4438 13.7401 10.7043C14.0006 10.9648 14.3539 11.1111 14.7222 11.1111C15.0906 11.1111 15.4438 10.9648 15.7043 10.7043C15.9648 10.4438 16.1111 10.0906 16.1111 9.72222C16.1111 9.35387 15.9648 9.0006 15.7043 8.74013C15.4438 8.47966 15.0906 8.33333 14.7222 8.33333ZM5.27778 13.3333C4.90942 13.3333 4.55615 13.4797 4.29569 13.7401C4.03522 14.0006 3.88889 14.3539 3.88889 14.7222C3.88889 15.0906 4.03522 15.4438 4.29569 15.7043C4.55615 15.9648 4.90942 16.1111 5.27778 16.1111C5.64613 16.1111 5.9994 15.9648 6.25987 15.7043C6.52034 15.4438 6.66667 15.0906 6.66667 14.7222C6.66667 14.3539 6.52034 14.0006 6.25987 13.7401C5.9994 13.4797 5.64613 13.3333 5.27778 13.3333ZM10 13.3333C9.63164 13.3333 9.27837 13.4797 9.01791 13.7401C8.75744 14.0006 8.61111 14.3539 8.61111 14.7222C8.61111 15.0906 8.75744 15.4438 9.01791 15.7043C9.27837 15.9648 9.63164 16.1111 10 16.1111C10.3684 16.1111 10.7216 15.9648 10.9821 15.7043C11.2426 15.4438 11.3889 15.0906 11.3889 14.7222C11.3889 14.3539 11.2426 14.0006 10.9821 13.7401C10.7216 13.4797 10.3684 13.3333 10 13.3333Z"
|
|
14
|
+
fill={fill}
|
|
15
|
+
/>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SVGProps } from '@components/Icon/types';
|
|
2
|
-
|
|
3
|
-
export const CarrotDown = ({
|
|
4
|
-
fill = '#000',
|
|
5
|
-
size = 24,
|
|
6
|
-
...props
|
|
7
|
-
}: SVGProps) => (
|
|
8
|
-
<svg
|
|
9
|
-
width={`${size}px`}
|
|
10
|
-
height={`${size}px`}
|
|
11
|
-
viewBox="0 0 18 10"
|
|
12
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
-
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
14
|
-
{...props}>
|
|
15
|
-
<title>Carrot down</title>
|
|
16
|
-
<path
|
|
17
|
-
d="M17 1L9 9L1 1"
|
|
18
|
-
stroke={fill}
|
|
19
|
-
strokeWidth="1.8"
|
|
20
|
-
strokeLinecap="round"
|
|
21
|
-
strokeLinejoin="round"
|
|
22
|
-
fill="none"
|
|
23
|
-
/>
|
|
24
|
-
</svg>
|
|
25
|
-
);
|
|
1
|
+
import { SVGProps } from '@components/Icon/types';
|
|
2
|
+
|
|
3
|
+
export const CarrotDown = ({
|
|
4
|
+
fill = '#000',
|
|
5
|
+
size = 24,
|
|
6
|
+
...props
|
|
7
|
+
}: SVGProps) => (
|
|
8
|
+
<svg
|
|
9
|
+
width={`${size}px`}
|
|
10
|
+
height={`${size}px`}
|
|
11
|
+
viewBox="0 0 18 10"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
14
|
+
{...props}>
|
|
15
|
+
<title>Carrot down</title>
|
|
16
|
+
<path
|
|
17
|
+
d="M17 1L9 9L1 1"
|
|
18
|
+
stroke={fill}
|
|
19
|
+
strokeWidth="1.8"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
fill="none"
|
|
23
|
+
/>
|
|
24
|
+
</svg>
|
|
25
|
+
);
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SVGProps } from '@components/Icon/types';
|
|
2
|
-
|
|
3
|
-
export const CarrotLeft = ({
|
|
4
|
-
fill = '#000',
|
|
5
|
-
size = 24,
|
|
6
|
-
...props
|
|
7
|
-
}: SVGProps) => (
|
|
8
|
-
<svg
|
|
9
|
-
width={`${size}px`}
|
|
10
|
-
height={`${size}px`}
|
|
11
|
-
viewBox="0 0 11 18"
|
|
12
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
-
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
14
|
-
{...props}>
|
|
15
|
-
<title>Carrot left</title>
|
|
16
|
-
<path
|
|
17
|
-
d="M9.5 0.999999L1.5 9L9.5 17"
|
|
18
|
-
stroke={fill}
|
|
19
|
-
strokeWidth="1.8"
|
|
20
|
-
strokeLinecap="round"
|
|
21
|
-
strokeLinejoin="round"
|
|
22
|
-
fill="none"
|
|
23
|
-
/>
|
|
24
|
-
</svg>
|
|
25
|
-
);
|
|
1
|
+
import { SVGProps } from '@components/Icon/types';
|
|
2
|
+
|
|
3
|
+
export const CarrotLeft = ({
|
|
4
|
+
fill = '#000',
|
|
5
|
+
size = 24,
|
|
6
|
+
...props
|
|
7
|
+
}: SVGProps) => (
|
|
8
|
+
<svg
|
|
9
|
+
width={`${size}px`}
|
|
10
|
+
height={`${size}px`}
|
|
11
|
+
viewBox="0 0 11 18"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
14
|
+
{...props}>
|
|
15
|
+
<title>Carrot left</title>
|
|
16
|
+
<path
|
|
17
|
+
d="M9.5 0.999999L1.5 9L9.5 17"
|
|
18
|
+
stroke={fill}
|
|
19
|
+
strokeWidth="1.8"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
fill="none"
|
|
23
|
+
/>
|
|
24
|
+
</svg>
|
|
25
|
+
);
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { SVGProps } from '@components/Icon/types';
|
|
2
|
-
|
|
3
|
-
export const CarrotRight = ({
|
|
4
|
-
fill = '#000',
|
|
5
|
-
size = 24,
|
|
6
|
-
...props
|
|
7
|
-
}: SVGProps) => (
|
|
8
|
-
<svg
|
|
9
|
-
width={`${size}px`}
|
|
10
|
-
height={`${size}px`}
|
|
11
|
-
viewBox="0 0 11 18"
|
|
12
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
-
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
14
|
-
{...props}>
|
|
15
|
-
<title>Carrot right</title>
|
|
16
|
-
<path
|
|
17
|
-
d="M1.5 0.999999L9.5 9L1.5 17"
|
|
18
|
-
stroke={fill}
|
|
19
|
-
strokeWidth="1.8"
|
|
20
|
-
strokeLinecap="round"
|
|
21
|
-
strokeLinejoin="round"
|
|
22
|
-
fill="none"
|
|
23
|
-
/>
|
|
24
|
-
</svg>
|
|
25
|
-
);
|
|
1
|
+
import { SVGProps } from '@components/Icon/types';
|
|
2
|
+
|
|
3
|
+
export const CarrotRight = ({
|
|
4
|
+
fill = '#000',
|
|
5
|
+
size = 24,
|
|
6
|
+
...props
|
|
7
|
+
}: SVGProps) => (
|
|
8
|
+
<svg
|
|
9
|
+
width={`${size}px`}
|
|
10
|
+
height={`${size}px`}
|
|
11
|
+
viewBox="0 0 11 18"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
14
|
+
{...props}>
|
|
15
|
+
<title>Carrot right</title>
|
|
16
|
+
<path
|
|
17
|
+
d="M1.5 0.999999L9.5 9L1.5 17"
|
|
18
|
+
stroke={fill}
|
|
19
|
+
strokeWidth="1.8"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
fill="none"
|
|
23
|
+
/>
|
|
24
|
+
</svg>
|
|
25
|
+
);
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { SVGProps } from '@components/Icon/types';
|
|
2
|
-
|
|
3
|
-
export const CarrotUp = ({ fill = '#000', size = 24, ...props }: SVGProps) => (
|
|
4
|
-
<svg
|
|
5
|
-
width={`${size}px`}
|
|
6
|
-
height={`${size}px`}
|
|
7
|
-
viewBox="0 0 18 10"
|
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
-
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
10
|
-
{...props}>
|
|
11
|
-
<title>Carrot up</title>
|
|
12
|
-
<path
|
|
13
|
-
d="M17 9.5L9 1.5L1 9.5"
|
|
14
|
-
stroke={fill}
|
|
15
|
-
strokeWidth="1.8"
|
|
16
|
-
strokeLinecap="round"
|
|
17
|
-
strokeLinejoin="round"
|
|
18
|
-
fill="none"
|
|
19
|
-
/>
|
|
20
|
-
</svg>
|
|
21
|
-
);
|
|
1
|
+
import { SVGProps } from '@components/Icon/types';
|
|
2
|
+
|
|
3
|
+
export const CarrotUp = ({ fill = '#000', size = 24, ...props }: SVGProps) => (
|
|
4
|
+
<svg
|
|
5
|
+
width={`${size}px`}
|
|
6
|
+
height={`${size}px`}
|
|
7
|
+
viewBox="0 0 18 10"
|
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
9
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
10
|
+
{...props}>
|
|
11
|
+
<title>Carrot up</title>
|
|
12
|
+
<path
|
|
13
|
+
d="M17 9.5L9 1.5L1 9.5"
|
|
14
|
+
stroke={fill}
|
|
15
|
+
strokeWidth="1.8"
|
|
16
|
+
strokeLinecap="round"
|
|
17
|
+
strokeLinejoin="round"
|
|
18
|
+
fill="none"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
21
|
+
);
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { SVGProps } from '@components/Icon/types';
|
|
2
|
-
|
|
3
|
-
export const Change = ({ fill = '#000', size = 15, ...props }: SVGProps) => (
|
|
4
|
-
<svg
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
width={`${size}px`}
|
|
7
|
-
height={`${size}px`}
|
|
8
|
-
viewBox="0 0 15 15"
|
|
9
|
-
fill="none"
|
|
10
|
-
{...props}>
|
|
11
|
-
<title>Change</title>
|
|
12
|
-
<path
|
|
13
|
-
d="M4.3628 1.24246C4.20043 1.2473 4.04632 1.31518 3.93312 1.43169L1.43311 3.93289C1.37491 3.99095 1.32874 4.05988 1.29723 4.13582C1.26573 4.21175 1.24951 4.29316 1.24951 4.37537C1.24951 4.45758 1.26573 4.53898 1.29723 4.61492C1.32874 4.69085 1.37491 4.75979 1.43311 4.81785L3.93312 7.31911C3.99087 7.37893 4.05998 7.42662 4.1364 7.4594C4.21283 7.49217 4.29502 7.50939 4.37817 7.51C4.46132 7.51062 4.54376 7.49464 4.62066 7.463C4.69755 7.43136 4.76736 7.38463 4.826 7.32567C4.88463 7.26671 4.93092 7.19671 4.96213 7.11964C4.99335 7.04257 5.00888 6.95999 5.0078 6.87685C5.00673 6.7937 4.98907 6.71159 4.95588 6.63535C4.92268 6.55911 4.8746 6.49028 4.81446 6.43285L3.38258 4.99857H13.1238C13.2897 4.99857 13.4488 4.93265 13.5662 4.81532C13.6835 4.698 13.7494 4.53884 13.7494 4.37292C13.7494 4.20699 13.6835 4.04791 13.5662 3.93058C13.4488 3.81325 13.2897 3.74733 13.1238 3.74733H3.38868L4.81446 2.31788C4.90548 2.23039 4.96787 2.11734 4.99342 1.9937C5.01897 1.87006 5.00647 1.74158 4.95759 1.62518C4.9087 1.50878 4.82571 1.4099 4.71954 1.34158C4.61337 1.27326 4.489 1.23873 4.3628 1.24246ZM10.6189 7.49364C10.4953 7.49464 10.3747 7.53226 10.2725 7.60177C10.1703 7.67128 10.091 7.76955 10.0446 7.88414C9.99819 7.99873 9.98683 8.12455 10.0119 8.2456C10.037 8.36665 10.0974 8.47752 10.1856 8.56423L11.6199 9.99973H1.87623C1.71284 10.0033 1.55734 10.0708 1.44306 10.1876C1.32877 10.3044 1.26477 10.4613 1.26477 10.6247C1.26477 10.7882 1.32877 10.9451 1.44306 11.062C1.55734 11.1788 1.71284 11.2462 1.87623 11.2498H11.6162L10.1856 12.6841C10.1201 12.7401 10.067 12.8091 10.0295 12.8866C9.99196 12.9641 9.97088 13.0486 9.96756 13.1347C9.96424 13.2208 9.97874 13.3066 10.0102 13.3868C10.0416 13.467 10.0893 13.5399 10.1502 13.6009C10.2111 13.6618 10.2839 13.7094 10.3641 13.7409C10.4444 13.7723 10.5302 13.7868 10.6163 13.7835C10.7024 13.7801 10.7868 13.759 10.8644 13.7215C10.9419 13.684 11.0109 13.6309 11.0669 13.5655L13.5669 11.0654C13.6833 10.9483 13.7487 10.7899 13.7487 10.6247C13.7487 10.4596 13.6833 10.3012 13.5669 10.1841L11.0669 7.68287C11.0087 7.623 10.939 7.57537 10.8621 7.54287C10.7851 7.51038 10.7024 7.49364 10.6189 7.49364Z"
|
|
14
|
-
fill={fill}
|
|
15
|
-
/>
|
|
16
|
-
</svg>
|
|
17
|
-
);
|
|
1
|
+
import { SVGProps } from '@components/Icon/types';
|
|
2
|
+
|
|
3
|
+
export const Change = ({ fill = '#000', size = 15, ...props }: SVGProps) => (
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
width={`${size}px`}
|
|
7
|
+
height={`${size}px`}
|
|
8
|
+
viewBox="0 0 15 15"
|
|
9
|
+
fill="none"
|
|
10
|
+
{...props}>
|
|
11
|
+
<title>Change</title>
|
|
12
|
+
<path
|
|
13
|
+
d="M4.3628 1.24246C4.20043 1.2473 4.04632 1.31518 3.93312 1.43169L1.43311 3.93289C1.37491 3.99095 1.32874 4.05988 1.29723 4.13582C1.26573 4.21175 1.24951 4.29316 1.24951 4.37537C1.24951 4.45758 1.26573 4.53898 1.29723 4.61492C1.32874 4.69085 1.37491 4.75979 1.43311 4.81785L3.93312 7.31911C3.99087 7.37893 4.05998 7.42662 4.1364 7.4594C4.21283 7.49217 4.29502 7.50939 4.37817 7.51C4.46132 7.51062 4.54376 7.49464 4.62066 7.463C4.69755 7.43136 4.76736 7.38463 4.826 7.32567C4.88463 7.26671 4.93092 7.19671 4.96213 7.11964C4.99335 7.04257 5.00888 6.95999 5.0078 6.87685C5.00673 6.7937 4.98907 6.71159 4.95588 6.63535C4.92268 6.55911 4.8746 6.49028 4.81446 6.43285L3.38258 4.99857H13.1238C13.2897 4.99857 13.4488 4.93265 13.5662 4.81532C13.6835 4.698 13.7494 4.53884 13.7494 4.37292C13.7494 4.20699 13.6835 4.04791 13.5662 3.93058C13.4488 3.81325 13.2897 3.74733 13.1238 3.74733H3.38868L4.81446 2.31788C4.90548 2.23039 4.96787 2.11734 4.99342 1.9937C5.01897 1.87006 5.00647 1.74158 4.95759 1.62518C4.9087 1.50878 4.82571 1.4099 4.71954 1.34158C4.61337 1.27326 4.489 1.23873 4.3628 1.24246ZM10.6189 7.49364C10.4953 7.49464 10.3747 7.53226 10.2725 7.60177C10.1703 7.67128 10.091 7.76955 10.0446 7.88414C9.99819 7.99873 9.98683 8.12455 10.0119 8.2456C10.037 8.36665 10.0974 8.47752 10.1856 8.56423L11.6199 9.99973H1.87623C1.71284 10.0033 1.55734 10.0708 1.44306 10.1876C1.32877 10.3044 1.26477 10.4613 1.26477 10.6247C1.26477 10.7882 1.32877 10.9451 1.44306 11.062C1.55734 11.1788 1.71284 11.2462 1.87623 11.2498H11.6162L10.1856 12.6841C10.1201 12.7401 10.067 12.8091 10.0295 12.8866C9.99196 12.9641 9.97088 13.0486 9.96756 13.1347C9.96424 13.2208 9.97874 13.3066 10.0102 13.3868C10.0416 13.467 10.0893 13.5399 10.1502 13.6009C10.2111 13.6618 10.2839 13.7094 10.3641 13.7409C10.4444 13.7723 10.5302 13.7868 10.6163 13.7835C10.7024 13.7801 10.7868 13.759 10.8644 13.7215C10.9419 13.684 11.0109 13.6309 11.0669 13.5655L13.5669 11.0654C13.6833 10.9483 13.7487 10.7899 13.7487 10.6247C13.7487 10.4596 13.6833 10.3012 13.5669 10.1841L11.0669 7.68287C11.0087 7.623 10.939 7.57537 10.8621 7.54287C10.7851 7.51038 10.7024 7.49364 10.6189 7.49364Z"
|
|
14
|
+
fill={fill}
|
|
15
|
+
/>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
import { SVGProps } from '@components/Icon/types';
|
|
2
|
-
|
|
3
|
-
export const Chart = ({ fill = '#000', size = 15, ...props }: SVGProps) => (
|
|
4
|
-
<svg
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
width={`${size}px`}
|
|
7
|
-
height={`${size}px`}
|
|
8
|
-
viewBox="0 0 22 22"
|
|
9
|
-
fill="none"
|
|
10
|
-
{...props}>
|
|
11
|
-
<title>Chart</title>
|
|
12
|
-
<g clipPath="url(#clip0_2353_10249)">
|
|
13
|
-
<path
|
|
14
|
-
d="M15.9118 19.3153L15.9119 19.3152C16.1279 19.1374 16.1629 18.8202 15.9915 18.5992L15.9914 18.5991L10.2667 11.2396V2.24969C10.2667 1.96446 10.0352 1.73301 9.75 1.73301C4.8614 1.73301 0.9 6.08572 0.9 11.4163C0.9 16.7557 5.24395 21.0997 10.5833 21.0997C11.771 21.0997 12.6938 20.9922 13.526 20.7137C14.359 20.4349 15.0948 19.987 15.9118 19.3153ZM10.5833 20.0664C5.81355 20.0664 1.93332 16.1861 1.93332 11.4164C1.93332 6.83058 5.17123 3.0801 9.23332 2.78478V11.4164C9.23332 11.531 9.27152 11.6427 9.34279 11.7337C9.34284 11.7338 9.3429 11.7338 9.34295 11.7339L14.8604 18.8277C14.2411 19.2904 13.6698 19.5955 13.0225 19.7874C12.346 19.9879 11.5811 20.0664 10.5833 20.0664Z"
|
|
15
|
-
fill={fill}
|
|
16
|
-
stroke={fill}
|
|
17
|
-
strokeWidth="0.2"
|
|
18
|
-
/>
|
|
19
|
-
<path
|
|
20
|
-
d="M11.4167 11.1H20.5834C20.8686 11.1 21.1 10.8685 21.1 10.5833C21.1 5.24395 16.756 0.9 11.4167 0.9C11.1315 0.9 10.9 1.13145 10.9 1.41668V10.5834C10.9 10.8686 11.1315 11.1 11.4167 11.1ZM11.9333 10.0666V1.94877C16.2925 2.20673 19.7933 5.70751 20.0512 10.0666H11.9333Z"
|
|
21
|
-
fill={fill}
|
|
22
|
-
stroke={fill}
|
|
23
|
-
strokeWidth="0.2"
|
|
24
|
-
/>
|
|
25
|
-
<path
|
|
26
|
-
d="M18.0192 19.3336L18.0189 19.3339C17.9231 19.4225 17.7972 19.4721 17.6668 19.4721L18.0192 19.3336ZM18.0192 19.3336C19.9769 17.5072 21.1001 14.9258 21.1001 12.2497C21.1001 11.9645 20.8687 11.733 20.5835 11.733H12.2501M18.0192 19.3336L12.2501 11.733M12.2501 11.733C12.0517 11.733 11.8691 11.8475 11.7832 12.0274M12.2501 11.733L11.7832 12.0274M11.7832 12.0274C11.6974 12.2073 11.7232 12.4202 11.8482 12.5743M11.7832 12.0274L11.8482 12.5743M11.8482 12.5743C11.8483 12.5743 11.8483 12.5743 11.8483 12.5744M11.8482 12.5743L11.8483 12.5744M11.8483 12.5744L17.2645 19.2795C17.2645 19.2796 17.2646 19.2797 17.2647 19.2797C17.3549 19.3926 17.4872 19.4606 17.63 19.471C17.6298 19.471 17.6296 19.471 17.6295 19.471L11.8483 12.5744ZM20.0512 12.7664C19.9288 14.7847 19.0958 16.7118 17.7089 18.185L13.332 12.7664H20.0512Z"
|
|
27
|
-
fill={fill}
|
|
28
|
-
stroke={fill}
|
|
29
|
-
strokeWidth="0.2"
|
|
30
|
-
/>
|
|
31
|
-
</g>
|
|
32
|
-
<defs>
|
|
33
|
-
<clipPath id="clip0_2353_10249">
|
|
34
|
-
<rect width="22" height="22" fill="white" />
|
|
35
|
-
</clipPath>
|
|
36
|
-
</defs>
|
|
37
|
-
</svg>
|
|
38
|
-
);
|
|
1
|
+
import { SVGProps } from '@components/Icon/types';
|
|
2
|
+
|
|
3
|
+
export const Chart = ({ fill = '#000', size = 15, ...props }: SVGProps) => (
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
width={`${size}px`}
|
|
7
|
+
height={`${size}px`}
|
|
8
|
+
viewBox="0 0 22 22"
|
|
9
|
+
fill="none"
|
|
10
|
+
{...props}>
|
|
11
|
+
<title>Chart</title>
|
|
12
|
+
<g clipPath="url(#clip0_2353_10249)">
|
|
13
|
+
<path
|
|
14
|
+
d="M15.9118 19.3153L15.9119 19.3152C16.1279 19.1374 16.1629 18.8202 15.9915 18.5992L15.9914 18.5991L10.2667 11.2396V2.24969C10.2667 1.96446 10.0352 1.73301 9.75 1.73301C4.8614 1.73301 0.9 6.08572 0.9 11.4163C0.9 16.7557 5.24395 21.0997 10.5833 21.0997C11.771 21.0997 12.6938 20.9922 13.526 20.7137C14.359 20.4349 15.0948 19.987 15.9118 19.3153ZM10.5833 20.0664C5.81355 20.0664 1.93332 16.1861 1.93332 11.4164C1.93332 6.83058 5.17123 3.0801 9.23332 2.78478V11.4164C9.23332 11.531 9.27152 11.6427 9.34279 11.7337C9.34284 11.7338 9.3429 11.7338 9.34295 11.7339L14.8604 18.8277C14.2411 19.2904 13.6698 19.5955 13.0225 19.7874C12.346 19.9879 11.5811 20.0664 10.5833 20.0664Z"
|
|
15
|
+
fill={fill}
|
|
16
|
+
stroke={fill}
|
|
17
|
+
strokeWidth="0.2"
|
|
18
|
+
/>
|
|
19
|
+
<path
|
|
20
|
+
d="M11.4167 11.1H20.5834C20.8686 11.1 21.1 10.8685 21.1 10.5833C21.1 5.24395 16.756 0.9 11.4167 0.9C11.1315 0.9 10.9 1.13145 10.9 1.41668V10.5834C10.9 10.8686 11.1315 11.1 11.4167 11.1ZM11.9333 10.0666V1.94877C16.2925 2.20673 19.7933 5.70751 20.0512 10.0666H11.9333Z"
|
|
21
|
+
fill={fill}
|
|
22
|
+
stroke={fill}
|
|
23
|
+
strokeWidth="0.2"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
d="M18.0192 19.3336L18.0189 19.3339C17.9231 19.4225 17.7972 19.4721 17.6668 19.4721L18.0192 19.3336ZM18.0192 19.3336C19.9769 17.5072 21.1001 14.9258 21.1001 12.2497C21.1001 11.9645 20.8687 11.733 20.5835 11.733H12.2501M18.0192 19.3336L12.2501 11.733M12.2501 11.733C12.0517 11.733 11.8691 11.8475 11.7832 12.0274M12.2501 11.733L11.7832 12.0274M11.7832 12.0274C11.6974 12.2073 11.7232 12.4202 11.8482 12.5743M11.7832 12.0274L11.8482 12.5743M11.8482 12.5743C11.8483 12.5743 11.8483 12.5743 11.8483 12.5744M11.8482 12.5743L11.8483 12.5744M11.8483 12.5744L17.2645 19.2795C17.2645 19.2796 17.2646 19.2797 17.2647 19.2797C17.3549 19.3926 17.4872 19.4606 17.63 19.471C17.6298 19.471 17.6296 19.471 17.6295 19.471L11.8483 12.5744ZM20.0512 12.7664C19.9288 14.7847 19.0958 16.7118 17.7089 18.185L13.332 12.7664H20.0512Z"
|
|
27
|
+
fill={fill}
|
|
28
|
+
stroke={fill}
|
|
29
|
+
strokeWidth="0.2"
|
|
30
|
+
/>
|
|
31
|
+
</g>
|
|
32
|
+
<defs>
|
|
33
|
+
<clipPath id="clip0_2353_10249">
|
|
34
|
+
<rect width="22" height="22" fill="white" />
|
|
35
|
+
</clipPath>
|
|
36
|
+
</defs>
|
|
37
|
+
</svg>
|
|
38
|
+
);
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
import { SVGProps } from '@components/Icon/types';
|
|
2
|
-
|
|
3
|
-
export const Check = ({ fill = '#000', size = 24, ...props }: SVGProps) => (
|
|
4
|
-
<svg
|
|
5
|
-
width={`${size}px`}
|
|
6
|
-
height={`${size}px`}
|
|
7
|
-
fill="none"
|
|
8
|
-
viewBox="0 0 11 8"
|
|
9
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
-
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
11
|
-
{...props}>
|
|
12
|
-
<title>Check</title>
|
|
13
|
-
<path
|
|
14
|
-
d="M1 3.83L3.83 6.66L9.5 1"
|
|
15
|
-
stroke={fill}
|
|
16
|
-
strokeWidth="1.4"
|
|
17
|
-
strokeLinecap="round"
|
|
18
|
-
strokeLinejoin="round"
|
|
19
|
-
/>
|
|
20
|
-
</svg>
|
|
21
|
-
);
|
|
1
|
+
import { SVGProps } from '@components/Icon/types';
|
|
2
|
+
|
|
3
|
+
export const Check = ({ fill = '#000', size = 24, ...props }: SVGProps) => (
|
|
4
|
+
<svg
|
|
5
|
+
width={`${size}px`}
|
|
6
|
+
height={`${size}px`}
|
|
7
|
+
fill="none"
|
|
8
|
+
viewBox="0 0 11 8"
|
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
+
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
11
|
+
{...props}>
|
|
12
|
+
<title>Check</title>
|
|
13
|
+
<path
|
|
14
|
+
d="M1 3.83L3.83 6.66L9.5 1"
|
|
15
|
+
stroke={fill}
|
|
16
|
+
strokeWidth="1.4"
|
|
17
|
+
strokeLinecap="round"
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
/>
|
|
20
|
+
</svg>
|
|
21
|
+
);
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import { SVGProps } from '@components/Icon/types';
|
|
2
|
-
|
|
3
|
-
export const CheckCircle = ({
|
|
4
|
-
fill = '#000',
|
|
5
|
-
size = 24,
|
|
6
|
-
...props
|
|
7
|
-
}: SVGProps) => (
|
|
8
|
-
<svg
|
|
9
|
-
width={`${size}px`}
|
|
10
|
-
height={`${size}px`}
|
|
11
|
-
viewBox="0 0 20 20"
|
|
12
|
-
fill="none"
|
|
13
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
-
{...props}>
|
|
15
|
-
<title>Check circle</title>
|
|
16
|
-
<path
|
|
17
|
-
d="M10.0003 18.3334C14.5837 18.3334 18.3337 14.5834 18.3337 10.0001C18.3337 5.41675 14.5837 1.66675 10.0003 1.66675C5.41699 1.66675 1.66699 5.41675 1.66699 10.0001C1.66699 14.5834 5.41699 18.3334 10.0003 18.3334Z"
|
|
18
|
-
stroke={fill}
|
|
19
|
-
strokeWidth="1.4"
|
|
20
|
-
strokeLinecap="round"
|
|
21
|
-
strokeLinejoin="round"
|
|
22
|
-
/>
|
|
23
|
-
<path
|
|
24
|
-
d="M6.45801 9.99993L8.81634 12.3583L13.5413 7.6416"
|
|
25
|
-
stroke={fill}
|
|
26
|
-
strokeWidth="1.4"
|
|
27
|
-
strokeLinecap="round"
|
|
28
|
-
strokeLinejoin="round"
|
|
29
|
-
/>
|
|
30
|
-
</svg>
|
|
31
|
-
);
|
|
1
|
+
import { SVGProps } from '@components/Icon/types';
|
|
2
|
+
|
|
3
|
+
export const CheckCircle = ({
|
|
4
|
+
fill = '#000',
|
|
5
|
+
size = 24,
|
|
6
|
+
...props
|
|
7
|
+
}: SVGProps) => (
|
|
8
|
+
<svg
|
|
9
|
+
width={`${size}px`}
|
|
10
|
+
height={`${size}px`}
|
|
11
|
+
viewBox="0 0 20 20"
|
|
12
|
+
fill="none"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
{...props}>
|
|
15
|
+
<title>Check circle</title>
|
|
16
|
+
<path
|
|
17
|
+
d="M10.0003 18.3334C14.5837 18.3334 18.3337 14.5834 18.3337 10.0001C18.3337 5.41675 14.5837 1.66675 10.0003 1.66675C5.41699 1.66675 1.66699 5.41675 1.66699 10.0001C1.66699 14.5834 5.41699 18.3334 10.0003 18.3334Z"
|
|
18
|
+
stroke={fill}
|
|
19
|
+
strokeWidth="1.4"
|
|
20
|
+
strokeLinecap="round"
|
|
21
|
+
strokeLinejoin="round"
|
|
22
|
+
/>
|
|
23
|
+
<path
|
|
24
|
+
d="M6.45801 9.99993L8.81634 12.3583L13.5413 7.6416"
|
|
25
|
+
stroke={fill}
|
|
26
|
+
strokeWidth="1.4"
|
|
27
|
+
strokeLinecap="round"
|
|
28
|
+
strokeLinejoin="round"
|
|
29
|
+
/>
|
|
30
|
+
</svg>
|
|
31
|
+
);
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { SVGProps } from '@components/Icon/types';
|
|
2
|
-
|
|
3
|
-
export const Circle = ({ fill = '#000', size = 24, ...props }: SVGProps) => (
|
|
4
|
-
<svg
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
width={`${size}px`}
|
|
7
|
-
height={`${size}px`}
|
|
8
|
-
viewBox="0 0 20 21"
|
|
9
|
-
fill="#fff"
|
|
10
|
-
{...props}>
|
|
11
|
-
<title>Circle</title>
|
|
12
|
-
<rect x="0.7" y="1.39995" width="18.6" height="18.6" rx="9.3" fill="none" />
|
|
13
|
-
<rect
|
|
14
|
-
x="0.7"
|
|
15
|
-
y="1.39995"
|
|
16
|
-
width="18.6"
|
|
17
|
-
height="18.6"
|
|
18
|
-
rx="9.3"
|
|
19
|
-
stroke={fill}
|
|
20
|
-
strokeWidth="1.4"
|
|
21
|
-
/>
|
|
22
|
-
</svg>
|
|
23
|
-
);
|
|
1
|
+
import { SVGProps } from '@components/Icon/types';
|
|
2
|
+
|
|
3
|
+
export const Circle = ({ fill = '#000', size = 24, ...props }: SVGProps) => (
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
width={`${size}px`}
|
|
7
|
+
height={`${size}px`}
|
|
8
|
+
viewBox="0 0 20 21"
|
|
9
|
+
fill="#fff"
|
|
10
|
+
{...props}>
|
|
11
|
+
<title>Circle</title>
|
|
12
|
+
<rect x="0.7" y="1.39995" width="18.6" height="18.6" rx="9.3" fill="none" />
|
|
13
|
+
<rect
|
|
14
|
+
x="0.7"
|
|
15
|
+
y="1.39995"
|
|
16
|
+
width="18.6"
|
|
17
|
+
height="18.6"
|
|
18
|
+
rx="9.3"
|
|
19
|
+
stroke={fill}
|
|
20
|
+
strokeWidth="1.4"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import { SVGProps } from '@components/Icon/types';
|
|
2
|
-
|
|
3
|
-
export const Clock = ({ fill = '#000', size = 15, ...props }: SVGProps) => (
|
|
4
|
-
<svg
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
width={`${size}px`}
|
|
7
|
-
height={`${size}px`}
|
|
8
|
-
viewBox="0 0 24 24"
|
|
9
|
-
fill="none"
|
|
10
|
-
{...props}>
|
|
11
|
-
<title>Clock</title>
|
|
12
|
-
<circle
|
|
13
|
-
cx="12.1001"
|
|
14
|
-
cy="12.1001"
|
|
15
|
-
r="11.1001"
|
|
16
|
-
stroke={fill}
|
|
17
|
-
strokeWidth="1.4"
|
|
18
|
-
/>
|
|
19
|
-
<path
|
|
20
|
-
d="M11.4824 6.18066L11.4835 13.1411"
|
|
21
|
-
stroke={fill}
|
|
22
|
-
strokeWidth="1.4"
|
|
23
|
-
strokeLinecap="round"
|
|
24
|
-
/>
|
|
25
|
-
<path
|
|
26
|
-
d="M18.8843 11.4834L11.4842 13.3334"
|
|
27
|
-
stroke={fill}
|
|
28
|
-
strokeWidth="1.4"
|
|
29
|
-
strokeLinecap="round"
|
|
30
|
-
/>
|
|
31
|
-
</svg>
|
|
32
|
-
);
|
|
1
|
+
import { SVGProps } from '@components/Icon/types';
|
|
2
|
+
|
|
3
|
+
export const Clock = ({ fill = '#000', size = 15, ...props }: SVGProps) => (
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
width={`${size}px`}
|
|
7
|
+
height={`${size}px`}
|
|
8
|
+
viewBox="0 0 24 24"
|
|
9
|
+
fill="none"
|
|
10
|
+
{...props}>
|
|
11
|
+
<title>Clock</title>
|
|
12
|
+
<circle
|
|
13
|
+
cx="12.1001"
|
|
14
|
+
cy="12.1001"
|
|
15
|
+
r="11.1001"
|
|
16
|
+
stroke={fill}
|
|
17
|
+
strokeWidth="1.4"
|
|
18
|
+
/>
|
|
19
|
+
<path
|
|
20
|
+
d="M11.4824 6.18066L11.4835 13.1411"
|
|
21
|
+
stroke={fill}
|
|
22
|
+
strokeWidth="1.4"
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
d="M18.8843 11.4834L11.4842 13.3334"
|
|
27
|
+
stroke={fill}
|
|
28
|
+
strokeWidth="1.4"
|
|
29
|
+
strokeLinecap="round"
|
|
30
|
+
/>
|
|
31
|
+
</svg>
|
|
32
|
+
);
|