import classNames from 'clsx'; import React from 'react'; interface IBanner { theme: 'frosted' | 'opaque', children: React.ReactNode, className?: string, } /** Displays a sticky full-width banner at the bottom of the screen. */ const Banner: React.FC = ({ theme, children, className }) => { return (
{children}
); }; export default Banner;