import type { Children } from "@alloy-js/core"; import { List, splitProps } from "@alloy-js/core"; export interface CommaListProps { children: Children; hardline?: boolean; softline?: boolean; } /** * A comma-separated list of items (e.g. arguments to a function call, * parameters, etc). */ export function CommaList(props: CommaListProps) { return ( {props.children} ); }