mars-v2-frontend/src/components/Modals/HLS/Deposit/Summary/Container.tsx
Bob van der Helm 7439bea0d8
Hls staking manage actions (#622)
* Add basic modal for HLS staking

* UI components for Manage

* All Manage actions (except change lev)

* 🐛hls intro icons + checkbox, hide repay when no debt, clickable dropdown

* fix build
2023-11-08 13:05:39 +01:00

19 lines
388 B
TypeScript

import React from 'react'
import Text from 'components/Text'
interface Props {
children: React.ReactNode
title: string
}
export default function Container(props: Props) {
return (
<div>
<Text size='xs' className='text-white/60 mb-2 uppercase'>
{props.title}
</Text>
<div className='p-3 rounded-sm bg-black/20'>{props.children}</div>
</div>
)
}