import { For, Indent } from "@alloy-js/core"; import { Children } from "@alloy-js/core/jsx-runtime"; export interface NamedArgumentListProps { args: Record; } /** * Collect a set of named arguments. Will pass to object as named arguments. * * @param args - of name to argument value */ export function NamedArgumentList(props: NamedArgumentListProps) { return ( ( {([key, value]) => { return ( <> {key} = {value} ); }} ) ); }