bastienrobert/la-ferme

View on GitHub
packages/mobile/src/components/typo/Header.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 Header: FC<OnlyChildProps> = ({ children }) => {
  return (
    <Typo
      color="beige"
      family="futura"
      variant="bold"
      size="small"
      textTransform="uppercase">
      {children}
    </Typo>
  )
}

export default Header