import React from "react"; import clsx from "clsx"; import { Button } from "./button"; import { PlusCircleIcon } from "./icons/plus-circle"; import type { AvailablePackageType } from "@refinedev/devtools-shared"; type PackageItemProps = { onInstall?: () => void; } & AvailablePackageType; export const AddPackageItem = ({ name, description, onInstall, }: PackageItemProps) => { return (
{name}
{description ?? ""}
changelog
documentation
); };