import React from 'react' import { ForwardedRef, forwardRef } from 'react' import { TextStyle } from './TextStyles' import { TextProps } from './types' function Text(props: TextProps, ref?: ForwardedRef) { const { size = 'md', color = 'default', ...rest } = props return } export default forwardRef(Text)