| 3 | import Icon from "./Icon"; |
| 4 | |
| 5 | interface Props { |
| 6 | className?: string; |
| 7 | alwaysShow?: boolean; |
| 8 | } |
| 9 | |
| 10 | const DataStorageBanner = (props: Props) => { |
| 11 | const { className, alwaysShow } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected