12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
|
import React from 'react';
|
||
|
interface SidenavItemProps {
|
||
|
label: string;
|
||
|
icon?: React.ReactNode;
|
||
|
to?: string;
|
||
|
href?: string;
|
||
|
onClick?: () => void;
|
||
|
className?: string;
|
||
|
}
|
||
|
declare const SidebarItem: React.FC<SidenavItemProps>;
|
||
|
export default SidebarItem;
|