summaryrefslogtreecommitdiffhomepage
path: root/packages/web/src/components/icons
diff options
context:
space:
mode:
authorJay V <[email protected]>2025-07-15 17:12:09 -0400
committerJay V <[email protected]>2025-07-15 17:47:22 -0400
commit749e7838a444d6f2f846bd7e6e008edae25b0c69 (patch)
tree2600d24c2bf539893da6d9977e44293e835d9294 /packages/web/src/components/icons
parent73b46c2bf9090094a5e31db62ef16fe1b08bb01e (diff)
downloadopencode-749e7838a444d6f2f846bd7e6e008edae25b0c69.tar.gz
opencode-749e7838a444d6f2f846bd7e6e008edae25b0c69.zip
docs: share page task tool
Diffstat (limited to 'packages/web/src/components/icons')
-rw-r--r--packages/web/src/components/icons/custom.tsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/web/src/components/icons/custom.tsx b/packages/web/src/components/icons/custom.tsx
index 95f64c191..ba06ddfb3 100644
--- a/packages/web/src/components/icons/custom.tsx
+++ b/packages/web/src/components/icons/custom.tsx
@@ -58,3 +58,11 @@ export function IconMeta(props: JSX.SvgSVGAttributes<SVGSVGElement>) {
</svg>
)
}
+
+// https://icones.js.org/collection/ri?s=robot&icon=ri:robot-2-line
+export function IconRobot(props: JSX.SvgSVGAttributes<SVGSVGElement>) {
+ return (
+ <svg {...props} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
+ <path fill="currentColor" d="M13.5 2c0 .444-.193.843-.5 1.118V5h5a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3h5V3.118A1.5 1.5 0 1 1 13.5 2M6 7a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1zm-4 3H0v6h2zm20 0h2v6h-2zM9 14.5a1.5 1.5 0 1 0 0-3a1.5 1.5 0 0 0 0 3m6 0a1.5 1.5 0 1 0 0-3a1.5 1.5 0 0 0 0 3" /></svg>
+ )
+}