// ui import { CustomMenu } from "components/ui"; // icons import { TableProperties } from "lucide-react"; // helpers import { renderEmoji } from "helpers/emoji.helper"; // types import { ICustomAttribute } from "types"; type Props = { object: ICustomAttribute; handleDeleteObject: () => void; handleEditObject: () => void; }; export const SingleObject: React.FC = (props) => { const { object, handleDeleteObject, handleEditObject } = props; return (
{object.icon ? renderEmoji(object.icon) : }
{object.display_name}

{object.description}

Edit Delete
); };