diff --git a/package/components/dataDisplay/CoreIcon.js b/package/components/dataDisplay/CoreIcon.js
index c609ebc1..902f15a4 100644
--- a/package/components/dataDisplay/CoreIcon.js
+++ b/package/components/dataDisplay/CoreIcon.js
@@ -25,9 +25,7 @@ export const __IconTypes = {
*/
export default function CoreIcon(props) {
props = sanitizeComponentProps(CoreIcon, props);
- const {
- baseClassName, type, icon, options, sx, ...restProps
- } = props;
+ const { type, icon, options, sx, ...restProps } = props;
let tmpType = type || options?.type || __IconTypes.MATERIAL_ICON;
let tmpIcon = props.children || icon || options?.icon || "";
@@ -36,7 +34,6 @@ export default function CoreIcon(props) {
);
- // return (
- //
- // );
}
CoreIcon.validProps = [