import * as React from "react" import clsx from "clsx" type SearchResultProps = { title?: string subtitle?: string src?: string } & React.ComponentPropsWithoutRef<"div"> export function SearchResult({ title, subtitle, src, className, ...props }: SearchResultProps) { return (
{title ? (

{title}

) : null} {subtitle ? (

{subtitle}

) : null}
) }