import * as React from 'react'; export type RateCounterItemPropsType = { text?: string; } & Omit, 'text'>; const RateCounterItem = ({text}: RateCounterItemPropsType) => ( <>
{text}
{text}
); export default RateCounterItem;