@sendoutcards/quantum-design-ui 1.7.76 → 1.7.77
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/index.es.js
CHANGED
|
@@ -16824,7 +16824,7 @@ var PromptingsAcademyIcon = function (_a) {
|
|
|
16824
16824
|
xmlns: "http://www.w3.org/2000/svg",
|
|
16825
16825
|
x: "0px",
|
|
16826
16826
|
y: "0px",
|
|
16827
|
-
viewBox: "
|
|
16827
|
+
viewBox: "10 13 90 90"
|
|
16828
16828
|
}, jsx("g", null, jsx("path", {
|
|
16829
16829
|
fill: color === 'white' ? '#FFFFFF' : '#000000',
|
|
16830
16830
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { HOCBaseProps } from "../../helpers/hoc-types/hocBasePropTypes";
|
|
3
|
+
import { HOCMotionProps } from "../../helpers/hoc-types/hocMotionTypes";
|
|
4
|
+
export declare type DivProps = {
|
|
5
|
+
children?: React.ReactNode;
|
|
6
|
+
outsideClick?: () => void;
|
|
7
|
+
clickElementBypass?: string;
|
|
8
|
+
} & HOCBaseProps & HOCMotionProps;
|
|
9
|
+
export declare const Companion: React.ForwardRefExoticComponent<{
|
|
10
|
+
children?: React.ReactNode;
|
|
11
|
+
outsideClick?: (() => void) | undefined;
|
|
12
|
+
clickElementBypass?: string | undefined;
|
|
13
|
+
} & HOCBaseProps & {
|
|
14
|
+
className?: string | undefined;
|
|
15
|
+
motionKey?: string | number | undefined;
|
|
16
|
+
id?: string | undefined;
|
|
17
|
+
} & import("framer-motion").MotionProps & React.RefAttributes<HTMLDivElement>>;
|