import React from 'react'; import { Base } from './Base'; import { ForwardRefComponent } from './polymorphic'; import { all, AllSystemProps } from './system-props'; const defaultElement = 'div'; export type GridProps = AllSystemProps; type GridComponent = ForwardRefComponent; export const Grid = React.forwardRef((props, ref) => { return ( ); }) as GridComponent;