import { Separator } from "@kobalte/core/separator"; import { IconNote } from "@tabler/icons-solidjs"; import type { UserImage } from "../../network"; type Props = { item: Extract; }; export const SearchCardNote = ({ item }: Props) => { const { data } = item; return (

{data.Name}

Keywords TODO

{data.Content}

); };