import { forwardRef } from "react"; import type { IconProps } from "../../types"; export const IconSquare3Stack3DSolid = forwardRef( ({ color = "currentColor", ...props }, forwardedRef) => { const { className } = props; props = { ...props, width: `${props.width || props.size || 20}`, height: `${props.height || props.size || 20}`, className: `${ className ? className + " " : "" }customeow-icon customeow-icon-icon-square-3-stack-3-d-solid`, }; return ( ); } ); IconSquare3Stack3DSolid.displayName = "IconSquare3Stack3DSolid"; export default IconSquare3Stack3DSolid;