import { Separator } from "@kobalte/core/separator"; import { IconLink } from "@tabler/icons-solidjs"; import type { Website } from "../../network/types"; type Props = { item: Website; }; export const SearchCardWebsite = ({ item }: Props) => { const { data } = item; return (

{data.title}

{data.url}

{data.description}

); };