2020-03-25 12:13:17 +08:00

10 lines
266 B
TypeScript

import React from 'react';
import './index.scss';
import { PluginProps } from '@ali/lowcode-editor-framework/lib/definitions';
export interface IProps {
logo?: string;
href?: string;
}
declare const Logo: React.FC<IProps & PluginProps>;
export default Logo;