import React, { forwardRef } from 'react'; import type { IAlertProps } from './types'; export const Alert = (StyledAlert: any) => forwardRef(({ children, ...props }: T & IAlertProps, ref?: any) => { return ( {children} ); });