lecom-ui 4.1.9 → 4.2.1
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/dist/_virtual/_commonjsHelpers.js +5 -0
- package/dist/_virtual/index.js +7 -0
- package/dist/components/Accordion/Accordion.js +40 -37
- package/dist/components/Button/Button.js +10 -9
- package/dist/components/Button/CustomButton.js +6 -5
- package/dist/components/Card/Card.js +7 -6
- package/dist/components/Checkbox/Checkbox.js +35 -30
- package/dist/components/CustomIcon/Icons/CadastroFacil.js +15 -5
- package/dist/components/CustomIcon/Icons/LogoLecom.js +15 -12
- package/dist/components/CustomIcon/Icons/LogoLecomBrand.js +8 -5
- package/dist/components/CustomIcon/Icons/ModoTeste.js +13 -5
- package/dist/components/CustomIcon/Icons/Rpa.js +17 -5
- package/dist/components/DataTable/DataTable.js +33 -158
- package/dist/components/Dialog/Dialog.js +40 -31
- package/dist/components/DropdownMenu/DropdownMenu.js +55 -46
- package/dist/components/Header/Header.js +51 -35
- package/dist/components/Header/HelpMenu.js +52 -41
- package/dist/components/Header/ImgBrand.js +5 -8
- package/dist/components/Header/ModulesMenu.js +63 -50
- package/dist/components/Header/SocialMenu.js +5 -6
- package/dist/components/Header/UserMenu.js +81 -51
- package/dist/components/Input/Input.js +11 -2
- package/dist/components/Layout/Layout.js +62 -45
- package/dist/components/Notification/Notification.js +9 -8
- package/dist/components/Notification/NotificationBase.js +5 -5
- package/dist/components/Notification/NotificationCallout.js +33 -27
- package/dist/components/Notification/NotificationCloseButton.js +4 -3
- package/dist/components/Notification/NotificationContent.js +24 -18
- package/dist/components/Notification/NotificationIcon.js +9 -6
- package/dist/components/Notification/NotificationInline.js +23 -20
- package/dist/components/Notification/NotificationToast.js +28 -25
- package/dist/components/Notification/useNotificationToast.js +0 -1
- package/dist/components/Popover/Popover.js +8 -7
- package/dist/components/ScrollArea/ScrollArea.js +18 -15
- package/dist/components/Select/Select.js +63 -54
- package/dist/components/Separator/Separator.js +5 -4
- package/dist/components/Sheet/Sheet.js +35 -26
- package/dist/components/Sidebar/Sidebar.js +112 -95
- package/dist/components/Skeleton/Skeleton.js +2 -2
- package/dist/components/Table/Table.js +15 -26
- package/dist/components/Tag/Tag.js +6 -5
- package/dist/components/Tooltip/Tooltip.js +17 -15
- package/dist/components/Typography/Typography.js +6 -7
- package/dist/hooks/use-mobile.js +1 -1
- package/dist/i18n/index.js +4 -53
- package/dist/i18n/locales/en_us.js +4 -3
- package/dist/i18n/locales/es_es.js +4 -3
- package/dist/i18n/locales/index.js +4 -4
- package/dist/i18n/locales/pt_br.js +4 -3
- package/dist/index.d.ts +108 -304
- package/dist/index.js +1 -12
- package/dist/lib/utils.js +2 -2
- package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +806 -0
- package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +726 -0
- package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +347 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +154 -0
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +136 -0
- package/dist/node_modules/@radix-ui/number/dist/index.js +6 -0
- package/dist/node_modules/@radix-ui/primitive/dist/index.js +11 -0
- package/dist/node_modules/@radix-ui/react-accordion/dist/index.js +303 -0
- package/dist/node_modules/@radix-ui/react-arrow/dist/index.js +25 -0
- package/dist/node_modules/@radix-ui/react-checkbox/dist/index.js +157 -0
- package/dist/node_modules/@radix-ui/react-collapsible/dist/index.js +144 -0
- package/dist/node_modules/@radix-ui/react-collection/dist/index.js +68 -0
- package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +39 -0
- package/dist/node_modules/@radix-ui/react-context/dist/index.js +79 -0
- package/dist/node_modules/@radix-ui/react-dialog/dist/index.js +319 -0
- package/dist/node_modules/@radix-ui/react-direction/dist/index.js +11 -0
- package/dist/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +211 -0
- package/dist/node_modules/@radix-ui/react-dropdown-menu/dist/index.js +265 -0
- package/dist/node_modules/@radix-ui/react-focus-guards/dist/index.js +29 -0
- package/dist/node_modules/@radix-ui/react-focus-scope/dist/index.js +207 -0
- package/dist/node_modules/@radix-ui/react-id/dist/index.js +15 -0
- package/dist/node_modules/@radix-ui/react-menu/dist/index.js +831 -0
- package/dist/node_modules/@radix-ui/react-popover/dist/index.js +296 -0
- package/dist/node_modules/@radix-ui/react-popper/dist/index.js +278 -0
- package/dist/node_modules/@radix-ui/react-portal/dist/index.js +17 -0
- package/dist/node_modules/@radix-ui/react-presence/dist/index.js +130 -0
- package/dist/node_modules/@radix-ui/react-primitive/dist/index.js +41 -0
- package/dist/node_modules/@radix-ui/react-roving-focus/dist/index.js +220 -0
- package/dist/node_modules/@radix-ui/react-scroll-area/dist/index.js +718 -0
- package/dist/node_modules/@radix-ui/react-select/dist/index.js +1143 -0
- package/dist/node_modules/@radix-ui/react-separator/dist/index.js +30 -0
- package/dist/node_modules/@radix-ui/react-slot/dist/index.js +81 -0
- package/dist/node_modules/@radix-ui/react-tooltip/dist/index.js +476 -0
- package/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +12 -0
- package/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +46 -0
- package/dist/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +18 -0
- package/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +7 -0
- package/dist/node_modules/@radix-ui/react-use-previous/dist/index.js +15 -0
- package/dist/node_modules/@radix-ui/react-use-size/dist/index.js +40 -0
- package/dist/node_modules/@radix-ui/react-visually-hidden/dist/index.js +35 -0
- package/dist/node_modules/@tanstack/react-table/build/lib/index.js +74 -0
- package/dist/node_modules/@tanstack/table-core/build/lib/index.js +3023 -0
- package/dist/node_modules/aria-hidden/dist/es2015/index.js +136 -0
- package/dist/node_modules/class-variance-authority/dist/index.js +44 -0
- package/dist/node_modules/clsx/dist/clsx.js +3 -0
- package/dist/node_modules/get-nonce/dist/es2015/index.js +8 -0
- package/dist/node_modules/hex-color-opacity/lib/index.js +22 -0
- package/dist/node_modules/i18next/dist/esm/i18next.js +2228 -0
- package/dist/node_modules/lucide-react/dist/esm/Icon.js +44 -0
- package/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +26 -0
- package/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +20 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/check.js +13 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-down.js +15 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-right.js +15 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-up.js +13 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-alert.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-check.js +16 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle-help.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/circle.js +15 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/info.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/menu.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/message-square.js +15 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/minus.js +13 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/panel-left.js +16 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/triangle-alert.js +23 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/user.js +16 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/x.js +16 -0
- package/dist/node_modules/lucide-react/dist/esm/shared/src/utils.js +13 -0
- package/dist/node_modules/react-i18next/dist/es/context.js +18 -0
- package/dist/node_modules/react-i18next/dist/es/defaults.js +21 -0
- package/dist/node_modules/react-i18next/dist/es/i18nInstance.js +7 -0
- package/dist/node_modules/react-i18next/dist/es/initReactI18next.js +12 -0
- package/dist/node_modules/react-i18next/dist/es/unescape.js +27 -0
- package/dist/node_modules/react-i18next/dist/es/useTranslation.js +112 -0
- package/dist/node_modules/react-i18next/dist/es/utils.js +63 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/Combination.js +9 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +160 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/UI.js +38 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +21 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +109 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/medium.js +5 -0
- package/dist/node_modules/react-remove-scroll/dist/es2015/sidecar.js +7 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/component.js +56 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +10 -0
- package/dist/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +31 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/component.js +19 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/hook.js +25 -0
- package/dist/node_modules/react-style-singleton/dist/es2015/singleton.js +51 -0
- package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +2493 -0
- package/dist/node_modules/tslib/tslib.es6.js +56 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/assignRef.js +24 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +48 -0
- package/dist/node_modules/use-callback-ref/dist/es2015/useRef.js +42 -0
- package/dist/node_modules/use-color-luminance/index.es.js +105 -0
- package/dist/node_modules/use-sidecar/dist/es2015/exports.js +21 -0
- package/dist/node_modules/use-sidecar/dist/es2015/medium.js +77 -0
- package/dist/plugin/typographies.ts +146 -152
- package/dist/style.min.css +1 -1
- package/dist/utils/cookie.js +9 -6
- package/package.json +11 -3
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { getDefaultExportFromCjs } from './_commonjsHelpers.js';
|
|
2
|
+
import { __require as requireLib } from '../node_modules/hex-color-opacity/lib/index.js';
|
|
3
|
+
|
|
4
|
+
var libExports = requireLib();
|
|
5
|
+
var opacity = /*@__PURE__*/getDefaultExportFromCjs(libExports);
|
|
6
|
+
|
|
7
|
+
export { opacity as default };
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import { cn } from '../../lib/utils.js';
|
|
3
|
-
import
|
|
4
|
-
import { cva } from 'class-variance-authority';
|
|
5
|
-
import
|
|
4
|
+
import { Item, Header, Trigger as Trigger2, Content as Content2, Root as Root2 } from '../../node_modules/@radix-ui/react-accordion/dist/index.js';
|
|
5
|
+
import { cva } from '../../node_modules/class-variance-authority/dist/index.js';
|
|
6
|
+
import ChevronDown from '../../node_modules/lucide-react/dist/esm/icons/chevron-down.js';
|
|
6
7
|
|
|
7
8
|
const accordionVariants = cva(
|
|
8
9
|
"flex flex-1 items-start justify-between gap-4 transition-all text-left [&[data-state=open]>svg]:rotate-180 w-full text-center",
|
|
@@ -23,49 +24,51 @@ const accordionVariants = cva(
|
|
|
23
24
|
}
|
|
24
25
|
}
|
|
25
26
|
);
|
|
26
|
-
const Accordion =
|
|
27
|
-
const AccordionItem = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
|
|
27
|
+
const Accordion = Root2;
|
|
28
|
+
const AccordionItem = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(Item, { ref, className: cn(className), ...props }));
|
|
28
29
|
AccordionItem.displayName = "AccordionItem";
|
|
29
|
-
const AccordionTrigger = React.forwardRef(({ className, children, variant, size, disabled, ...props }, ref) => /* @__PURE__ */
|
|
30
|
-
|
|
30
|
+
const AccordionTrigger = React.forwardRef(({ className, children, variant, size, disabled, ...props }, ref) => /* @__PURE__ */ jsx(Header, { className: "", children: /* @__PURE__ */ jsxs(
|
|
31
|
+
Trigger2,
|
|
31
32
|
{
|
|
32
33
|
ref,
|
|
33
34
|
className: cn(accordionVariants({ variant, size, className })),
|
|
34
35
|
...props,
|
|
35
|
-
disabled
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
36
|
+
disabled,
|
|
37
|
+
children: [
|
|
38
|
+
children,
|
|
39
|
+
/* @__PURE__ */ jsx(
|
|
40
|
+
ChevronDown,
|
|
41
|
+
{
|
|
42
|
+
className: cn(
|
|
43
|
+
"size-5 shrink-0 text-grey-800 transition-transform duration-200",
|
|
44
|
+
disabled && "text-grey-300"
|
|
45
|
+
)
|
|
46
|
+
}
|
|
44
47
|
)
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
)));
|
|
48
|
-
AccordionTrigger.displayName =
|
|
49
|
-
const AccordionContent = React.forwardRef(({ className, children, disabled = false, ...props }, ref) => /* @__PURE__ */
|
|
50
|
-
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
) }));
|
|
51
|
+
AccordionTrigger.displayName = Trigger2.displayName;
|
|
52
|
+
const AccordionContent = React.forwardRef(({ className, children, disabled = false, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
53
|
+
Content2,
|
|
51
54
|
{
|
|
52
55
|
"aria-disabled": disabled,
|
|
53
56
|
className: "overflow-hidden text-sm data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down",
|
|
54
|
-
...props
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
57
|
+
...props,
|
|
58
|
+
children: /* @__PURE__ */ jsx(
|
|
59
|
+
"div",
|
|
60
|
+
{
|
|
61
|
+
ref,
|
|
62
|
+
className: cn(
|
|
63
|
+
"body-medium-400 text-grey-800 pt-2 pb-4 px-4",
|
|
64
|
+
disabled && "text-grey-300",
|
|
65
|
+
className
|
|
66
|
+
),
|
|
67
|
+
children
|
|
68
|
+
}
|
|
69
|
+
)
|
|
70
|
+
}
|
|
68
71
|
));
|
|
69
|
-
AccordionContent.displayName =
|
|
72
|
+
AccordionContent.displayName = Content2.displayName;
|
|
70
73
|
|
|
71
74
|
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, accordionVariants };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import { cn } from '../../lib/utils.js';
|
|
3
|
-
import { cva } from 'class-variance-authority';
|
|
4
|
+
import { cva } from '../../node_modules/class-variance-authority/dist/index.js';
|
|
4
5
|
import { CustomButton } from './CustomButton.js';
|
|
5
6
|
|
|
6
7
|
const buttonVariants = cva(
|
|
@@ -132,7 +133,7 @@ const Button = React.forwardRef(
|
|
|
132
133
|
...props
|
|
133
134
|
}, ref) => {
|
|
134
135
|
if (customStyles) {
|
|
135
|
-
return /* @__PURE__ */
|
|
136
|
+
return /* @__PURE__ */ jsx(
|
|
136
137
|
CustomButton,
|
|
137
138
|
{
|
|
138
139
|
className,
|
|
@@ -141,13 +142,13 @@ const Button = React.forwardRef(
|
|
|
141
142
|
iconButton,
|
|
142
143
|
isActive,
|
|
143
144
|
ref,
|
|
144
|
-
...props
|
|
145
|
-
|
|
146
|
-
|
|
145
|
+
...props,
|
|
146
|
+
children
|
|
147
|
+
}
|
|
147
148
|
);
|
|
148
149
|
}
|
|
149
150
|
const Comp = "button";
|
|
150
|
-
return /* @__PURE__ */
|
|
151
|
+
return /* @__PURE__ */ jsx(
|
|
151
152
|
Comp,
|
|
152
153
|
{
|
|
153
154
|
className: cn(
|
|
@@ -155,9 +156,9 @@ const Button = React.forwardRef(
|
|
|
155
156
|
""
|
|
156
157
|
),
|
|
157
158
|
ref,
|
|
158
|
-
...props
|
|
159
|
-
|
|
160
|
-
|
|
159
|
+
...props,
|
|
160
|
+
children
|
|
161
|
+
}
|
|
161
162
|
);
|
|
162
163
|
}
|
|
163
164
|
);
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
1
2
|
import * as React from 'react';
|
|
2
|
-
import opacity from '
|
|
3
|
+
import opacity from '../../_virtual/index.js';
|
|
3
4
|
import { Button } from './Button.js';
|
|
4
5
|
|
|
5
6
|
const CustomButton = React.forwardRef(
|
|
@@ -23,16 +24,16 @@ const CustomButton = React.forwardRef(
|
|
|
23
24
|
color: isActive ? focus.textColor : color,
|
|
24
25
|
boxShadow: shadowSmTailwind
|
|
25
26
|
};
|
|
26
|
-
return /* @__PURE__ */
|
|
27
|
+
return /* @__PURE__ */ jsx(
|
|
27
28
|
Button,
|
|
28
29
|
{
|
|
29
30
|
onMouseOver: handleOver,
|
|
30
31
|
onMouseOut: handleOut,
|
|
31
32
|
style: mappedCustomStyles,
|
|
32
33
|
ref,
|
|
33
|
-
...props
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
...props,
|
|
35
|
+
children
|
|
36
|
+
}
|
|
36
37
|
);
|
|
37
38
|
}
|
|
38
39
|
);
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import { cn } from '../../lib/utils.js';
|
|
3
4
|
|
|
4
|
-
const Card = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
|
|
5
|
+
const Card = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
5
6
|
"div",
|
|
6
7
|
{
|
|
7
8
|
ref,
|
|
@@ -13,7 +14,7 @@ const Card = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
|
|
|
13
14
|
}
|
|
14
15
|
));
|
|
15
16
|
Card.displayName = "Card";
|
|
16
|
-
const CardHeader = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
|
|
17
|
+
const CardHeader = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
17
18
|
"div",
|
|
18
19
|
{
|
|
19
20
|
ref,
|
|
@@ -22,7 +23,7 @@ const CardHeader = React.forwardRef(({ className, ...props }, ref) => /* @__PURE
|
|
|
22
23
|
}
|
|
23
24
|
));
|
|
24
25
|
CardHeader.displayName = "CardHeader";
|
|
25
|
-
const CardTitle = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
|
|
26
|
+
const CardTitle = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
26
27
|
"div",
|
|
27
28
|
{
|
|
28
29
|
ref,
|
|
@@ -34,7 +35,7 @@ const CardTitle = React.forwardRef(({ className, ...props }, ref) => /* @__PURE_
|
|
|
34
35
|
}
|
|
35
36
|
));
|
|
36
37
|
CardTitle.displayName = "CardTitle";
|
|
37
|
-
const CardDescription = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
|
|
38
|
+
const CardDescription = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
38
39
|
"div",
|
|
39
40
|
{
|
|
40
41
|
ref,
|
|
@@ -43,9 +44,9 @@ const CardDescription = React.forwardRef(({ className, ...props }, ref) => /* @_
|
|
|
43
44
|
}
|
|
44
45
|
));
|
|
45
46
|
CardDescription.displayName = "CardDescription";
|
|
46
|
-
const CardContent = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
|
|
47
|
+
const CardContent = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("p-6 pt-0", className), ...props }));
|
|
47
48
|
CardContent.displayName = "CardContent";
|
|
48
|
-
const CardFooter = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */
|
|
49
|
+
const CardFooter = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
49
50
|
"div",
|
|
50
51
|
{
|
|
51
52
|
ref,
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import { cn } from '../../lib/utils.js';
|
|
3
|
-
import
|
|
4
|
-
import { cva } from 'class-variance-authority';
|
|
5
|
-
import
|
|
4
|
+
import { Root, Indicator } from '../../node_modules/@radix-ui/react-checkbox/dist/index.js';
|
|
5
|
+
import { cva } from '../../node_modules/class-variance-authority/dist/index.js';
|
|
6
|
+
import Minus from '../../node_modules/lucide-react/dist/esm/icons/minus.js';
|
|
7
|
+
import Check from '../../node_modules/lucide-react/dist/esm/icons/check.js';
|
|
6
8
|
|
|
7
9
|
const checkboxVariants = cva(
|
|
8
10
|
"peer relative h-5 w-5 shrink-0 rounded border-2 border-grey-400 transition-all hover:border-grey-500 active:border-grey-700 disabled:cursor-not-allowed disabled:border-grey-300 focus-visible:outline-none focus-visible:before:absolute focus-visible:before:-z-10 focus-visible:before:top-1/2 focus-visible:before:left-1/2 focus-visible:before:transform focus-visible:before:-translate-x-1/2 focus-visible:before:-translate-y-1/2 focus-visible:before:w-10 focus-visible:before:h-10 focus-visible:before:rounded-full focus-visible:before:bg-blue-100",
|
|
@@ -28,36 +30,39 @@ const Checkbox = React.forwardRef(
|
|
|
28
30
|
...props
|
|
29
31
|
}, ref) => {
|
|
30
32
|
const id = React.useId();
|
|
31
|
-
return /* @__PURE__ */
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
ref,
|
|
35
|
-
className: cn(
|
|
36
|
-
checkboxVariants({ variant, className }),
|
|
37
|
-
indeterminate && "indeterminate"
|
|
38
|
-
),
|
|
39
|
-
checked,
|
|
40
|
-
disabled,
|
|
41
|
-
...props,
|
|
42
|
-
id
|
|
43
|
-
},
|
|
44
|
-
/* @__PURE__ */ React.createElement(
|
|
45
|
-
CheckboxPrimitive.Indicator,
|
|
33
|
+
return /* @__PURE__ */ jsxs("div", { className: "flex items-center space-x-2", children: [
|
|
34
|
+
/* @__PURE__ */ jsx(
|
|
35
|
+
Root,
|
|
46
36
|
{
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
37
|
+
ref,
|
|
38
|
+
className: cn(
|
|
39
|
+
checkboxVariants({ variant, className }),
|
|
40
|
+
indeterminate && "indeterminate"
|
|
41
|
+
),
|
|
42
|
+
checked,
|
|
43
|
+
disabled,
|
|
44
|
+
...props,
|
|
45
|
+
id,
|
|
46
|
+
children: /* @__PURE__ */ jsx(
|
|
47
|
+
Indicator,
|
|
48
|
+
{
|
|
49
|
+
className: cn("flex items-center justify-center"),
|
|
50
|
+
children: indeterminate ? /* @__PURE__ */ jsx(Minus, { className: "h-4 w-4" }) : /* @__PURE__ */ jsx(Check, { className: "h-4 w-4" })
|
|
51
|
+
}
|
|
52
|
+
)
|
|
53
|
+
}
|
|
54
|
+
),
|
|
55
|
+
/* @__PURE__ */ jsx(
|
|
56
|
+
"label",
|
|
57
|
+
{
|
|
58
|
+
htmlFor: id,
|
|
59
|
+
className: "body-medium-400 leading-none cursor-pointer peer-disabled:cursor-not-allowed peer-disabled:opacity-50 transition-opacity",
|
|
60
|
+
children
|
|
61
|
+
}
|
|
50
62
|
)
|
|
51
|
-
)
|
|
52
|
-
"label",
|
|
53
|
-
{
|
|
54
|
-
htmlFor: id,
|
|
55
|
-
className: "body-medium-400 leading-none cursor-pointer peer-disabled:cursor-not-allowed peer-disabled:opacity-50 transition-opacity"
|
|
56
|
-
},
|
|
57
|
-
children
|
|
58
|
-
));
|
|
63
|
+
] });
|
|
59
64
|
}
|
|
60
65
|
);
|
|
61
|
-
Checkbox.displayName =
|
|
66
|
+
Checkbox.displayName = Root.displayName;
|
|
62
67
|
|
|
63
68
|
export { Checkbox };
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import { cn } from '../../../lib/utils.js';
|
|
3
4
|
|
|
4
5
|
const CadastroFacil = React.forwardRef(
|
|
5
|
-
({ fillColor, size = 24, className, ...props }, ref) => /* @__PURE__ */
|
|
6
|
+
({ fillColor, size = 24, className, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
6
7
|
"svg",
|
|
7
8
|
{
|
|
8
9
|
width: size,
|
|
@@ -12,10 +13,19 @@ const CadastroFacil = React.forwardRef(
|
|
|
12
13
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13
14
|
ref,
|
|
14
15
|
className: cn("custom-icon", className, fillColor),
|
|
15
|
-
...props
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
...props,
|
|
17
|
+
children: [
|
|
18
|
+
/* @__PURE__ */ jsx("g", { clipPath: "url(#clip0_583_2576)", children: /* @__PURE__ */ jsxs("g", { clipPath: "url(#clip1_583_2576)", children: [
|
|
19
|
+
/* @__PURE__ */ jsx("path", { d: "M14.5 2.79999V4.39999C15.9 4.39999 17 5.49999 17 6.89999H18.6C18.6 4.59999 16.8 2.79999 14.5 2.79999Z" }),
|
|
20
|
+
/* @__PURE__ */ jsx("path", { d: "M1.6 16.1H0C0 18.4 1.8 20.2 4.1 20.2V18.6C2.7 18.6 1.6 17.5 1.6 16.1Z" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M23.2001 17.6V7.9H13.1V5.8C13.1 4.7 12.4 3.7 11.2 3C10.1 2.4 8.70005 2 7.20005 2C5.70005 2 4.30005 2.3 3.20005 3C2.00005 3.7 1.30005 4.7 1.30005 5.8V13.1C1.30005 14.2 2.00005 15.2 3.20005 15.9C4.10005 16.4 5.10005 16.7 6.30005 16.8V17.6H5.50005V19.7C5.50005 20.9 6.50005 21.9 7.70005 21.9H21.9C23.1 21.9 24.1 20.9 24.1 19.7V17.6H23.3H23.2001ZM21.6 9.6V17.6H7.90005V9.6H21.6ZM6.30005 15.2C5.40005 15.1 4.60005 14.9 4.00005 14.5C3.30005 14.1 2.90005 13.6 2.90005 13.2V12.2C2.90005 12.2 3.10005 12.3 3.20005 12.4C4.10005 12.9 5.10005 13.2 6.30005 13.3V15.3V15.2ZM6.30005 11.6C5.40005 11.5 4.60005 11.3 4.00005 10.9C3.30005 10.5 2.90005 10 2.90005 9.6V8.6C2.90005 8.6 3.10005 8.7 3.20005 8.8C4.10005 9.3 5.10005 9.6 6.30005 9.7V11.7V11.6ZM4.00005 7.2C3.30005 6.8 2.90005 6.3 2.90005 5.9C2.90005 5.5 3.30005 4.9 4.00005 4.6C4.80005 4.1 6.00005 3.9 7.20005 3.9C8.40005 3.9 9.60005 4.2 10.4 4.6C11.1 5 11.5 5.5 11.5 5.9C11.5 6.3 11.1 6.9 10.4 7.2C9.70005 7.6 8.90005 7.8 8.00005 7.9H6.50005C5.60005 7.9 4.70005 7.6 4.10005 7.2H4.00005ZM22.4 19.7C22.4 20 22.2 20.2 21.9 20.2H7.60005C7.30005 20.2 7.10005 20 7.10005 19.7V19.3H22.4V19.7Z" })
|
|
22
|
+
] }) }),
|
|
23
|
+
/* @__PURE__ */ jsxs("defs", { children: [
|
|
24
|
+
/* @__PURE__ */ jsx("clipPath", { id: "clip0_583_2576", children: /* @__PURE__ */ jsx("rect", { width: "24", height: "24", fill: "white" }) }),
|
|
25
|
+
/* @__PURE__ */ jsx("clipPath", { id: "clip1_583_2576", children: /* @__PURE__ */ jsx("rect", { width: "24", height: "24", fill: "white" }) })
|
|
26
|
+
] })
|
|
27
|
+
]
|
|
28
|
+
}
|
|
19
29
|
)
|
|
20
30
|
);
|
|
21
31
|
CadastroFacil.displayName = "CadastroFacil";
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import { cn } from '../../../lib/utils.js';
|
|
3
4
|
|
|
4
5
|
const LogoLecom = React.forwardRef(
|
|
5
|
-
({ fillColor, size = 24, className, ...props }, ref) => /* @__PURE__ */
|
|
6
|
+
({ fillColor, size = 24, className, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
6
7
|
"svg",
|
|
7
8
|
{
|
|
8
9
|
width: size,
|
|
@@ -12,17 +13,19 @@ const LogoLecom = React.forwardRef(
|
|
|
12
13
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13
14
|
ref,
|
|
14
15
|
className: cn("custom-icon", className, fillColor),
|
|
15
|
-
...props
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
16
|
+
...props,
|
|
17
|
+
children: [
|
|
18
|
+
/* @__PURE__ */ jsx(
|
|
19
|
+
"path",
|
|
20
|
+
{
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M10.7088 13.8353C12.4594 14.5129 13.0241 16.1506 13.1371 17.1106C13.1935 17.6188 12.7983 17.9012 12.7983 17.9012L4.04531 24C3.81943 19.4823 4.49707 18.2965 4.77943 17.5059C6.19119 14.0047 9.01472 13.1576 10.7088 13.8353Z"
|
|
24
|
+
}
|
|
25
|
+
),
|
|
26
|
+
/* @__PURE__ */ jsx("path", { d: "M8.56301 10.6729C3.87595 7.62353 3.87595 4.91294 4.10184 0L21.2124 11.9718L14.2101 16.8847C14.323 14.7388 12.7418 13.6094 11.8948 12.9318C11.3865 12.5365 10.7089 12.1412 10.1442 11.6894C9.29713 11.1812 8.56301 10.6729 8.56301 10.6729Z" })
|
|
27
|
+
]
|
|
28
|
+
}
|
|
26
29
|
)
|
|
27
30
|
);
|
|
28
31
|
LogoLecom.displayName = "LogoLecom";
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import { cn } from '../../../lib/utils.js';
|
|
3
4
|
|
|
4
5
|
const LogoLecomBrand = React.forwardRef(
|
|
5
|
-
({ fillColor, className, ...props }, ref) => /* @__PURE__ */
|
|
6
|
+
({ fillColor, className, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
6
7
|
"svg",
|
|
7
8
|
{
|
|
8
9
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12,10 +13,12 @@ const LogoLecomBrand = React.forwardRef(
|
|
|
12
13
|
fill: "currentColor",
|
|
13
14
|
ref,
|
|
14
15
|
className: cn("custom-icon", className, fillColor),
|
|
15
|
-
...props
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
...props,
|
|
17
|
+
children: [
|
|
18
|
+
/* @__PURE__ */ jsx("path", { d: "M.65,16.59C1.83,13.67,4.18,13,5.59,13.53a3.26,3.26,0,0,1,2,2.73.74.74,0,0,1-.28.66L0,22C-.15,18.23.41,17.25.65,16.59Zm30.4-.8a5.78,5.78,0,0,1,2.67-7.73,5.52,5.52,0,0,1,.67-.27c4.19-1.27,7.62,1.78,7.34,6a1.57,1.57,0,0,1-.09.43H33.12a2.63,2.63,0,0,0,1.69,2.25,3.8,3.8,0,0,0,4.47-1c.66.37,1.27.75,1.93,1.13A5.39,5.39,0,0,1,37,18.94l-.58,0a5.67,5.67,0,0,1-5.35-3.17Zm5-6.17A3.1,3.1,0,0,0,33,12.26h6.3a2.91,2.91,0,0,0-3.1-2.64Zm12.15,9.27a5.61,5.61,0,0,1-5.13-5.36,5.64,5.64,0,0,1,4.14-5.84,5.53,5.53,0,0,1,6.44,2.59c-.65.38-1.27.75-2,1.18a3.14,3.14,0,0,0-2.82-1.65,3.18,3.18,0,0,0-2.45,1,3.59,3.59,0,0,0,.05,5c1.5,1.36,3.57,1.08,5.27-.8.61.37,1.27.7,1.93,1.08a5.24,5.24,0,0,1-4.77,2.87,4.2,4.2,0,0,1-.7-.05ZM54.9,13.2a5.77,5.77,0,1,1,5.79,5.74h0a5.72,5.72,0,0,1-5.74-5.69Zm5.7-3.44a3.44,3.44,0,1,0,0,6.87A3.31,3.31,0,0,0,64,13.37a1,1,0,0,0,0-.17,3.37,3.37,0,0,0-3.3-3.44H60.6Zm7.06,9V8H70V9.25a3.69,3.69,0,0,1,3.2-1.56,3.56,3.56,0,0,1,3,1.65l.29-.28a4.18,4.18,0,0,1,5.89-.38,4.08,4.08,0,0,1,.46.47,4.67,4.67,0,0,1,.89,2.59c0,2.31,0,4.61,0,6.92,0-.1,0-.05,0,.05h-2.3V12.45a2.89,2.89,0,0,0,0-.66,2,2,0,0,0-1.93-2,1.31,1.31,0,0,0-.28,0,2.12,2.12,0,0,0-2.21,2v0c-.09,1,0,2-.09,3V18.7H74.43V12c0-1.27-.7-2.11-1.74-2.16a2.28,2.28,0,0,0-2.63,1.87h0a9.24,9.24,0,0,0-.1,1.18V18.8ZM21,18.7V5.39h2.5v11h5.74V18.7ZM6.58,12.78c-.42-.33-1-.66-1.46-1-.71-.42-1.32-.85-1.32-.85C-.1,8.35-.1,6.09.09,2L14.34,12,8.51,16.07A3.9,3.9,0,0,0,6.58,12.78Z" }),
|
|
19
|
+
/* @__PURE__ */ jsx("path", { d: "M0,0H84V24H0Z", fill: "none" })
|
|
20
|
+
]
|
|
21
|
+
}
|
|
19
22
|
)
|
|
20
23
|
);
|
|
21
24
|
LogoLecomBrand.displayName = "LogoLecomBrand";
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import { cn } from '../../../lib/utils.js';
|
|
3
4
|
|
|
4
5
|
const ModoTeste = React.forwardRef(
|
|
5
|
-
({ fillColor, size = 24, className, ...props }, ref) => /* @__PURE__ */
|
|
6
|
+
({ fillColor, size = 24, className, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
6
7
|
"svg",
|
|
7
8
|
{
|
|
8
9
|
width: size,
|
|
@@ -12,10 +13,17 @@ const ModoTeste = React.forwardRef(
|
|
|
12
13
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13
14
|
ref,
|
|
14
15
|
className: cn("custom-icon", className, fillColor),
|
|
15
|
-
...props
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
...props,
|
|
17
|
+
children: [
|
|
18
|
+
/* @__PURE__ */ jsxs("g", { clipPath: "url(#clip0_583_2575)", children: [
|
|
19
|
+
/* @__PURE__ */ jsx("path", { d: "M13.6 9.60001H8.30002C8.10002 9.60001 7.80002 9.60001 7.70002 9.90001C7.50002 10.1 7.40002 10.3 7.40002 10.5C7.40002 10.7 7.40002 11 7.70002 11.1C7.90002 11.3 8.10002 11.4 8.30002 11.4H11.7C11.7 11.4 11.8 11.3 11.9 11.2C12.2 10.9 12.7 10.8 13.1 10.8H14.4C14.4 10.8 14.4 10.6 14.4 10.5C14.4 10.3 14.4 10 14.1 9.90001C13.9 9.70001 13.7 9.60001 13.5 9.60001H13.6Z" }),
|
|
20
|
+
/* @__PURE__ */ jsx("path", { d: "M12.1 16.9H5.7V2.3H11V6.9C11 7.1 11 7.4 11.3 7.5C11.5 7.7 11.7 7.8 11.9 7.8H16.3V10.8H18.1V5.9C18.1 5.7 18.1 5.4 17.8 5.3L13.3 0.8C13.1 0.6 12.9 0.5 12.7 0.5H5.7C5.2 0.5 4.8 0.7 4.5 1C4.2 1.3 4 1.8 4 2.3V16.9C4 17.4 4.2 17.8 4.5 18.2C4.8 18.5 5.3 18.7 5.7 18.7H12.1V16.9ZM12.7 2.7L15.9 6H12.7V2.7Z" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M7.70002 14.8C7.90002 15 8.10002 15.1 8.30002 15.1H12V13.9C12 13.9 11.9 13.9 11.9 13.8C11.7 13.6 11.6 13.5 11.5 13.2H8.30002C8.10002 13.2 7.80002 13.2 7.70002 13.5C7.50002 13.7 7.40002 13.9 7.40002 14.1C7.40002 14.3 7.40002 14.6 7.70002 14.7V14.8Z" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M18.4 23.8C19 23.3 19.3 22.7 19.3 22V13.3H19.6C19.6 13.1 19.7 13.1 19.8 13C19.9 12.9 20 12.7 20 12.6C20 12.5 20 12.3 19.8 12.2C19.7 12.1 19.5 12 19.3 12H13.1C12.9 12 12.7 12 12.6 12.2C12.5 12.3 12.4 12.5 12.4 12.6C12.4 12.7 12.5 13 12.6 13C12.6 13 12.7 13 12.8 13.1H13.1V22C13.1 22.7 13.4 23.3 14 23.8C14.6 24.3 15.4 24.5 16.2 24.5C17 24.5 17.8 24.2 18.4 23.8ZM14.7 22V13.2H17.8V15.1H17C16.8 15.1 16.6 15.1 16.5 15.3C16.4 15.4 16.3 15.6 16.3 15.7C16.3 15.8 16.4 16.1 16.5 16.1C16.6 16.2 16.8 16.3 17 16.3H17.8V17.6H17C16.8 17.6 16.6 17.6 16.5 17.8C16.4 17.9 16.3 18.1 16.3 18.2C16.3 18.3 16.4 18.6 16.5 18.6C16.6 18.7 16.8 18.8 17 18.8H17.8V20.1H17C16.8 20.1 16.6 20.1 16.5 20.3C16.4 20.4 16.3 20.6 16.3 20.7C16.3 20.8 16.4 21.1 16.5 21.1C16.6 21.2 16.8 21.3 17 21.3H17.8V21.9C17.8 22.2 17.6 22.6 17.3 22.8C17 23 16.6 23.2 16.2 23.2C15.8 23.2 15.4 23.1 15.1 22.8C14.8 22.6 14.6 22.2 14.6 21.9L14.7 22Z" })
|
|
23
|
+
] }),
|
|
24
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsx("clipPath", { id: "clip0_583_2575", children: /* @__PURE__ */ jsx("rect", { width: "24", height: "24", fill: "white" }) }) })
|
|
25
|
+
]
|
|
26
|
+
}
|
|
19
27
|
)
|
|
20
28
|
);
|
|
21
29
|
ModoTeste.displayName = "ModoTeste";
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
1
2
|
import * as React from 'react';
|
|
2
3
|
import { cn } from '../../../lib/utils.js';
|
|
3
4
|
|
|
4
5
|
const Rpa = React.forwardRef(
|
|
5
|
-
({ fillColor, size = 24, className, ...props }, ref) => /* @__PURE__ */
|
|
6
|
+
({ fillColor, size = 24, className, ...props }, ref) => /* @__PURE__ */ jsxs(
|
|
6
7
|
"svg",
|
|
7
8
|
{
|
|
8
9
|
width: size,
|
|
@@ -12,10 +13,21 @@ const Rpa = React.forwardRef(
|
|
|
12
13
|
xmlns: "http://www.w3.org/2000/svg",
|
|
13
14
|
ref,
|
|
14
15
|
className: cn("custom-icon", className, fillColor),
|
|
15
|
-
...props
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
...props,
|
|
17
|
+
children: [
|
|
18
|
+
/* @__PURE__ */ jsx("g", { clipPath: "url(#clip0_583_2574)", children: /* @__PURE__ */ jsxs("g", { clipPath: "url(#clip1_583_2574)", children: [
|
|
19
|
+
/* @__PURE__ */ jsx("path", { d: "M23.8 10.6C23.1 7.8 20.9 7.4 20.7 7.4C20.6 7.6 20.3 8.1 20.1 8.3H9.60001C9.60001 8.3 9.10001 7.5 8.20001 7.2C7.40001 6.9 6.30001 7.1 4.60001 7H3.00001C3.00001 7 2.40001 7.1 1.90001 7.4C0.300008 8.5 8.15466e-06 11.7 8.15466e-06 11.7C8.15466e-06 11.7 -0.299992 13.9 0.900008 16.5C1.50001 17.5 2.10001 18.2 2.70001 18.5C3.50001 18.9 4.20001 18.8 4.20001 18.8C4.20001 18.8 19.3 16.2 20.6 16C21.8 15.8 22.4 15.3 22.4 15.3C22.4 15.3 24.5 13.5 23.8 10.5V10.6ZM3.70001 17.7C2.10001 18 0.500008 16.2 0.200008 13.5C-0.0999919 10.9 0.900008 8.4 2.50001 8.1C4.10001 7.8 5.70001 9.6 6.00001 12.3C6.30001 15 5.30001 17.4 3.70001 17.7ZM21.9 14.7L9.20001 16.5C9.20001 16.5 8.30001 16.7 8.00001 16C8.00001 15.7 8.00001 15.3 8.00001 14.6C8.00001 11.9 7.70001 9.7 7.70001 9.7C7.70001 9.7 7.70001 9.1 8.20001 8.9H21.7C21.7 8.8 23.3 8.9 23.6 11.6C23.6 14.4 21.9 14.6 21.9 14.6V14.7Z" }),
|
|
20
|
+
/* @__PURE__ */ jsx("path", { d: "M13.8 10.4C13.8 10.1 13.5 9.79999 13.1 9.79999C12.7 9.79999 12.5 10.1 12.5 10.5L12.7 14.4C12.7 14.7 13 15 13.4 15C13.8 15 14 14.7 14 14.3L13.8 10.4Z" }),
|
|
21
|
+
/* @__PURE__ */ jsx("path", { d: "M20.7 10.1C20.7 9.80001 20.4 9.60001 20.1 9.60001C19.8 9.60001 19.6 9.90001 19.6 10.2L19.8 13.6C19.8 13.9 20.1 14.1 20.4 14.1C20.7 14.1 20.9 13.8 20.9 13.5L20.7 10.1Z" }),
|
|
22
|
+
/* @__PURE__ */ jsx("path", { d: "M2.49996 8.90001C1.29996 9.20001 0.49996 11.2 0.79996 13.5C1.09996 15.8 2.29996 17.4 3.59996 17.2C4.79996 16.9 5.59996 14.9 5.29996 12.6C4.99996 10.3 3.79996 8.70001 2.49996 8.90001Z" }),
|
|
23
|
+
/* @__PURE__ */ jsx("path", { d: "M5.10002 6.59999C5.10002 6.59999 6.60002 4.89999 9.00002 5.19999C11.6 5.29999 17.7 5.69999 17.7 5.69999C18.5 5.79999 18.8 5.79999 19.7 6.29999C20.1 6.49999 20.4 6.79999 20.5 6.89999C20.5 6.99999 20.5 7.19999 20.5 7.19999C20.5 7.19999 20.1 7.69999 19.9 7.99999H10.1C10.1 7.99999 9.50002 7.29999 8.70002 7.09999C8.00002 6.89999 6.30002 6.79999 4.90002 6.89999L5.20002 6.59999H5.10002Z" })
|
|
24
|
+
] }) }),
|
|
25
|
+
/* @__PURE__ */ jsxs("defs", { children: [
|
|
26
|
+
/* @__PURE__ */ jsx("clipPath", { id: "clip0_583_2574", children: /* @__PURE__ */ jsx("rect", { width: "24", height: "24", fill: "white" }) }),
|
|
27
|
+
/* @__PURE__ */ jsx("clipPath", { id: "clip1_583_2574", children: /* @__PURE__ */ jsx("rect", { width: "24", height: "24", fill: "white" }) })
|
|
28
|
+
] })
|
|
29
|
+
]
|
|
30
|
+
}
|
|
19
31
|
)
|
|
20
32
|
);
|
|
21
33
|
Rpa.displayName = "Rpa";
|