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