diff options
| author | Frank <[email protected]> | 2025-11-18 00:45:14 -0500 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-11-18 00:45:14 -0500 |
| commit | 16cb77c094c6ac83a6b1fa0d03a5a6b2ac5d8648 (patch) | |
| tree | 6b6988b9effe79a1b83ff7ceb6c54202c6dcfc88 /packages/console/app/src/component | |
| parent | a5564f730efec60317aced036b4dacdc0850bb3d (diff) | |
| download | opencode-16cb77c094c6ac83a6b1fa0d03a5a6b2ac5d8648.tar.gz opencode-16cb77c094c6ac83a6b1fa0d03a5a6b2ac5d8648.zip | |
zen: add usage graph
Diffstat (limited to 'packages/console/app/src/component')
| -rw-r--r-- | packages/console/app/src/component/icon.tsx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/console/app/src/component/icon.tsx b/packages/console/app/src/component/icon.tsx index 0395cad52..0c352fcdb 100644 --- a/packages/console/app/src/component/icon.tsx +++ b/packages/console/app/src/component/icon.tsx @@ -212,3 +212,19 @@ export function IconStealth(props: JSX.SvgSVGAttributes<SVGSVGElement>) { </svg> ) } + +export function IconChevronLeft(props: JSX.SvgSVGAttributes<SVGSVGElement>) { + return ( + <svg {...props} viewBox="0 0 20 20" fill="none"> + <path d="M12 15L7 10L12 5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" /> + </svg> + ) +} + +export function IconChevronRight(props: JSX.SvgSVGAttributes<SVGSVGElement>) { + return ( + <svg {...props} viewBox="0 0 20 20" fill="none"> + <path d="M8 5L13 10L8 15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" /> + </svg> + ) +} |
