import { forwardRef } from "react"; import type { IconProps } from "@/types"; export const Icon3DCubeTransparentOutline = forwardRef< SVGSVGElement, IconProps >(({ 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-3-d-cube-transparent-outline`, }; return ( ); }); Icon3DCubeTransparentOutline.displayName = "Icon3DCubeTransparentOutline"; export default Icon3DCubeTransparentOutline;