@televet/kibble-ui 1.0.12-beta.4 → 1.0.12
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/build/index.js +4 -0
- package/build/index.js.map +1 -1
- package/package.json +1 -1
- package/build/theme/tokens/colors.d.ts +0 -82
package/build/index.js
CHANGED
|
@@ -209,6 +209,10 @@ const SvgDollarCircle = ({ color = "currentColor", height = "24px", width = "24p
|
|
|
209
209
|
React__namespace.createElement("path", { d: "M12 4a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm.666 11.905v1.429h-1.332v-1.425c-1.42-.19-2.315-1.015-2.365-2.24h1.52c.073.61.688 1 1.574 1 .818 0 1.395-.396 1.395-.963 0-.48-.373-.755-1.296-.953l-.98-.208c-1.37-.287-2.04-1-2.04-2.146 0-1.22.849-2.078 2.192-2.293v-1.44h1.332v1.438c1.304.211 2.184 1.056 2.225 2.211h-1.478c-.074-.594-.627-.99-1.387-.99-.786 0-1.307.366-1.307.938 0 .464.36.73 1.24.916l.906.195c1.51.316 2.16.968 2.16 2.133.001 1.323-.882 2.195-2.359 2.398Z", fill: color })));
|
|
210
210
|
React.forwardRef(SvgDollarCircle);
|
|
211
211
|
|
|
212
|
+
const SvgDotsHorizontal = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
|
|
213
|
+
React__namespace.createElement("path", { d: "M3 12a2 2 0 1 0 4.001-.001A2 2 0 0 0 3 12Zm7 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0Zm7 0A2 2 0 1 0 21 11.998 2 2 0 0 0 17 12Z", fill: color })));
|
|
214
|
+
React.forwardRef(SvgDotsHorizontal);
|
|
215
|
+
|
|
212
216
|
const SvgDotsVertical = ({ color = "currentColor", height = "24px", width = "24px" }, ref) => (React__namespace.createElement("svg", { viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", width: width, height: height, ref: ref },
|
|
213
217
|
React__namespace.createElement("path", { d: "M12 3a2 2 0 1 0 .001 4.001A2 2 0 0 0 12 3Zm0 7a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 7A2 2 0 1 0 12.002 21 2 2 0 0 0 12 17Z", fill: color })));
|
|
214
218
|
const ForwardRef$p = React.forwardRef(SvgDotsVertical);
|