8 lines
300 B
TypeScript
8 lines
300 B
TypeScript
import { FunctionalComponent } from 'vue';
|
|
import { AntdIconProps } from '../components/AntdIcon';
|
|
export interface RetweetOutlinedIconType extends FunctionalComponent<AntdIconProps> {
|
|
displayName: string;
|
|
}
|
|
declare const RetweetOutlined: RetweetOutlinedIconType;
|
|
export default RetweetOutlined;
|