16 lines
366 B
TypeScript
16 lines
366 B
TypeScript
import Intro from 'components/Intro'
|
|
|
|
export default function BorrowIntro() {
|
|
return (
|
|
<Intro
|
|
text={
|
|
<>
|
|
<span className='text-white'>Borrow</span> assets, against your collateral. But always
|
|
have an eye on your Health. Once it reaches zero, you'll be liquidated.
|
|
</>
|
|
}
|
|
bg='borrow'
|
|
></Intro>
|
|
)
|
|
}
|