mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-05-09 01:17:55 +00:00
8 lines
236 B
TypeScript
8 lines
236 B
TypeScript
import React from 'react';
|
|
interface Props {
|
|
className?: string;
|
|
}
|
|
declare function TopBar({ className }: Props): React.ReactElement<Props>;
|
|
declare const _default: React.MemoExoticComponent<typeof TopBar>;
|
|
export default _default;
|