import styles from '@components/AlertBanner.module.css'; import * as React from 'react'; interface AlertBannerProps { style?: any; children?: any; } const AlertBanner: React.FC = ({ style: propStyle, ...rest }) => { let style: React.CSSProperties = { ...propStyle }; return
; }; export default AlertBanner;