1 import * as React from 'react';
3 import clsx from '@proton/utils/clsx';
6 children?: React.ReactNode;
10 const PopoverFooter = ({ children, className }: Props) => {
11 return <footer className={clsx(['flex', className])}>{children}</footer>;
14 export default PopoverFooter;