feat: create subtitle component

This commit is contained in:
RadoslavDimchev 2023-09-20 22:43:04 +03:00
parent 31d402f70a
commit fcf2020037
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import { Text } from '@status-im/components'
const DepositSubtitle = () => {
return (
<Text size={15} weight="regular" color={'#647084'}>
Connect you Wallet to stake required ETH for new validators
</Text>
)
}
export default DepositSubtitle