import type { Ref } from 'react' import React, { forwardRef } from 'react' import classes from './index.module.scss' type Props = { children: React.ReactNode className?: string left?: boolean ref?: Ref right?: boolean } export const Gutter: React.FC = forwardRef((props, ref) => { const { children, className, left = true, right = true } = props return (
{children}
) }) Gutter.displayName = 'Gutter'