@langchain/untitled-ui-icons 1.1.1 → 1.1.3

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.
Files changed (28) hide show
  1. package/README.md +14 -0
  2. package/dist/components/Robot.d.ts +3 -0
  3. package/dist/components/Robot.js +3 -0
  4. package/dist/index.d.ts +12 -0
  5. package/dist/index.js +12 -0
  6. package/dist/solid-components/LangsmithDeepagentsSolid.d.ts +3 -0
  7. package/dist/solid-components/LangsmithDeepagentsSolid.js +3 -0
  8. package/dist/solid-components/LangsmithDeploymentSolid.d.ts +3 -0
  9. package/dist/solid-components/LangsmithDeploymentSolid.js +3 -0
  10. package/dist/solid-components/LangsmithEngineSolid.d.ts +3 -0
  11. package/dist/solid-components/LangsmithEngineSolid.js +3 -0
  12. package/dist/solid-components/LangsmithEvaluationSolid.d.ts +3 -0
  13. package/dist/solid-components/LangsmithEvaluationSolid.js +3 -0
  14. package/dist/solid-components/LangsmithFleetSolid.d.ts +3 -0
  15. package/dist/solid-components/LangsmithFleetSolid.js +3 -0
  16. package/dist/solid-components/LangsmithLanggraphSolid.d.ts +3 -0
  17. package/dist/solid-components/LangsmithLanggraphSolid.js +3 -0
  18. package/dist/solid-components/LangsmithObservabilitySolid.d.ts +3 -0
  19. package/dist/solid-components/LangsmithObservabilitySolid.js +3 -0
  20. package/dist/solid-components/LangsmithOssSolid.d.ts +3 -0
  21. package/dist/solid-components/LangsmithOssSolid.js +3 -0
  22. package/dist/solid-components/LangsmithPromptengineeringSolid.d.ts +3 -0
  23. package/dist/solid-components/LangsmithPromptengineeringSolid.js +3 -0
  24. package/dist/solid-components/LangsmithSandboxesSolid.d.ts +3 -0
  25. package/dist/solid-components/LangsmithSandboxesSolid.js +3 -0
  26. package/dist/solid-components/RobotSolid.d.ts +3 -0
  27. package/dist/solid-components/RobotSolid.js +3 -0
  28. 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 type { SVGProps } from "react";
