新增LocationIcon
parent
dd8bbc1b90
commit
8f06bc9135
|
|
@ -0,0 +1,6 @@
|
|||
import type { AntdIconProps } from "@ant-design/icons/lib/components/AntdIcon";
|
||||
import type { FC } from "react";
|
||||
|
||||
declare const LocationIcon: FC<AntdIconProps>;
|
||||
|
||||
export default LocationIcon;
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
import { EnvironmentOutlined } from "@ant-design/icons";
|
||||
|
||||
const LocationIcon = props => (
|
||||
<EnvironmentOutlined {...props} />
|
||||
);
|
||||
|
||||
LocationIcon.displayName = "LocationIcon";
|
||||
|
||||
export default LocationIcon;
|
||||
Loading…
Reference in New Issue