diff options
| author | Jay V <[email protected]> | 2025-08-28 18:13:45 -0400 |
|---|---|---|
| committer | Jay V <[email protected]> | 2025-08-28 18:13:51 -0400 |
| commit | f2f4d87cc0d0a0466ce1efdac73c55de5693b483 (patch) | |
| tree | d489ad0630e01ff4711317b24c19a7a10b804f92 /cloud/app/src/component | |
| parent | 8a0e773addbbf7408cdfe85247404d1ab4bf6df4 (diff) | |
| download | opencode-f2f4d87cc0d0a0466ce1efdac73c55de5693b483.tar.gz opencode-f2f4d87cc0d0a0466ce1efdac73c55de5693b483.zip | |
ignore: cloud styles
Diffstat (limited to 'cloud/app/src/component')
| -rw-r--r-- | cloud/app/src/component/icon.tsx | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/cloud/app/src/component/icon.tsx b/cloud/app/src/component/icon.tsx index 5a565ab9a..d73c178bc 100644 --- a/cloud/app/src/component/icon.tsx +++ b/cloud/app/src/component/icon.tsx @@ -1,6 +1,21 @@ - import { JSX } from "solid-js" +export function IconLogo(props: JSX.SvgSVGAttributes<SVGSVGElement>) { + return ( + <svg {...props} viewBox="0 0 289 50" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M264.5 0H288.5V8.5H272.5V16.5H288.5V25H272.5V33H288.5V41.5H264.5V0Z" fill="currentColor" /> + <path d="M248.5 0H224.5V41.5H248.5V33H232.5V8.5H248.5V0Z" fill="currentColor" /> + <path d="M256.5 8.5H248.5V33H256.5V8.5Z" fill="currentColor" /> + <path fill-rule="evenodd" clip-rule="evenodd" d="M184.5 0H216.5V41.5H184.5V0ZM208.5 8.5H192.5V33H208.5V8.5Z" fill="currentColor" /> + <path d="M144.5 8.5H136.5V41.5H144.5V8.5Z" fill="currentColor" /> + <path d="M136.5 0H112.5V41.5H120.5V8.5H136.5V0Z" fill="currentColor" /> + <path d="M80.5 0H104.5V8.5H88.5V16.5H104.5V25H88.5V33H104.5V41.5H80.5V0Z" fill="currentColor" /> + <path fill-rule="evenodd" clip-rule="evenodd" d="M40.5 0H72.5V41.5H48.5V49.5H40.5V0ZM64.5 8.5H48.5V33H64.5V8.5Z" fill="currentColor" /> + <path fill-rule="evenodd" clip-rule="evenodd" d="M0.5 0H32.5V41.5955H0.5V0ZM24.5 8.5H8.5V33H24.5V8.5Z" fill="currentColor" /> + <path d="M152.5 0H176.5V8.5H160.5V33H176.5V41.5H152.5V0Z" fill="currentColor" /> + </svg> + ); +} export function IconCopy(props: JSX.SvgSVGAttributes<SVGSVGElement>) { return ( |
