import React, { FC } from 'react'; import classNames from 'classnames'; import * as styles from './styles.scss'; type IProps = React.HTMLAttributes & { horizontal?: boolean; vertical?: boolean; columns?: string; rows?: string; size?: string; square?: boolean; gap?: number; }; const Grid: FC = ({ children, className = '', horizontal = false, vertical = false, square = false, size = 'auto', style = {}, columns = 'auto', rows = 'auto', gap = 10, ...props }) => (
{children}
); export { Grid };