import { forwardRef } from "react"; import type { IconProps } from "../../types"; export const IconCropSquare21To9Solid = 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-crop-square-21-to-9-solid`, }; return ( ); } ); IconCropSquare21To9Solid.displayName = "IconCropSquare21To9Solid"; export default IconCropSquare21To9Solid;