feat: add @aelis/components package with JRX definitions (#68)

JRX component wrappers for the aelis-client UI components,
enabling server-side feed item rendering via json-render.

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2026-03-13 23:57:54 +00:00
committed by GitHub
parent d3452dd452
commit b4ad910a14
10 changed files with 266 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import type { JrxNode } from "@nym.sh/jrx"
import { jsx } from "@nym.sh/jrx/jsx-runtime"
export type SansSerifTextProps = {
content?: string
style?: string
children?: JrxNode | JrxNode[]
}
export function SansSerifText(props: SansSerifTextProps): JrxNode {
return jsx("SansSerifText", props)
}