mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-01 04:46:43 +08:00
8009ffe801
git filter-repo incorrectly resolved a merge commit where the docs app was migrated from Docusaurus to Next.js + Markdoc, resulting in the old Docusaurus files at HEAD. This commit overlays the correct current files from the source repo (kilo-org/kilocode main branch). Package renamed from kilocode-docs to @kilocode/kilo-docs.
11 lines
293 B
TypeScript
11 lines
293 B
TypeScript
import React from "react"
|
|
import { Icon } from "./Icon"
|
|
|
|
interface KiloCodeIconProps {
|
|
size?: string
|
|
}
|
|
|
|
export function KiloCodeIcon({ size = "1.2em" }: KiloCodeIconProps) {
|
|
return <Icon src="/docs/img/kilo-v1.svg" srcDark="/docs/img/kilo-v1-white.svg" alt="Kilo Code Icon" size={size} />
|
|
}
|