Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion apps/landing/src/shared/icons/brands.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { CodexIcon } from "@onequery/ui/icons/codex-icon";
import { SimpleIconSvg, SvgIcon } from "@onequery/ui/icons/svg-icon";
import type { IconSvgProps, SimpleIconData } from "@onequery/ui/icons/svg-icon";
import type { ComponentType } from "react";
Expand Down Expand Up @@ -166,6 +167,10 @@ function HermesIcon({ size, ...props }: IconSvgProps) {
);
}

function CodexAppServerApiIcon(props: IconSvgProps) {
return <CodexIcon {...props} defaultLabel="Codex App Server API" />;
}

function OnePasswordIcon({ size, ...props }: IconSvgProps) {
return (
<SvgIcon
Expand Down Expand Up @@ -302,7 +307,7 @@ const BRAND_ICONS = {
bigquery: createSimpleBrandIcon(siGooglebigquery),
bun: createSimpleBrandIcon(siBun),
cal: createSimpleBrandIcon(siCaldotcom),
codex_app_server_api: HermesIcon,
codex_app_server_api: CodexAppServerApiIcon,
cloudflare_d1: CloudflareD1Icon,
cloudflare_r2_sql: createSimpleBrandIcon(siCloudflareworkers),
cloudflare_web_analytics: createSimpleBrandIcon(siCloudflareworkers),
Expand Down
1 change: 1 addition & 0 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"./data-sources/linear-access-mode": "./src/data-sources/linear-access-mode.tsx",
"./data-sources/provider-icons": "./src/data-sources/provider-icons.tsx",
"./components/*": "./src/components/ui/*.tsx",
"./icons/codex-icon": "./src/icons/codex-icon.tsx",
"./hooks/*": "./src/hooks/*.ts",
"./icons/svg-icon": "./src/icons/svg-icon.tsx"
},
Expand Down
9 changes: 2 additions & 7 deletions packages/ui/src/data-sources/provider-icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import {
siYoutube,
} from "simple-icons";

import { CodexIcon } from "../icons/codex-icon";
import {
SimpleIconSvg,
SvgIcon,
Expand Down Expand Up @@ -226,13 +227,7 @@ function HermesIcon(props: ProviderIconProps) {
}

function CodexAppServerApiIcon(props: ProviderIconProps) {
return (
<TablerProviderIcon
{...props}
defaultLabel="Codex App Server API"
Icon={IconRobot}
/>
);
return <CodexIcon {...props} defaultLabel="Codex App Server API" />;
}

function E2BIcon(props: ProviderIconProps) {
Expand Down
29 changes: 29 additions & 0 deletions packages/ui/src/icons/codex-icon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import { SvgIcon } from "./svg-icon";
import type { IconSvgProps } from "./svg-icon";

type CodexIconProps = IconSvgProps & {
defaultLabel?: string;
};

// Source: @lobehub/icons Codex Mono, MIT License, Copyright (c) 2023 LobeHub.
export function CodexIcon({
defaultLabel = "Codex",
size = 24,
...props
}: CodexIconProps) {
return (
<SvgIcon
{...props}
defaultLabel={defaultLabel}
fill="currentColor"
fillRule="evenodd"
size={size}
viewBox="0 0 24 24"
>
<path
clipRule="evenodd"
d="M8.086.457a6.105 6.105 0 013.046-.415c1.333.153 2.521.72 3.564 1.7a.117.117 0 00.107.029c1.408-.346 2.762-.224 4.061.366l.063.03.154.076c1.357.703 2.33 1.77 2.918 3.198.278.679.418 1.388.421 2.126a5.655 5.655 0 01-.18 1.631.167.167 0 00.04.155 5.982 5.982 0 011.578 2.891c.385 1.901-.01 3.615-1.183 5.14l-.182.22a6.063 6.063 0 01-2.934 1.851.162.162 0 00-.108.102c-.255.736-.511 1.364-.987 1.992-1.199 1.582-2.962 2.462-4.948 2.451-1.583-.008-2.986-.587-4.21-1.736a.145.145 0 00-.14-.032c-.518.167-1.04.191-1.604.185a5.924 5.924 0 01-2.595-.622 6.058 6.058 0 01-2.146-1.781c-.203-.269-.404-.522-.551-.821a7.74 7.74 0 01-.495-1.283 6.11 6.11 0 01-.017-3.064.166.166 0 00.008-.074.115.115 0 00-.037-.064 5.958 5.958 0 01-1.38-2.202 5.196 5.196 0 01-.333-1.589 6.915 6.915 0 01.188-2.132c.45-1.484 1.309-2.648 2.577-3.493.282-.188.55-.334.802-.438.286-.12.573-.22.861-.304a.129.129 0 00.087-.087A6.016 6.016 0 015.635 2.31C6.315 1.464 7.132.846 8.086.457zm-.804 7.85a.848.848 0 00-1.473.842l1.694 2.965-1.688 2.848a.849.849 0 001.46.864l1.94-3.272a.849.849 0 00.007-.854l-1.94-3.393zm5.446 6.24a.849.849 0 000 1.695h4.848a.849.849 0 000-1.696h-4.848z"
/>
</SvgIcon>
);
}
Loading