MCPcopy Create free account
hub / github.com/LearnPrompt/LearnPrompt / BulletPoint

Function BulletPoint

src/components/BulletPoint.js:3–19  ·  view source on GitHub ↗
({ icon, header, subtitle })

Source from the content-addressed store, hash-verified

1import React from "react";
2
3function 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
21export default BulletPoint;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected