mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 14:00:35 +00:00
10 lines
266 B
TypeScript
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;
|