({header, subtitle})
| 1 | import React from 'react' |
| 2 | |
| 3 | export default function StatPoint({header, subtitle}) { |
| 4 | return ( |
| 5 | <div> |
| 6 | <div className='font-bold text-7xl tracking-tighter'>{header}</div> |
| 7 | <div className='text-dark/500 tracking-tighter font-medium mt-1 text-center md:text-left'>{subtitle}</div> |
| 8 | </div> |
| 9 | ) |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected