Fix TS issues on icon components (#1878)
This commit is contained in:
parent
80e8cb9221
commit
7e6ef8b020
11 changed files with 44 additions and 55 deletions
|
@ -1,4 +1,4 @@
|
|||
import { createSvgIcon } from "@material-ui/core/utils";
|
||||
import { createSvgIcon, SvgIconProps } from "@material-ui/core";
|
||||
import React from "react";
|
||||
|
||||
const Attributes = createSvgIcon(
|
||||
|
@ -10,8 +10,7 @@ const Attributes = createSvgIcon(
|
|||
/>,
|
||||
"Attributes"
|
||||
);
|
||||
Attributes.defaultProps = {
|
||||
viewBox: "0 0 32 32"
|
||||
};
|
||||
|
||||
export default Attributes;
|
||||
export default (props: SvgIconProps) => (
|
||||
<Attributes {...props} viewBox="0 0 32 32" />
|
||||
);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createSvgIcon } from "@material-ui/core/utils";
|
||||
import { createSvgIcon, SvgIconProps } from "@material-ui/core";
|
||||
import React from "react";
|
||||
|
||||
const Channels = createSvgIcon(
|
||||
|
@ -10,8 +10,7 @@ const Channels = createSvgIcon(
|
|||
/>,
|
||||
"Channels"
|
||||
);
|
||||
Channels.defaultProps = {
|
||||
viewBox: "0 0 32 32"
|
||||
};
|
||||
|
||||
export default Channels;
|
||||
export default (props: SvgIconProps) => (
|
||||
<Channels {...props} viewBox="0 0 32 32" />
|
||||
);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createSvgIcon } from "@material-ui/core/utils";
|
||||
import { createSvgIcon, SvgIconProps } from "@material-ui/core";
|
||||
import React from "react";
|
||||
|
||||
const Navigation = createSvgIcon(
|
||||
|
@ -10,8 +10,7 @@ const Navigation = createSvgIcon(
|
|||
/>,
|
||||
"Navigation"
|
||||
);
|
||||
Navigation.defaultProps = {
|
||||
viewBox: "0 0 32 32"
|
||||
};
|
||||
|
||||
export default Navigation;
|
||||
export default (props: SvgIconProps) => (
|
||||
<Navigation {...props} viewBox="0 0 32 32" />
|
||||
);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createSvgIcon } from "@material-ui/core/utils";
|
||||
import { createSvgIcon, SvgIconProps } from "@material-ui/core";
|
||||
import React from "react";
|
||||
|
||||
const PageTypes = createSvgIcon(
|
||||
|
@ -10,8 +10,7 @@ const PageTypes = createSvgIcon(
|
|||
/>,
|
||||
"PageTypes"
|
||||
);
|
||||
PageTypes.defaultProps = {
|
||||
viewBox: "0 0 24 25"
|
||||
};
|
||||
|
||||
export default PageTypes;
|
||||
export default (props: SvgIconProps) => (
|
||||
<PageTypes {...props} viewBox="0 0 24 25" />
|
||||
);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createSvgIcon } from "@material-ui/core/utils";
|
||||
import { createSvgIcon, SvgIconProps } from "@material-ui/core";
|
||||
import React from "react";
|
||||
|
||||
const PermissionGroups = createSvgIcon(
|
||||
|
@ -10,8 +10,7 @@ const PermissionGroups = createSvgIcon(
|
|||
/>,
|
||||
"PermissionGroups"
|
||||
);
|
||||
PermissionGroups.defaultProps = {
|
||||
viewBox: "0 0 32 32"
|
||||
};
|
||||
|
||||
export default PermissionGroups;
|
||||
export default (props: SvgIconProps) => (
|
||||
<PermissionGroups {...props} viewBox="0 0 32 32" />
|
||||
);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createSvgIcon } from "@material-ui/core/utils";
|
||||
import { createSvgIcon, SvgIconProps } from "@material-ui/core";
|
||||
import React from "react";
|
||||
|
||||
const ProductTypes = createSvgIcon(
|
||||
|
@ -12,8 +12,7 @@ const ProductTypes = createSvgIcon(
|
|||
</>,
|
||||
"ProductTypes"
|
||||
);
|
||||
ProductTypes.defaultProps = {
|
||||
viewBox: "0 0 44 44"
|
||||
};
|
||||
|
||||
export default ProductTypes;
|
||||
export default (props: SvgIconProps) => (
|
||||
<ProductTypes {...props} viewBox="0 0 44 44" />
|
||||
);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createSvgIcon } from "@material-ui/core/utils";
|
||||
import { createSvgIcon, SvgIconProps } from "@material-ui/core";
|
||||
import React from "react";
|
||||
|
||||
const ShippingMethods = createSvgIcon(
|
||||
|
@ -10,8 +10,7 @@ const ShippingMethods = createSvgIcon(
|
|||
/>,
|
||||
"ShippingMethods"
|
||||
);
|
||||
ShippingMethods.defaultProps = {
|
||||
viewBox: "0 0 32 32"
|
||||
};
|
||||
|
||||
export default ShippingMethods;
|
||||
export default (props: SvgIconProps) => (
|
||||
<ShippingMethods {...props} viewBox="0 0 32 32" />
|
||||
);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createSvgIcon } from "@material-ui/core/utils";
|
||||
import { createSvgIcon, SvgIconProps } from "@material-ui/core";
|
||||
import React from "react";
|
||||
|
||||
const SiteSettings = createSvgIcon(
|
||||
|
@ -18,8 +18,7 @@ const SiteSettings = createSvgIcon(
|
|||
</>,
|
||||
"SiteSettings"
|
||||
);
|
||||
SiteSettings.defaultProps = {
|
||||
viewBox: "0 0 32 32"
|
||||
};
|
||||
|
||||
export default SiteSettings;
|
||||
export default (props: SvgIconProps) => (
|
||||
<SiteSettings {...props} viewBox="0 0 32 32" />
|
||||
);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createSvgIcon } from "@material-ui/core/utils";
|
||||
import { createSvgIcon, SvgIconProps } from "@material-ui/core";
|
||||
import React from "react";
|
||||
|
||||
const StaffMembers = createSvgIcon(
|
||||
|
@ -10,8 +10,7 @@ const StaffMembers = createSvgIcon(
|
|||
/>,
|
||||
"StaffMembers"
|
||||
);
|
||||
StaffMembers.defaultProps = {
|
||||
viewBox: "0 0 32 32"
|
||||
};
|
||||
|
||||
export default StaffMembers;
|
||||
export default (props: SvgIconProps) => (
|
||||
<StaffMembers {...props} viewBox="0 0 32 32" />
|
||||
);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createSvgIcon } from "@material-ui/core/utils";
|
||||
import { createSvgIcon, SvgIconProps } from "@material-ui/core";
|
||||
import React from "react";
|
||||
|
||||
const Taxes = createSvgIcon(
|
||||
|
@ -10,8 +10,7 @@ const Taxes = createSvgIcon(
|
|||
/>,
|
||||
"Taxes"
|
||||
);
|
||||
Taxes.defaultProps = {
|
||||
viewBox: "0 0 32 32"
|
||||
};
|
||||
|
||||
export default Taxes;
|
||||
export default (props: SvgIconProps) => (
|
||||
<Taxes {...props} viewBox="0 0 32 32" />
|
||||
);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createSvgIcon } from "@material-ui/core/utils";
|
||||
import { createSvgIcon, SvgIconProps } from "@material-ui/core";
|
||||
import React from "react";
|
||||
|
||||
const Warehouses = createSvgIcon(
|
||||
|
@ -10,8 +10,7 @@ const Warehouses = createSvgIcon(
|
|||
/>,
|
||||
"Warehouses"
|
||||
);
|
||||
Warehouses.defaultProps = {
|
||||
viewBox: "0 0 32 32"
|
||||
};
|
||||
|
||||
export default Warehouses;
|
||||
export default (props: SvgIconProps) => (
|
||||
<Warehouses {...props} viewBox="0 0 32 32" />
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue