PluginsButton.tsx 281 B

12345678
  1. export const PluginsButton = () => {
  2. return (
  3. <button className={'flex w-full items-center rounded-lg px-4 py-2 hover:bg-fill-active'}>
  4. <img className={'mr-2 h-[24px] w-[24px]'} src={'/images/home/page.svg'} alt={''} />
  5. <span>Plugins</span>
  6. </button>
  7. );
  8. };