add some more icons

This commit is contained in:
Milo Schwartz 2024-11-16 12:18:22 -05:00
parent 3c7b2c03f8
commit 587bb758a2
No known key found for this signature in database
6 changed files with 24 additions and 7 deletions

View file

@ -1,10 +1,15 @@
"use client";
import { SidebarNav } from "@app/components/sidebar-nav";
import React from "react";
interface SideBarSettingsProps {
children: React.ReactNode;
sidebarNavItems: Array<{ title: string; href: string }>;
sidebarNavItems: Array<{
title: string;
href: string;
icon?: React.ReactNode;
}>;
disabled?: boolean;
limitWidth?: boolean;
}