import { T9n } from 'features/T9n' import { ScCurrency, ScPriceInfo, ScTitle, ScPrice, ScWatchDemo, } from './styled' export type PriceInfoType = { price: number, } export const PriceInfo = ({ price }: PriceInfoType) => ( $ {price} )