import { UiNode, UiNodeImageAttributes } from "@ory/client" interface Props { node: UiNode attributes: UiNodeImageAttributes } export const NodeImage = ({ node, attributes }: Props) => { return ( {node.meta.label?.text} ) }