2
+ declare const Robot: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { Robot };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const Robot = (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", d: "M12.002 4c.395 0 .78.13 1.093.368.314.238.54.572.642.95.103.377.076.777-.075 1.138a1.8 1.8 0 0 1-.76.86v.24h2.7c.954 0 1.87.374 2.545 1.04a3.53 3.53 0 0 1 1.054 2.515v.045c.508.102.965.375 1.292.772a2.206 2.206 0 0 1 0 2.81c-.327.397-.784.67-1.292.773v.933c0 .943-.379 1.848-1.054 2.515A3.62 3.62 0 0 1 15.602 20h-7.2c-.955 0-1.87-.375-2.545-1.041a3.53 3.53 0 0 1-1.055-2.515v-.933a2.26 2.26 0 0 1-1.294-.771 2.206 2.206 0 0 1 0-2.813c.328-.397.786-.67 1.294-.771v-.045c0-.943.38-1.847 1.055-2.514a3.62 3.62 0 0 1 2.545-1.041h2.7v-.24a1.8 1.8 0 0 1-.76-.86 1.76 1.76 0 0 1-.075-1.139c.102-.377.327-.71.641-.949A1.8 1.8 0 0 1 12.002 4Zm-2.7 8a.9.9 0 0 0-.636.26.88.88 0 0 0-.264.629v1.778c0 .235.095.462.264.628a.906.906 0 0 0 1.272 0 .88.88 0 0 0 .264-.628v-1.778a.88.88 0 0 0-.264-.629.9.9 0 0 0-.636-.26Zm5.4 0a.9.9 0 0 0-.637.26.88.88 0 0 0-.263.629v1.778c0 .235.095.462.263.628a.906.906 0 0 0 1.273 0 .88.88 0 0 0 .264-.628v-1.778a.88.88 0 0 0-.264-.629.9.9 0 0 0-.636-.26Z", clipRule: "evenodd" }) }));
3
+ export { Robot };
package/dist/index.d.ts CHANGED
@@ -907,6 +907,7 @@ export { ReverseLeft as ReverseLeftIcon } from "./components/ReverseLeft";
907
907
  export { ReverseRight as ReverseRightIcon } from "./components/ReverseRight";
908
908
  export { RightIndent01 as RightIndent01Icon } from "./components/RightIndent01";
909
909
  export { RightIndent02 as RightIndent02Icon } from "./components/RightIndent02";
910
+ export { Robot as RobotIcon } from "./components/Robot";
910
911
  export { Rocket01 as Rocket01Icon } from "./components/Rocket01";
911
912
  export { Rocket02 as Rocket02Icon } from "./components/Rocket02";
912
913
  export { RollerBrush as RollerBrushIcon } from "./components/RollerBrush";
@@ -1824,6 +1825,16 @@ export { Key01Solid as Key01SolidIcon } from "./solid-components/Key01Solid";
1824
1825
  export { Key02Solid as Key02SolidIcon } from "./solid-components/Key02Solid";
1825
1826
  export { Keyboard01Solid as Keyboard01SolidIcon } from "./solid-components/Keyboard01Solid";
1826
1827
  export { Keyboard02Solid as Keyboard02SolidIcon } from "./solid-components/Keyboard02Solid";
1828
+ export { LangsmithDeepagentsSolid as LangsmithDeepagentsSolidIcon } from "./solid-components/LangsmithDeepagentsSolid";
1829
+ export { LangsmithDeploymentSolid as LangsmithDeploymentSolidIcon } from "./solid-components/LangsmithDeploymentSolid";
1830
+ export { LangsmithEngineSolid as LangsmithEngineSolidIcon } from "./solid-components/LangsmithEngineSolid";
1831
+ export { LangsmithEvaluationSolid as LangsmithEvaluationSolidIcon } from "./solid-components/LangsmithEvaluationSolid";
1832
+ export { LangsmithFleetSolid as LangsmithFleetSolidIcon } from "./solid-components/LangsmithFleetSolid";
1833
+ export { LangsmithLanggraphSolid as LangsmithLanggraphSolidIcon } from "./solid-components/LangsmithLanggraphSolid";
1834
+ export { LangsmithObservabilitySolid as LangsmithObservabilitySolidIcon } from "./solid-components/LangsmithObservabilitySolid";
1835
+ export { LangsmithOssSolid as LangsmithOssSolidIcon } from "./solid-components/LangsmithOssSolid";
1836
+ export { LangsmithPromptengineeringSolid as LangsmithPromptengineeringSolidIcon } from "./solid-components/LangsmithPromptengineeringSolid";
1837
+ export { LangsmithSandboxesSolid as LangsmithSandboxesSolidIcon } from "./solid-components/LangsmithSandboxesSolid";
1827
1838
  export { Laptop01Solid as Laptop01SolidIcon } from "./solid-components/Laptop01Solid";
1828
1839
  export { Laptop02Solid as Laptop02SolidIcon } from "./solid-components/Laptop02Solid";
1829
1840
  export { LayerSingleSolid as LayerSingleSolidIcon } from "./solid-components/LayerSingleSolid";
@@ -2096,6 +2107,7 @@ export { ReverseLeftSolid as ReverseLeftSolidIcon } from "./solid-components/Rev
2096
2107
  export { ReverseRightSolid as ReverseRightSolidIcon } from "./solid-components/ReverseRightSolid";
2097
2108
  export { RightIndent01Solid as RightIndent01SolidIcon } from "./solid-components/RightIndent01Solid";
2098
2109
  export { RightIndent02Solid as RightIndent02SolidIcon } from "./solid-components/RightIndent02Solid";
2110
+ export { RobotSolid as RobotSolidIcon } from "./solid-components/RobotSolid";
2099
2111
  export { Rocket01Solid as Rocket01SolidIcon } from "./solid-components/Rocket01Solid";
2100
2112
  export { Rocket02Solid as Rocket02SolidIcon } from "./solid-components/Rocket02Solid";
2101
2113
  export { RollerBrushSolid as RollerBrushSolidIcon } from "./solid-components/RollerBrushSolid";
package/dist/index.js CHANGED
@@ -908,6 +908,7 @@ export { ReverseLeft as ReverseLeftIcon } from "./components/ReverseLeft";
908
908
  export { ReverseRight as ReverseRightIcon } from "./components/ReverseRight";
909
909
  export { RightIndent01 as RightIndent01Icon } from "./components/RightIndent01";
910
910
  export { RightIndent02 as RightIndent02Icon } from "./components/RightIndent02";
911
+ export { Robot as RobotIcon } from "./components/Robot";
911
912
  export { Rocket01 as Rocket01Icon } from "./components/Rocket01";
912
913
  export { Rocket02 as Rocket02Icon } from "./components/Rocket02";
913
914
  export { RollerBrush as RollerBrushIcon } from "./components/RollerBrush";
@@ -1825,6 +1826,16 @@ export { Key01Solid as Key01SolidIcon } from "./solid-components/Key01Solid";
1825
1826
  export { Key02Solid as Key02SolidIcon } from "./solid-components/Key02Solid";
1826
1827
  export { Keyboard01Solid as Keyboard01SolidIcon } from "./solid-components/Keyboard01Solid";
1827
1828
  export { Keyboard02Solid as Keyboard02SolidIcon } from "./solid-components/Keyboard02Solid";
1829
+ export { LangsmithDeepagentsSolid as LangsmithDeepagentsSolidIcon } from "./solid-components/LangsmithDeepagentsSolid";
1830
+ export { LangsmithDeploymentSolid as LangsmithDeploymentSolidIcon } from "./solid-components/LangsmithDeploymentSolid";
1831
+ export { LangsmithEngineSolid as LangsmithEngineSolidIcon } from "./solid-components/LangsmithEngineSolid";
1832
+ export { LangsmithEvaluationSolid as LangsmithEvaluationSolidIcon } from "./solid-components/LangsmithEvaluationSolid";
1833
+ export { LangsmithFleetSolid as LangsmithFleetSolidIcon } from "./solid-components/LangsmithFleetSolid";
1834
+ export { LangsmithLanggraphSolid as LangsmithLanggraphSolidIcon } from "./solid-components/LangsmithLanggraphSolid";
1835
+ export { LangsmithObservabilitySolid as LangsmithObservabilitySolidIcon } from "./solid-components/LangsmithObservabilitySolid";
1836
+ export { LangsmithOssSolid as LangsmithOssSolidIcon } from "./solid-components/LangsmithOssSolid";
1837
+ export { LangsmithPromptengineeringSolid as LangsmithPromptengineeringSolidIcon } from "./solid-components/LangsmithPromptengineeringSolid";
1838
+ export { LangsmithSandboxesSolid as LangsmithSandboxesSolidIcon } from "./solid-components/LangsmithSandboxesSolid";
1828
1839
  export { Laptop01Solid as Laptop01SolidIcon } from "./solid-components/Laptop01Solid";
1829
1840
  export { Laptop02Solid as Laptop02SolidIcon } from "./solid-components/Laptop02Solid";
1830
1841
  export { LayerSingleSolid as LayerSingleSolidIcon } from "./solid-components/LayerSingleSolid";
@@ -2097,6 +2108,7 @@ export { ReverseLeftSolid as ReverseLeftSolidIcon } from "./solid-components/Rev
2097
2108
  export { ReverseRightSolid as ReverseRightSolidIcon } from "./solid-components/ReverseRightSolid";
2098
2109
  export { RightIndent01Solid as RightIndent01SolidIcon } from "./solid-components/RightIndent01Solid";
2099
2110
  export { RightIndent02Solid as RightIndent02SolidIcon } from "./solid-components/RightIndent02Solid";
2111
+ export { RobotSolid as RobotSolidIcon } from "./solid-components/RobotSolid";
2100
2112
  export { Rocket01Solid as Rocket01SolidIcon } from "./solid-components/Rocket01Solid";
2101
2113
  export { Rocket02Solid as Rocket02SolidIcon } from "./solid-components/Rocket02Solid";
2102
2114
  export { RollerBrushSolid as RollerBrushSolidIcon } from "./solid-components/RollerBrushSolid";
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const LangsmithDeepagentsSolid: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { LangsmithDeepagentsSolid };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const LangsmithDeepagentsSolid = (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: "M17.764 10.335V5.398H12.67v.117c2.64.068 4.79 2.23 5.004 4.82zM12.055 5.398H6.092V15.45c0 1.857 1.432 3.012 3.737 3.012h7.938v-7.345h-5.712z" }) }));
3
+ export { LangsmithDeepagentsSolid };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const LangsmithDeploymentSolid: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { LangsmithDeploymentSolid };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const LangsmithDeploymentSolid = (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: "M10.01 7.272a6.4 6.4 0 0 0-4.463 1.877 6.4 6.4 0 0 0-1.813 3.618l4.088-.94.09-.457c.262-1.356 1.032-2.825 2.1-4.099zM16.492 13.763c-1.272 1.078-2.72 1.866-4.024 2.145l-.443.095-.64 3.96a6.4 6.4 0 0 0 3.23-1.744 6.4 6.4 0 0 0 1.876-4.457zM17.275 11.612c.968-1.204 2.453-3.638 1.521-6.431-2.822-1.123-5.292.28-6.513 1.216-.41.314-.795.666-1.155 1.04-1.203 1.257-2.083 2.79-2.353 4.183l3.427 3.427c1.316-.282 2.861-1.202 4.126-2.412.338-.324.657-.666.946-1.024" }) }));
3
+ export { LangsmithDeploymentSolid };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const LangsmithEngineSolid: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { LangsmithEngineSolid };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const LangsmithEngineSolid = (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", fillRule: "evenodd", d: "M9.223 14.526a4.97 4.97 0 0 1-3.59-1.46 4.99 4.99 0 0 1 0-7.054 4.99 4.99 0 0 1 7.054 0 4.97 4.97 0 0 1 1.46 3.59 5.2 5.2 0 0 0-2.702.938 2.495 2.495 0 1 0-4.048.763 2.496 2.496 0 0 0 3.526 0 4.97 4.97 0 0 1 3.464-1.46c1.298-.016 2.6.47 3.59 1.46a4.99 4.99 0 0 1 0 7.054 4.99 4.99 0 0 1-7.054 0 4.97 4.97 0 0 1-1.46-3.59 5.2 5.2 0 0 0 2.702-.938 2.495 2.495 0 0 0 4.048 2.764 2.495 2.495 0 0 0-2.763-4.049 2.5 2.5 0 0 0-.763.522 4.97 4.97 0 0 1-3.464 1.46", clipRule: "evenodd" }) }));
3
+ export { LangsmithEngineSolid };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const LangsmithEvaluationSolid: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { LangsmithEvaluationSolid };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const LangsmithEvaluationSolid = (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: "M5.346 18.06a3.5 3.5 0 0 1 3.5-3.501v3.5zM9.77 12.483a3.5 3.5 0 0 1 3.502-3.501v9.078H9.77zM14.196 9.21a3.5 3.5 0 0 1 3.501-3.502V18.06h-3.5z" }) }));
3
+ export { LangsmithEvaluationSolid };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const LangsmithFleetSolid: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { LangsmithFleetSolid };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const LangsmithFleetSolid = (props) => (_jsxs("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: "M13.588 18.927a4.573 4.573 0 0 0 4.573-4.573h-7.739a4.573 4.573 0 0 0-4.573 4.573z" }), _jsx("path", { fill: "currentColor", d: "M13.588 14.472a4.573 4.573 0 0 0 4.573-4.573h-7.739a4.573 4.573 0 0 0-4.573 4.573z" }), _jsx("path", { fill: "currentColor", d: "M13.588 10.016a4.573 4.573 0 0 0 4.573-4.573h-7.739a4.573 4.573 0 0 0-4.573 4.573z" })] }));
3
+ export { LangsmithFleetSolid };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const LangsmithLanggraphSolid: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { LangsmithLanggraphSolid };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const LangsmithLanggraphSolid = (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: "M7.657 16.161h3.115a3.114 3.114 0 1 1-3.115-3.115zm8.507-3.115a3.114 3.114 0 1 1-3.114 3.115h3.112v-3.115zm0-8.503a3.114 3.114 0 0 1 0 6.228h-.002V7.656H13.05a3.114 3.114 0 0 1 3.114-3.113m-8.507 0a3.114 3.114 0 0 1 3.115 3.113H7.657v3.115a3.114 3.114 0 0 1 0-6.228" }) }));
3
+ export { LangsmithLanggraphSolid };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const LangsmithObservabilitySolid: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { LangsmithObservabilitySolid };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const LangsmithObservabilitySolid = (props) => (_jsxs("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: "M12.09 14.13a2.65 2.65 0 1 0 0-5.3 2.65 2.65 0 0 0 0 5.3" }), _jsx("path", { fill: "currentColor", d: "M5.155 11.48s3.417 3.579 6.89 3.578c3.472 0 6.89-3.578 6.89-3.578l1.944 2.65c-4.542 5.632-13.125 5.632-17.667 0zM5.155 11.48s3.417-3.578 6.89-3.577 6.89 3.577 6.89 3.577l1.944-2.65c-4.542-5.632-13.125-5.632-17.667 0z" })] }));
3
+ export { LangsmithObservabilitySolid };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const LangsmithOssSolid: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { LangsmithOssSolid };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const LangsmithOssSolid = (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: "M11.908 11.908 9.78 14.036a1.435 1.435 0 0 0 2.03 2.029l2.127-2.128 2.028 2.027-2.127 2.128a4.303 4.303 0 0 1-6.085-6.084L9.88 9.88zM9.98 5.724a4.302 4.302 0 0 1 6.084 6.085l-2.128 2.127-2.027-2.027 2.128-2.127a1.436 1.436 0 0 0-2.03-2.03L9.88 9.878 7.852 7.852z" }) }));
3
+ export { LangsmithOssSolid };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const LangsmithPromptengineeringSolid: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { LangsmithPromptengineeringSolid };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const LangsmithPromptengineeringSolid = (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: "M15.222 12.042 7.147 19.2a2.677 2.677 0 0 1-.04-4.042l3.608-3.2-3.593-3.134A2.656 2.656 0 0 1 7.148 4.8zM11.5 19.2c0-.757.32-1.478.88-1.987l.112-.103a3.03 3.03 0 0 1 2.042-.79H19.2v2.88z" }) }));
3
+ export { LangsmithPromptengineeringSolid };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const LangsmithSandboxesSolid: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { LangsmithSandboxesSolid };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const LangsmithSandboxesSolid = (props) => (_jsxs("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: "M5.878 15.283a3.084 3.084 0 0 0 3.083 3.083h2.09v-1.873h-2.09a1.21 1.21 0 0 1-1.21-1.21V13.75l-1.873-1.873zM5.878 8.471a3.084 3.084 0 0 1 3.084-3.083h2.09V7.26h-2.09a1.21 1.21 0 0 0-1.21 1.21v1.533l-1.874 1.873zM18.133 15.284a3.084 3.084 0 0 1-3.083 3.083h-2.09v-1.873h2.09a1.21 1.21 0 0 0 1.21-1.21V13.75l1.873-1.873z" }), _jsx("path", { fill: "currentColor", d: "M18.133 8.472A3.084 3.084 0 0 0 15.05 5.39h-2.09v1.873h2.09c.668 0 1.21.542 1.21 1.21v1.533l1.873 1.873z" })] }));
3
+ export { LangsmithSandboxesSolid };
@@ -0,0 +1,3 @@
1
+ import type { SVGProps } from "react";
2
+ declare const RobotSolid: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export { RobotSolid };
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ const RobotSolid = (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", fillRule: "evenodd", d: "M12.002 4c.395 0 .78.13 1.093.368.314.238.54.572.642.95.103.377.076.777-.075 1.138a1.8 1.8 0 0 1-.76.86v.24h2.7c.954 0 1.87.374 2.545 1.04a3.53 3.53 0 0 1 1.054 2.515v.045c.508.102.965.375 1.292.772a2.206 2.206 0 0 1 0 2.81c-.327.397-.784.67-1.292.773v.933c0 .943-.379 1.848-1.054 2.515A3.62 3.62 0 0 1 15.602 20h-7.2c-.955 0-1.87-.375-2.545-1.041a3.53 3.53 0 0 1-1.055-2.515v-.933a2.26 2.26 0 0 1-1.294-.771 2.206 2.206 0 0 1 0-2.813c.328-.397.786-.67 1.294-.771v-.045c0-.943.38-1.847 1.055-2.514a3.62 3.62 0 0 1 2.545-1.041h2.7v-.24a1.8 1.8 0 0 1-.76-.86 1.76 1.76 0 0 1-.075-1.139c.102-.377.327-.71.641-.949A1.8 1.8 0 0 1 12.002 4m-2.7 8a.9.9 0 0 0-.636.26.88.88 0 0 0-.264.629v1.778c0 .235.095.462.264.628a.906.906 0 0 0 1.272 0 .88.88 0 0 0 .264-.628v-1.778a.88.88 0 0 0-.264-.629.9.9 0 0 0-.636-.26m5.4 0a.9.9 0 0 0-.637.26.88.88 0 0 0-.263.629v1.778c0 .235.095.462.263.628a.906.906 0 0 0 1.273 0 .88.88 0 0 0 .264-.628v-1.778a.88.88 0 0 0-.264-.629.9.9 0 0 0-.636-.26", clipRule: "evenodd" }) }));
3
+ export { RobotSolid };
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "@langchain/untitled-ui-icons",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
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,