Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git] / applications / calendar / src / app / components / events / PopoverFooter.tsx
blob236703ad032dcb0ffac45cdf4509ddaa1b04e395
1 import * as React from 'react';
3 import clsx from '@proton/utils/clsx';
5 interface Props {
6     children?: React.ReactNode;
7     className?: string;
10 const PopoverFooter = ({ children, className }: Props) => {
11     return <footer className={clsx(['flex', className])}>{children}</footer>;
14 export default PopoverFooter;