mango-v4-ui/components/shared/SideBadge.tsx

26 lines
583 B
TypeScript

import React, { FunctionComponent } from 'react'
import { useTranslation } from 'next-i18next'
type SideBadgeProps = {
side: string
}
const SideBadge: FunctionComponent<SideBadgeProps> = ({ side }) => {
const { t } = useTranslation('common')
return (
<div
className={`inline-block rounded uppercase ${
side === 'buy' || side === 'long'
? 'border border-th-green text-th-green'
: 'border border-th-red text-th-red'
}
-my-0.5 px-1.5 py-0.5 text-xs uppercase`}
>
{t(side)}
</div>
)
}
export default SideBadge