mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
12 lines
287 B
JavaScript
12 lines
287 B
JavaScript
import classNames from 'classnames';
|
|
import styles from './PopupForm.module.css';
|
|
|
|
export function PopupForm({ className, style, children }) {
|
|
return (
|
|
<div className={classNames(styles.form, className)} style={style}>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default PopupForm;
|