MCPcopy Create free account
hub / github.com/WardAnalytics/WardGraph / SavedGraphBanner

Function SavedGraphBanner

src/components/banner/SavedGraphBanner.tsx:4–22  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2import Banner from ".";
3
4const SavedGraphBanner: FC = () => {
5 return (
6 <>
7 <Banner>
8 <p className="text-xs leading-6 text-gray-900">
9 <strong className="font-semibold">Auto Save</strong>
10 <svg
11 viewBox="0 0 2 2"
12 className="mx-2 inline h-0.5 w-0.5 fill-current"
13 aria-hidden="true"
14 >
15 <circle cx={1} cy={1} r={1} />
16 </svg>
17 Your graph is automatically saved
18 </p>
19 </Banner>
20 </>
21 )
22}
23
24export default SavedGraphBanner;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected