@mrshmllw/smores-react 9.3.0 → 9.3.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.
@@ -1,5 +1,5 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
const Caret = () => (React.createElement("svg", { width: "100%", height: "100%", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" },
|
2
|
+
const Caret = ({ className }) => (React.createElement("svg", { width: "100%", height: "100%", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className },
|
3
3
|
React.createElement("path", { d: "M19.66 8.248a1 1 0 00-1.412.095L12 15.482l-6.248-7.14a1 1 0 10-1.504 1.317l7 8a.995.995 0 001.504 0l7-8a1 1 0 00-.093-1.411z", fill: "currentColor" })));
|
4
4
|
export default Caret;
|
5
5
|
//# sourceMappingURL=Caret.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Caret.js","sourceRoot":"","sources":["../../../src/Icon/iconFiles/Caret.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,MAAM,KAAK,GAAG,
|
1
|
+
{"version":3,"file":"Caret.js","sourceRoot":"","sources":["../../../src/Icon/iconFiles/Caret.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,MAAM,KAAK,GAAG,CAAC,EAAE,SAAS,EAA0B,EAAE,EAAE,CAAC,CACvD,6BACE,KAAK,EAAC,MAAM,EACZ,MAAM,EAAC,MAAM,EACb,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,EAClC,SAAS,EAAE,SAAS;IAEpB,8BACE,CAAC,EAAC,8HAA8H,EAChI,IAAI,EAAC,cAAc,GACnB,CACE,CACP,CAAA;AAED,eAAe,KAAK,CAAA"}
|
@@ -1,3 +1,7 @@
|
|
1
1
|
/// <reference types="react" />
|
2
|
-
declare const CaretUp: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<
|
2
|
+
declare const CaretUp: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<{
|
3
|
+
className?: string | undefined;
|
4
|
+
}, never>> & Omit<({ className }: {
|
5
|
+
className?: string | undefined;
|
6
|
+
}) => JSX.Element, keyof import("react").Component<any, {}, any>>;
|
3
7
|
export default CaretUp;
|
package/dist/Icon/iconsList.d.ts
CHANGED
@@ -112,8 +112,14 @@ export declare const iconList: {
|
|
112
112
|
cancel: () => JSX.Element;
|
113
113
|
car: () => JSX.Element;
|
114
114
|
card: () => JSX.Element;
|
115
|
-
caret: (
|
116
|
-
|
115
|
+
caret: ({ className }: {
|
116
|
+
className?: string | undefined;
|
117
|
+
}) => JSX.Element;
|
118
|
+
'caret-up': import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<{
|
119
|
+
className?: string | undefined;
|
120
|
+
}, never>> & Omit<({ className }: {
|
121
|
+
className?: string | undefined;
|
122
|
+
}) => JSX.Element, keyof import("react").Component<any, {}, any>>;
|
117
123
|
charge: () => JSX.Element;
|
118
124
|
chat: () => JSX.Element;
|
119
125
|
checkout: () => JSX.Element;
|