import React, { forwardRef } from "react"; import { useThemeInternal } from "../../../theme/Theme"; import { cl } from "../../../utils/helpers"; interface BaseAlertContentProps extends React.HTMLAttributes { children: React.ReactNode; } /** * @see 🏷️ {@link BaseAlertContentProps} * @example * ```jsx * * * Info title * * * Content * * ``` */ const BaseAlertContent = forwardRef( ( { children, className, ...restProps }: BaseAlertContentProps, forwardedRef, ) => { const themeContext = useThemeInternal(); return (
{children}
); }, ); export { BaseAlertContent }; export type { BaseAlertContentProps };