import { Dropdown, DropdownTrigger, DropdownMenu, DropdownSection, DropdownItem, Button, cn, } from "@heroui/react"; export const AddNoteIcon = (props) => { return ( ); }; export const CopyDocumentIcon = (props) => { return ( ); }; export const EditDocumentIcon = (props) => { return ( ); }; export const DeleteDocumentIcon = (props) => { return ( ); }; export default function App() { const iconClasses = "text-xl text-default-500 pointer-events-none shrink-0"; return ( } > New file } > Copy link } > Edit file } > Delete file ); }