import React, { FC, HTMLAttributes } from 'react'; import classNames from 'classnames'; import styles from './styles.module.scss'; type IProps = HTMLAttributes & { seamless?: boolean; stretchy?: boolean; }; const Panel: FC = ({ className, children, seamless, stretchy, ...props }) => (
{children}
); export { Panel };