bastienrobert/la-ferme

View on GitHub
packages/mobile/src/components/typo/NavNumber.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React, { FC } from 'react'

import { OnlyChildProps } from './typo.shared'
import { Typo } from '@la-ferme/components/native'

const NavTitle: FC<OnlyChildProps> = ({ children }) => {
  return (
    <Typo color="beige" size="h6" family="bowlby" textTransform="uppercase">
      {children}
    </Typo>
  )
}

export default NavTitle