()
| 2 | import Banner from "."; |
| 3 | |
| 4 | const 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 | |
| 24 | export default SavedGraphBanner; |
nothing calls this directly
no outgoing calls
no test coverage detected