mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-02 22:22:19 +00:00
12 lines
328 B
TypeScript
12 lines
328 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
export interface NavItemProps extends React.HTMLAttributes<HTMLElement> {
|
|
[key: string]: any;
|
|
tag?: React.ElementType;
|
|
active?: boolean;
|
|
cssModule?: CSSModule;
|
|
}
|
|
|
|
declare class NavItem extends React.Component<NavItemProps> {}
|
|
export default NavItem;
|