import { Icon } from "./Icon.jsx"; export function Strip({ id, title, href, more, children }) { return (

{title}

{children} {href ? ( {more} ) : null}
); }