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