/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/ui/src/components/logo.tsx
62 строки
3 KB
Luke Parker
feat(app): add desktop v2 home, session entry, and titlebar (#28442)
21 май 2026, 08:48
Не верифицирован
21 май 2026, 08:48
b207e32
Код
Авторство
О чём код?
import { type ComponentProps } from "solid-js" export const Mark = (props: { class?: string }) => { return ( <svg data-component="logo-mark" classList={{ [props.class ?? ""]: !!props.class }} viewBox="0 0 16 20" fill="none" xmlns="http://www.w3.org/2000/svg" > <path data-slot="logo-logo-mark-shadow" d="M12 16H4V8H12V16Z" fill="var(--icon-weak-base)" /> <path data-slot="logo-logo-mark-o" d="M12 4H4V16H12V4ZM16 20H0V0H16V20Z" fill="var(--icon-strong-base)" /> </svg> ) } export const Splash = (props: Pick<ComponentProps<"svg">, "ref" | "class">) => { return ( <svg ref={props.ref} data-component="logo-splash" classList={{ [props.class ?? ""]: !!props.class }} viewBox="0 0 80 100" fill="none" xmlns="http://www.w3.org/2000/svg" > <path d="M60 80H20V40H60V80Z" fill="var(--icon-base)" /> <path d="M60 20H20V80H60V20ZM80 100H0V0H80V100Z" fill="var(--icon-strong-base)" /> </svg> ) } export const Logo = (props: { class?: string }) => { return ( <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 234 42" fill="none" classList={{ [props.class ?? ""]: !!props.class }} > <g> <path d="M18 30H6V18H18V30Z" fill="var(--icon-weak-base)" /> <path d="M18 12H6V30H18V12ZM24 36H0V6H24V36Z" fill="var(--icon-base)" /> <path d="M48 30H36V18H48V30Z" fill="var(--icon-weak-base)" /> <path d="M36 30H48V12H36V30ZM54 36H36V42H30V6H54V36Z" fill="var(--icon-base)" /> <path d="M84 24V30H66V24H84Z" fill="var(--icon-weak-base)" /> <path d="M84 24H66V30H84V36H60V6H84V24ZM66 18H78V12H66V18Z" fill="var(--icon-base)" /> <path d="M108 36H96V18H108V36Z" fill="var(--icon-weak-base)" /> <path d="M108 12H96V36H90V6H108V12ZM114 36H108V12H114V36Z" fill="var(--icon-base)" /> <path d="M144 30H126V18H144V30Z" fill="var(--icon-weak-base)" /> <path d="M144 12H126V30H144V36H120V6H144V12Z" fill="var(--icon-strong-base)" /> <path d="M168 30H156V18H168V30Z" fill="var(--icon-weak-base)" /> <path d="M168 12H156V30H168V12ZM174 36H150V6H174V36Z" fill="var(--icon-strong-base)" /> <path d="M198 30H186V18H198V30Z" fill="var(--icon-weak-base)" /> <path d="M198 12H186V30H198V12ZM204 36H180V6H198V0H204V36Z" fill="var(--icon-strong-base)" /> <path d="M234 24V30H216V24H234Z" fill="var(--icon-weak-base)" /> <path d="M216 12V18H228V12H216ZM234 24H216V30H234V36H210V6H234V24Z" fill="var(--icon-strong-base)" /> </g> </svg> ) }