import { forwardRef } from "react"; import type { IconProps } from "../../types"; export const Icon3DModelEmpty = 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-shein-icon customeow-shein-icon-icon-3-d-model-empty`, }; return ( ); } ); Icon3DModelEmpty.displayName = "Icon3DModelEmpty"; export default Icon3DModelEmpty;