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;