mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 09:01:19 +00:00
13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
|
|
import type { JrxNode } from "@nym.sh/jrx"
|
||
|
|
|
||
|
|
import { jsx } from "@nym.sh/jrx/jsx-runtime"
|
||
|
|
|
||
|
|
export type FeedCardProps = {
|
||
|
|
style?: string
|
||
|
|
children?: JrxNode | JrxNode[]
|
||
|
|
}
|
||
|
|
|
||
|
|
export function FeedCard(props: FeedCardProps): JrxNode {
|
||
|
|
return jsx("FeedCard", props)
|
||
|
|
}
|