2020-03-26 21:24:30 +08:00

10 lines
261 B
TypeScript

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