import clsx from 'clsx'; import type { FunctionComponent, HTMLAttributes } from 'react'; import React from 'react'; import styles from './styles.scss'; type AnimationPanelProps = { open: boolean; className?: string; } & Pick, 'style'>; export const AnimationPanel: FunctionComponent = ({ children, className, open, style, ...rest }) => { return (
{children}
); };