import React from 'react'; interface IElementorBannerProps { type?: string; } export default function ElementorBanner({ type = 'warning', children, }: React.PropsWithChildren) { return (
{children}
); }