import React from 'react'; import { Base } from './Base'; import { ForwardRefComponent } from './polymorphic'; import { all, AllSystemProps } from './system-props'; const defaultElement = 'span'; export type TextProps = AllSystemProps; type TextComponent = ForwardRefComponent; export const Text = React.forwardRef((props, ref) => { return ( ); }) as TextComponent;