({ icon, header, subtitle })
| 1 | import React from "react"; |
| 2 | |
| 3 | function BulletPoint({ icon, header, subtitle }) { |
| 4 | return ( |
| 5 | <div className="flex flex-row gap-4"> |
| 6 | <div className="hidden md:flex items-center justify-center py-1 border border-gray/300 drop-shadow-lg bg-white rounded-lg px-4 w-[50px] h-[50px] flex items-center justify-center"> |
| 7 | {icon} |
| 8 | </div> |
| 9 | <div className=""> |
| 10 | <div className="font-semibold md:font-bold text-xl tracking-tighter text-left"> |
| 11 | {header} |
| 12 | </div> |
| 13 | <div className="text-default tracking-tighter text-sm mt-1 text-left "> |
| 14 | {subtitle} |
| 15 | </div> |
| 16 | </div> |
| 17 | </div> |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | export default BulletPoint; |
nothing calls this directly
no outgoing calls
no test coverage detected