import React from 'react'; import { Base, SxProp } from './Base'; import { ForwardRefComponent } from './polymorphic'; import { common, CommonSystemProps, forwardSystemProps } from './system-props'; const defaultElement = 'span'; export type CounterProps = SxProp & CommonSystemProps; type CounterComponent = ForwardRefComponent< typeof defaultElement, CounterProps >; export const Counter = React.forwardRef( ({ as = defaultElement, ...props }, ref) => { return ( ); } ) as CounterComponent;