10 lines
190 B
JavaScript
10 lines
190 B
JavaScript
|
|
import { DownloadOutlined } from "@ant-design/icons";
|
||
|
|
|
||
|
|
const ExportIcon = props => (
|
||
|
|
<DownloadOutlined {...props} />
|
||
|
|
);
|
||
|
|
|
||
|
|
ExportIcon.displayName = "ExportIcon";
|
||
|
|
|
||
|
|
export default ExportIcon;
|