import { ParentComponent, Show } from "solid-js"; export const Anchor: ParentComponent<{ href?: string | null | undefined; }> = (props) => { return ( {(href) => ( {props.children} )} ); };