Your IP : 216.73.216.1


Current Path : /proc/self/cwd/wp-content/plugins/leadin/scripts/elementor/Common/
Upload File :
Current File : //proc/self/cwd/wp-content/plugins/leadin/scripts/elementor/Common/ElementorBanner.tsx

import React from 'react';

interface IElementorBannerProps {
  type?: string;
}

export default function ElementorBanner({
  type = 'warning',
  children,
}: React.PropsWithChildren<IElementorBannerProps>) {
  return (
    <div className="elementor-control-content">
      <div
        className={`elementor-control-raw-html elementor-panel-alert elementor-panel-alert-${type}`}
      >
        {children}
      </div>
    </div>
  );
}