From 8f06bc9135323739a1da019ae4a2f5bcbb78cf9e Mon Sep 17 00:00:00 2001 From: LiuJiaNan <15703339975@163.com> Date: Fri, 14 Nov 2025 15:12:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9ELocationIcon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/Icon/LocationIcon/index.d.ts | 6 ++++++ components/Icon/LocationIcon/index.js | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 components/Icon/LocationIcon/index.d.ts create mode 100644 components/Icon/LocationIcon/index.js diff --git a/components/Icon/LocationIcon/index.d.ts b/components/Icon/LocationIcon/index.d.ts new file mode 100644 index 0000000..5c6a34a --- /dev/null +++ b/components/Icon/LocationIcon/index.d.ts @@ -0,0 +1,6 @@ +import type { AntdIconProps } from "@ant-design/icons/lib/components/AntdIcon"; +import type { FC } from "react"; + +declare const LocationIcon: FC; + +export default LocationIcon; diff --git a/components/Icon/LocationIcon/index.js b/components/Icon/LocationIcon/index.js new file mode 100644 index 0000000..2b3af68 --- /dev/null +++ b/components/Icon/LocationIcon/index.js @@ -0,0 +1,9 @@ +import { EnvironmentOutlined } from "@ant-design/icons"; + +const LocationIcon = props => ( + +); + +LocationIcon.displayName = "LocationIcon"; + +export default LocationIcon;