mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 00:51:20 +00:00
14 lines
301 B
TypeScript
14 lines
301 B
TypeScript
|
|
import type { JrxNode } from "@nym.sh/jrx"
|
||
|
|
|
||
|
|
import { jsx } from "@nym.sh/jrx/jsx-runtime"
|
||
|
|
|
||
|
|
export type MonospaceTextProps = {
|
||
|
|
content?: string
|
||
|
|
style?: string
|
||
|
|
children?: JrxNode | JrxNode[]
|
||
|
|
}
|
||
|
|
|
||
|
|
export function MonospaceText(props: MonospaceTextProps): JrxNode {
|
||
|
|
return jsx("MonospaceText", props)
|
||
|
|
}
|