@team-monolith/cds 1.128.2 → 1.129.0
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/icons/custom/colored/AiHtmlColor.d.ts +5 -0
- package/dist/icons/custom/colored/AiHtmlColor.js +7 -0
- package/dist/icons/custom/colored/ai-html-color.svg +4 -0
- package/dist/icons/custom/colored/index.d.ts +1 -0
- package/dist/icons/custom/colored/index.js +1 -0
- package/dist/icons/custom/default/AiHtml.d.ts +6 -0
- package/dist/icons/custom/default/AiHtml.js +7 -0
- package/dist/icons/custom/default/ai-html.svg +4 -0
- package/dist/icons/custom/default/index.d.ts +1 -0
- package/dist/icons/custom/default/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import svgImport from "./ai-html-color.svg";
|
|
4
|
+
export const CustomAiHtmlColorIcon = forwardRef(function CustomAiHtmlColorIcon(props, ref) {
|
|
5
|
+
return (_jsxs("svg", Object.assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props, { children: [_jsx("path", { d: "M8.07107 4.92896L9.48528 6.34317L3.82843 12L9.48528 17.6569L8.07107 19.0711L1 12L8.07107 4.92896Z", fill: "#0094FF" }), _jsx("path", { d: "M15.9289 4.92896L23 12L15.9289 19.0711L14.5147 17.6569L20.1716 12L14.5147 6.34317L15.9289 4.92896Z", fill: "#0094FF" })] })));
|
|
6
|
+
});
|
|
7
|
+
export const customAiHtmlColorSvg = svgImport;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.07107 4.92896L9.48528 6.34317L3.82843 12L9.48528 17.6569L8.07107 19.0711L1 12L8.07107 4.92896Z" fill="#0094FF"/>
|
|
3
|
+
<path d="M15.9289 4.92896L23 12L15.9289 19.0711L14.5147 17.6569L20.1716 12L14.5147 6.34317L15.9289 4.92896Z" fill="#0094FF"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import svgImport from "./ai-html.svg";
|
|
4
|
+
export const CustomAiHtmlIcon = forwardRef(function CustomAiHtmlIcon(props, ref) {
|
|
5
|
+
return (_jsxs("svg", Object.assign({ width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ref: ref }, props, { children: [_jsx("path", { d: "M8.07107 4.92896L9.48528 6.34317L3.82843 12L9.48528 17.6569L8.07107 19.0711L1 12L8.07107 4.92896Z", fill: "currentColor" }), _jsx("path", { d: "M15.9289 4.92896L23 12L15.9289 19.0711L14.5147 17.6569L20.1716 12L14.5147 6.34317L15.9289 4.92896Z", fill: "currentColor" })] })));
|
|
6
|
+
});
|
|
7
|
+
export const customAiHtmlSvg = svgImport;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M8.07107 4.92896L9.48528 6.34317L3.82843 12L9.48528 17.6569L8.07107 19.0711L1 12L8.07107 4.92896Z" fill="#363636"/>
|
|
3
|
+
<path d="M15.9289 4.92896L23 12L15.9289 19.0711L14.5147 17.6569L20.1716 12L14.5147 6.34317L15.9289 4.92896Z" fill="#363636"/>
|
|
4
|
+
</svg>
|