mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-06-23 22:21:06 +00:00
8 lines
243 B
TypeScript
8 lines
243 B
TypeScript
import React from 'react';
|
|
interface Props {
|
|
className?: string;
|
|
}
|
|
declare function Bottom({ className }: Props): React.ReactElement<Props> | null;
|
|
declare const _default: React.MemoExoticComponent<typeof Bottom>;
|
|
export default _default;
|