@langchain/untitled-ui-icons 1.1.0 → 1.1.2
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/README.md +14 -0
- package/dist/components/DeepAgents.d.ts +3 -0
- package/dist/components/DeepAgents.js +3 -0
- package/dist/components/Flame.d.ts +3 -0
- package/dist/components/Flame.js +3 -0
- package/dist/components/LangGraph.d.ts +3 -0
- package/dist/components/LangGraph.js +3 -0
- package/dist/components/LangSmithDeployment.d.ts +3 -0
- package/dist/components/LangSmithDeployment.js +3 -0
- package/dist/components/LangSmithEngine.d.ts +3 -0
- package/dist/components/LangSmithEngine.js +3 -0
- package/dist/components/LangSmithEvaluation.d.ts +3 -0
- package/dist/components/LangSmithEvaluation.js +3 -0
- package/dist/components/LangSmithFleet.d.ts +3 -0
- package/dist/components/LangSmithFleet.js +3 -0
- package/dist/components/LangSmithObservability.d.ts +3 -0
- package/dist/components/LangSmithObservability.js +3 -0
- package/dist/components/LangchainOss.d.ts +3 -0
- package/dist/components/LangchainOss.js +3 -0
- package/dist/components/PromptEngineering.d.ts +3 -0
- package/dist/components/PromptEngineering.js +3 -0
- package/dist/components/Sandboxes.d.ts +3 -0
- package/dist/components/Sandboxes.js +3 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +12 -0
- package/dist/solid-components/FlameSolid.d.ts +3 -0
- package/dist/solid-components/FlameSolid.js +3 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -65,6 +65,20 @@ import { ActivityHeartSolidIcon } from "@langchain/untitled-ui-icons";
|
|
|
65
65
|
|
|
66
66
|
Both icon variants accept standard SVG props and inherit color via `currentColor`.
|
|
67
67
|
|
|
68
|
+
### Brand icons
|
|
69
|
+
|
|
70
|
+
The two-tone brand badges (`DeepAgentsIcon`, `LangGraphIcon`, `LangSmithDeploymentIcon`,
|
|
71
|
+
`LangSmithEngineIcon`, `LangSmithEvaluationIcon`, `LangSmithFleetIcon`,
|
|
72
|
+
`LangSmithObservabilityIcon`, `PromptEngineeringIcon`, `SandboxesIcon`,
|
|
73
|
+
`LangchainOssIcon`) do **not** use `currentColor`. They are themed through two CSS
|
|
74
|
+
variables:
|
|
75
|
+
|
|
76
|
+
| Variable | Role | Default (fallback) |
|
|
77
|
+
| -------------------- | ----------------------------- | ------------------ |
|
|
78
|
+
| `--lc-icon-surface` | Rounded-square background | `#030710` |
|
|
79
|
+
| `--lc-icon-glyph` | Foreground mark | `#7FC8FF` |
|
|
80
|
+
|
|
81
|
+
|
|
68
82
|
## TODO
|
|
69
83
|
|
|
70
84
|
- Better handling of unexpected cases, malformed SVGs, incorrect naming convention, etc.
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const DeepAgents = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: _jsxs("g", { transform: "scale(.2449)", children: [_jsx("rect", { width: 97.25, height: 97.25, fill: "var(--lc-icon-surface, #030710)", rx: 19.485 }), _jsx("g", { fill: "var(--lc-icon-glyph, #7FC8FF)", clipPath: "url(#a)", children: _jsx("path", { d: "M72.536 42.2V22.043h-20.8v.478c10.775.278 19.556 9.103 20.434 19.68zM49.223 22.043H24.876v41.046c0 7.58 5.846 12.295 15.257 12.295h32.414V45.396H49.223z" }) }), _jsx("defs", { children: _jsx("clipPath", { id: "a", children: _jsx("path", { fill: "#fff", d: "M24.88 22.044h47.67v53.342H24.88z" }) }) })] }) }));
|
|
3
|
+
export { DeepAgents };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const Flame = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: _jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2px", d: "M9.5 1.085c0-.953 1.144-1.442 1.833-.782 2.121 2.032 3.354 6.495 1.896 9.88l-.087.189.013.003c.677.144 1.303-.466 2.495-2.354l.152-.243a1.083 1.083 0 0 1 1.714-.166c1.445 1.555 2.817 4.742 2.817 6.793 0 4.62-3.89 8.347-8.666 8.347C6.89 22.752 3 19.025 3 14.404c0-2.44 1.107-5.11 2.851-6.826l.656-.638c.26-.256.47-.466.67-.676C8.724 4.626 9.5 3.096 9.5 1.085" }) }));
|
|
3
|
+
export { Flame };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const LangGraph = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: _jsxs("g", { transform: "scale(.2449)", children: [_jsx("rect", { width: 97.25, height: 97.25, x: 97.251, fill: "var(--lc-icon-surface, #030710)", rx: 19.45, transform: "rotate(90 97.25 0)" }), _jsx("path", { fill: "var(--lc-icon-glyph, #7FC8FF)", d: "M31.265 65.992h12.719c-.002 7.021-5.694 12.713-12.716 12.713-7.023 0-12.717-5.694-12.717-12.717 0-7.022 5.693-12.714 12.714-12.715zm34.738-12.72c7.023 0 12.716 5.694 12.716 12.716 0 7.023-5.693 12.717-12.716 12.717-7.021 0-12.714-5.692-12.716-12.713h12.707v-12.72zm0-34.721c7.023 0 12.716 5.694 12.716 12.717 0 7.022-5.693 12.715-12.716 12.715h-.01v-12.72H53.288c.002-7.02 5.695-12.712 12.716-12.712m-34.736 0c7.022 0 12.715 5.691 12.717 12.713H31.265v12.719c-7.022-.002-12.714-5.694-12.714-12.716 0-7.023 5.694-12.716 12.716-12.716" })] }) }));
|
|
3
|
+
export { LangGraph };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const LangSmithDeployment = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: _jsxs("g", { transform: "scale(.24242)", children: [_jsx("rect", { width: 98.077, height: 98.077, fill: "var(--lc-icon-surface, #030710)", rx: 19.615 }), _jsx("path", { fill: "var(--lc-icon-glyph, #7FC8FF)", d: "M41.293 29.997c-6.673.073-13.323 2.652-18.411 7.741A26.36 26.36 0 0 0 15.4 52.663l16.864-3.88.368-1.882c1.084-5.595 4.262-11.654 8.663-16.908zM68.03 56.774c-5.248 4.446-11.222 7.694-16.6 8.847l-1.827.394-2.642 16.331a26.33 26.33 0 0 0 13.323-7.194c5.081-5.081 7.66-11.717 7.741-18.382zM71.258 47.898c3.994-4.964 10.119-15.005 6.276-26.528-11.644-4.633-21.832 1.154-26.866 5.02a42.4 42.4 0 0 0-4.765 4.287c-4.964 5.184-8.594 11.511-9.707 17.254l14.138 14.138c5.427-1.165 11.801-4.96 17.019-9.95a45 45 0 0 0 3.902-4.225z" })] }) }));
|
|
3
|
+
export { LangSmithDeployment };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const LangSmithEngine = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: _jsxs("g", { transform: "scale(.2449)", children: [_jsx("rect", { width: 98, height: 98, fill: "var(--lc-icon-surface, #030710)", rx: 19.6 }), _jsx("path", { fill: "var(--lc-icon-glyph, #7FC8FF)", fillRule: "evenodd", d: "M37.659 59.313a20.3 20.3 0 0 1-14.66-5.96c-7.948-7.949-7.948-20.856 0-28.804 7.95-7.949 20.856-7.949 28.805 0a20.3 20.3 0 0 1 5.96 14.659 21.3 21.3 0 0 0-11.032 3.828c1.63-3.728.92-8.237-2.129-11.286-3.974-3.975-10.428-3.975-14.402 0-3.975 3.974-3.975 10.427 0 14.402 3.049 3.049 7.558 3.759 11.286 2.13a10.2 10.2 0 0 0 3.116-2.13 20.29 20.29 0 0 1 14.145-5.96 20.3 20.3 0 0 1 14.659 5.96c7.949 7.948 7.949 20.855 0 28.804s-20.855 7.948-28.804 0a20.3 20.3 0 0 1-5.96-14.66 21.3 21.3 0 0 0 11.032-3.828c-1.63 3.729-.92 8.237 2.129 11.287 3.974 3.974 10.427 3.974 14.402 0s3.974-10.428 0-14.402c-3.05-3.05-7.558-3.76-11.287-2.13a10.2 10.2 0 0 0-3.115 2.13 20.29 20.29 0 0 1-14.145 5.96", clipRule: "evenodd" })] }) }));
|
|
3
|
+
export { LangSmithEngine };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const LangSmithEvaluation = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: _jsxs("g", { transform: "scale(.24242)", children: [_jsx("rect", { width: 98.042, height: 98.042, fill: "var(--lc-icon-surface, #030710)", rx: 19.608 }), _jsx("path", { fill: "var(--lc-icon-glyph, #7FC8FF)", d: "M22.051 74.497c0-7.976 6.466-14.442 14.442-14.442v14.442zM40.305 51.49c0-7.975 6.466-14.441 14.442-14.441v37.448H40.305zM58.56 37.989c0-7.976 6.465-14.442 14.44-14.442v50.95H58.56z" })] }) }));
|
|
3
|
+
export { LangSmithEvaluation };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const LangSmithFleet = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: _jsxs("g", { transform: "scale(.2353)", children: [_jsx("rect", { width: 101.192, height: 101.192, fill: "var(--lc-icon-surface, #030710)", rx: 21.082 }), _jsx("path", { fill: "var(--lc-icon-glyph, #7FC8FF)", d: "M57.75 80.44c10.733 0 19.435-8.702 19.435-19.435H44.293c-10.733 0-19.435 8.7-19.435 19.434z" }), _jsx("path", { fill: "var(--lc-icon-glyph, #7FC8FF)", d: "M57.75 61.505c10.733 0 19.435-8.702 19.435-19.435H44.293c-10.733 0-19.435 8.701-19.435 19.435z" }), _jsx("path", { fill: "var(--lc-icon-glyph, #7FC8FF)", d: "M57.75 42.57c10.733 0 19.435-8.702 19.435-19.435H44.293c-10.733 0-19.435 8.701-19.435 19.435z" })] }) }));
|
|
3
|
+
export { LangSmithFleet };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const LangSmithObservability = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: _jsxs("g", { transform: "scale(.24242)", children: [_jsx("rect", { width: 98.077, height: 98.077, fill: "var(--lc-icon-surface, #030710)", rx: 19.615 }), _jsxs("g", { fill: "var(--lc-icon-glyph, #7FC8FF)", clipPath: "url(#a)", children: [_jsx("path", { d: "M49.872 58.288c6.038 0 10.932-4.895 10.932-10.932s-4.895-10.931-10.932-10.931-10.931 4.894-10.931 10.931 4.894 10.932 10.931 10.932" }), _jsx("path", { d: "M21.266 47.355S35.36 62.116 49.687 62.112c14.32 0 28.422-14.757 28.422-14.757l8.016 10.932c-18.736 23.232-54.14 23.232-72.875 0z" }), _jsx("path", { d: "M21.265 47.356S35.36 32.595 49.687 32.599c14.32 0 28.421 14.757 28.421 14.757l8.017-10.931c-18.737-23.233-54.14-23.233-72.876 0z" })] }), _jsx("defs", { children: _jsx("clipPath", { id: "a", children: _jsx("path", { fill: "#fff", d: "M13.249 19h72.876v56.712H13.249z" }) }) })] }) }));
|
|
3
|
+
export { LangSmithObservability };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const LangchainOss = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: _jsxs("g", { transform: "scale(.2449)", children: [_jsx("rect", { width: 97.25, height: 97.25, fill: "var(--lc-icon-surface, #030710)", rx: 19.45 }), _jsx("path", { stroke: "var(--lc-icon-glyph, #7FC8FF)", strokeWidth: 11.708, d: "m52.77 52.766 8.686-8.687c4.575-4.575 4.575-11.991 0-16.566-4.574-4.574-11.99-4.574-16.565 0l-8.687 8.688M44.485 44.483l-8.687 8.688c-4.575 4.574-4.575 11.99 0 16.565 4.574 4.575 11.99 4.575 16.565 0l8.688-8.687" })] }) }));
|
|
3
|
+
export { LangchainOss };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const PromptEngineering = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: _jsxs("g", { transform: "scale(.24)", children: [_jsx("rect", { width: 100, height: 100, fill: "var(--lc-icon-surface, #030710)", rx: 20 }), _jsx("path", { fill: "var(--lc-icon-glyph, #7FC8FF)", d: "M63.425 50.173 29.78 80c-5.165-4.395-5.245-12.344-.17-16.843l15.036-13.33-14.969-13.06C24.581 32.32 24.63 24.383 29.78 20zM47.92 80c0-3.153 1.329-6.159 3.66-8.28l.471-.43A12.64 12.64 0 0 1 60.557 68H80v12z" })] }) }));
|
|
3
|
+
export { PromptEngineering };
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
const Sandboxes = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: _jsxs("g", { transform: "scale(.2449)", children: [_jsx("rect", { width: 97.25, height: 97.25, fill: "var(--lc-icon-surface, #030710)", rx: 19.485 }), _jsx("path", { fill: "var(--lc-icon-glyph, #7FC8FF)", d: "M24 62.404c0 6.954 5.638 12.592 12.592 12.592h8.535v-7.65h-8.535a4.94 4.94 0 0 1-4.942-4.942v-6.257L24 48.497zM24.003 34.592C24.003 27.638 29.64 22 36.594 22h8.535v7.65h-8.535a4.94 4.94 0 0 0-4.942 4.942v6.256l-7.65 7.65zM74.043 62.408C74.043 69.362 68.406 75 61.452 75h-8.535v-7.65h8.535a4.94 4.94 0 0 0 4.942-4.942v-6.257l7.65-7.649zM74.043 34.596c0-6.954-5.637-12.592-12.591-12.592h-8.535v7.65h8.535a4.94 4.94 0 0 1 4.942 4.942v6.256l7.65 7.65z" })] }) }));
|
|
3
|
+
export { Sandboxes };
|
package/dist/index.d.ts
CHANGED
|
@@ -387,6 +387,7 @@ export { Dataflow01 as Dataflow01Icon } from "./components/Dataflow01";
|
|
|
387
387
|
export { Dataflow02 as Dataflow02Icon } from "./components/Dataflow02";
|
|
388
388
|
export { Dataflow03 as Dataflow03Icon } from "./components/Dataflow03";
|
|
389
389
|
export { Dataflow04 as Dataflow04Icon } from "./components/Dataflow04";
|
|
390
|
+
export { DeepAgents as DeepAgentsIcon } from "./components/DeepAgents";
|
|
390
391
|
export { Delete as DeleteIcon } from "./components/Delete";
|
|
391
392
|
export { Diamond01 as Diamond01Icon } from "./components/Diamond01";
|
|
392
393
|
export { Diamond02 as Diamond02Icon } from "./components/Diamond02";
|
|
@@ -510,6 +511,7 @@ export { Flag03 as Flag03Icon } from "./components/Flag03";
|
|
|
510
511
|
export { Flag04 as Flag04Icon } from "./components/Flag04";
|
|
511
512
|
export { Flag05 as Flag05Icon } from "./components/Flag05";
|
|
512
513
|
export { Flag06 as Flag06Icon } from "./components/Flag06";
|
|
514
|
+
export { Flame as FlameIcon } from "./components/Flame";
|
|
513
515
|
export { FlashOff as FlashOffIcon } from "./components/FlashOff";
|
|
514
516
|
export { Flash as FlashIcon } from "./components/Flash";
|
|
515
517
|
export { FlexAlignBottom as FlexAlignBottomIcon } from "./components/FlexAlignBottom";
|
|
@@ -642,6 +644,13 @@ export { Key01 as Key01Icon } from "./components/Key01";
|
|
|
642
644
|
export { Key02 as Key02Icon } from "./components/Key02";
|
|
643
645
|
export { Keyboard01 as Keyboard01Icon } from "./components/Keyboard01";
|
|
644
646
|
export { Keyboard02 as Keyboard02Icon } from "./components/Keyboard02";
|
|
647
|
+
export { LangGraph as LangGraphIcon } from "./components/LangGraph";
|
|
648
|
+
export { LangSmithDeployment as LangSmithDeploymentIcon } from "./components/LangSmithDeployment";
|
|
649
|
+
export { LangSmithEngine as LangSmithEngineIcon } from "./components/LangSmithEngine";
|
|
650
|
+
export { LangSmithEvaluation as LangSmithEvaluationIcon } from "./components/LangSmithEvaluation";
|
|
651
|
+
export { LangSmithFleet as LangSmithFleetIcon } from "./components/LangSmithFleet";
|
|
652
|
+
export { LangSmithObservability as LangSmithObservabilityIcon } from "./components/LangSmithObservability";
|
|
653
|
+
export { LangchainOss as LangchainOssIcon } from "./components/LangchainOss";
|
|
645
654
|
export { Laptop01 as Laptop01Icon } from "./components/Laptop01";
|
|
646
655
|
export { Laptop02 as Laptop02Icon } from "./components/Laptop02";
|
|
647
656
|
export { LayerSingle as LayerSingleIcon } from "./components/LayerSingle";
|
|
@@ -877,6 +886,7 @@ export { PresentationChart01 as PresentationChart01Icon } from "./components/Pre
|
|
|
877
886
|
export { PresentationChart02 as PresentationChart02Icon } from "./components/PresentationChart02";
|
|
878
887
|
export { PresentationChart03 as PresentationChart03Icon } from "./components/PresentationChart03";
|
|
879
888
|
export { Printer as PrinterIcon } from "./components/Printer";
|
|
889
|
+
export { PromptEngineering as PromptEngineeringIcon } from "./components/PromptEngineering";
|
|
880
890
|
export { PuzzlePiece01 as PuzzlePiece01Icon } from "./components/PuzzlePiece01";
|
|
881
891
|
export { PuzzlePiece02 as PuzzlePiece02Icon } from "./components/PuzzlePiece02";
|
|
882
892
|
export { QrCode01 as QrCode01Icon } from "./components/QrCode01";
|
|
@@ -921,6 +931,7 @@ export { Sale01 as Sale01Icon } from "./components/Sale01";
|
|
|
921
931
|
export { Sale02 as Sale02Icon } from "./components/Sale02";
|
|
922
932
|
export { Sale03 as Sale03Icon } from "./components/Sale03";
|
|
923
933
|
export { Sale04 as Sale04Icon } from "./components/Sale04";
|
|
934
|
+
export { Sandboxes as SandboxesIcon } from "./components/Sandboxes";
|
|
924
935
|
export { Save01 as Save01Icon } from "./components/Save01";
|
|
925
936
|
export { Save02 as Save02Icon } from "./components/Save02";
|
|
926
937
|
export { Save03 as Save03Icon } from "./components/Save03";
|
|
@@ -1690,6 +1701,7 @@ export { Flag03Solid as Flag03SolidIcon } from "./solid-components/Flag03Solid";
|
|
|
1690
1701
|
export { Flag04Solid as Flag04SolidIcon } from "./solid-components/Flag04Solid";
|
|
1691
1702
|
export { Flag05Solid as Flag05SolidIcon } from "./solid-components/Flag05Solid";
|
|
1692
1703
|
export { Flag06Solid as Flag06SolidIcon } from "./solid-components/Flag06Solid";
|
|
1704
|
+
export { FlameSolid as FlameSolidIcon } from "./solid-components/FlameSolid";
|
|
1693
1705
|
export { FlashOffSolid as FlashOffSolidIcon } from "./solid-components/FlashOffSolid";
|
|
1694
1706
|
export { FlashSolid as FlashSolidIcon } from "./solid-components/FlashSolid";
|
|
1695
1707
|
export { FlexAlignBottomSolid as FlexAlignBottomSolidIcon } from "./solid-components/FlexAlignBottomSolid";
|
package/dist/index.js
CHANGED
|
@@ -388,6 +388,7 @@ export { Dataflow01 as Dataflow01Icon } from "./components/Dataflow01";
|
|
|
388
388
|
export { Dataflow02 as Dataflow02Icon } from "./components/Dataflow02";
|
|
389
389
|
export { Dataflow03 as Dataflow03Icon } from "./components/Dataflow03";
|
|
390
390
|
export { Dataflow04 as Dataflow04Icon } from "./components/Dataflow04";
|
|
391
|
+
export { DeepAgents as DeepAgentsIcon } from "./components/DeepAgents";
|
|
391
392
|
export { Delete as DeleteIcon } from "./components/Delete";
|
|
392
393
|
export { Diamond01 as Diamond01Icon } from "./components/Diamond01";
|
|
393
394
|
export { Diamond02 as Diamond02Icon } from "./components/Diamond02";
|
|
@@ -511,6 +512,7 @@ export { Flag03 as Flag03Icon } from "./components/Flag03";
|
|
|
511
512
|
export { Flag04 as Flag04Icon } from "./components/Flag04";
|
|
512
513
|
export { Flag05 as Flag05Icon } from "./components/Flag05";
|
|
513
514
|
export { Flag06 as Flag06Icon } from "./components/Flag06";
|
|
515
|
+
export { Flame as FlameIcon } from "./components/Flame";
|
|
514
516
|
export { FlashOff as FlashOffIcon } from "./components/FlashOff";
|
|
515
517
|
export { Flash as FlashIcon } from "./components/Flash";
|
|
516
518
|
export { FlexAlignBottom as FlexAlignBottomIcon } from "./components/FlexAlignBottom";
|
|
@@ -643,6 +645,13 @@ export { Key01 as Key01Icon } from "./components/Key01";
|
|
|
643
645
|
export { Key02 as Key02Icon } from "./components/Key02";
|
|
644
646
|
export { Keyboard01 as Keyboard01Icon } from "./components/Keyboard01";
|
|
645
647
|
export { Keyboard02 as Keyboard02Icon } from "./components/Keyboard02";
|
|
648
|
+
export { LangGraph as LangGraphIcon } from "./components/LangGraph";
|
|
649
|
+
export { LangSmithDeployment as LangSmithDeploymentIcon } from "./components/LangSmithDeployment";
|
|
650
|
+
export { LangSmithEngine as LangSmithEngineIcon } from "./components/LangSmithEngine";
|
|
651
|
+
export { LangSmithEvaluation as LangSmithEvaluationIcon } from "./components/LangSmithEvaluation";
|
|
652
|
+
export { LangSmithFleet as LangSmithFleetIcon } from "./components/LangSmithFleet";
|
|
653
|
+
export { LangSmithObservability as LangSmithObservabilityIcon } from "./components/LangSmithObservability";
|
|
654
|
+
export { LangchainOss as LangchainOssIcon } from "./components/LangchainOss";
|
|
646
655
|
export { Laptop01 as Laptop01Icon } from "./components/Laptop01";
|
|
647
656
|
export { Laptop02 as Laptop02Icon } from "./components/Laptop02";
|
|
648
657
|
export { LayerSingle as LayerSingleIcon } from "./components/LayerSingle";
|
|
@@ -878,6 +887,7 @@ export { PresentationChart01 as PresentationChart01Icon } from "./components/Pre
|
|
|
878
887
|
export { PresentationChart02 as PresentationChart02Icon } from "./components/PresentationChart02";
|
|
879
888
|
export { PresentationChart03 as PresentationChart03Icon } from "./components/PresentationChart03";
|
|
880
889
|
export { Printer as PrinterIcon } from "./components/Printer";
|
|
890
|
+
export { PromptEngineering as PromptEngineeringIcon } from "./components/PromptEngineering";
|
|
881
891
|
export { PuzzlePiece01 as PuzzlePiece01Icon } from "./components/PuzzlePiece01";
|
|
882
892
|
export { PuzzlePiece02 as PuzzlePiece02Icon } from "./components/PuzzlePiece02";
|
|
883
893
|
export { QrCode01 as QrCode01Icon } from "./components/QrCode01";
|
|
@@ -922,6 +932,7 @@ export { Sale01 as Sale01Icon } from "./components/Sale01";
|
|
|
922
932
|
export { Sale02 as Sale02Icon } from "./components/Sale02";
|
|
923
933
|
export { Sale03 as Sale03Icon } from "./components/Sale03";
|
|
924
934
|
export { Sale04 as Sale04Icon } from "./components/Sale04";
|
|
935
|
+
export { Sandboxes as SandboxesIcon } from "./components/Sandboxes";
|
|
925
936
|
export { Save01 as Save01Icon } from "./components/Save01";
|
|
926
937
|
export { Save02 as Save02Icon } from "./components/Save02";
|
|
927
938
|
export { Save03 as Save03Icon } from "./components/Save03";
|
|
@@ -1691,6 +1702,7 @@ export { Flag03Solid as Flag03SolidIcon } from "./solid-components/Flag03Solid";
|
|
|
1691
1702
|
export { Flag04Solid as Flag04SolidIcon } from "./solid-components/Flag04Solid";
|
|
1692
1703
|
export { Flag05Solid as Flag05SolidIcon } from "./solid-components/Flag05Solid";
|
|
1693
1704
|
export { Flag06Solid as Flag06SolidIcon } from "./solid-components/Flag06Solid";
|
|
1705
|
+
export { FlameSolid as FlameSolidIcon } from "./solid-components/FlameSolid";
|
|
1694
1706
|
export { FlashOffSolid as FlashOffSolidIcon } from "./solid-components/FlashOffSolid";
|
|
1695
1707
|
export { FlashSolid as FlashSolidIcon } from "./solid-components/FlashSolid";
|
|
1696
1708
|
export { FlexAlignBottomSolid as FlexAlignBottomSolidIcon } from "./solid-components/FlexAlignBottomSolid";
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const FlameSolid = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: "24px", height: "24px", ...props, children: _jsx("path", { fill: "currentColor", d: "M9.5 1.085c0-.953 1.144-1.442 1.833-.782 2.121 2.032 3.354 6.495 1.896 9.88l-.087.189.013.003c.677.144 1.303-.466 2.495-2.354l.152-.243a1.083 1.083 0 0 1 1.714-.166c1.445 1.555 2.817 4.742 2.817 6.793 0 4.62-3.89 8.347-8.666 8.347C6.89 22.752 3 19.025 3 14.404c0-2.44 1.107-5.11 2.851-6.826l.656-.638c.26-.256.47-.466.67-.676C8.724 4.626 9.5 3.096 9.5 1.085" }) }));
|
|
3
|
+
export { FlameSolid };
|
package/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/untitled-ui-icons",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "icons from untitled ui for langsmith and langgraph frontend",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/langchain-ai/langchain-untitled-ui-icons.git"
|
|
8
|
+
},
|
|
5
9
|
"main": "dist/index.js",
|
|
6
10
|
"types": "dist/index.d.ts",
|
|
7
11
|
"sideEffects": false,
|