import clsx from "clsx"; import React from "react"; interface DrawerItemProps { text: string; className?: string; onClick?: () => Promise | void; } export const DrawerItemButton = (props: DrawerItemProps) => { const { text, onClick } = props; return ( ); }; export const DrawerItemButtonLoader = () => { return
; };