7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
|
|
import type { AntdIconProps } from "@ant-design/icons/lib/components/AntdIcon";
|
||
|
|
import type { FC } from "react";
|
||
|
|
|
||
|
|
declare const EditIcon: FC<AntdIconProps>;
|
||
|
|
|
||
|
|
export default EditIcon;
|