| 25 | import DurationFilter, { Duration } from "./duration-filter" |
| 26 | |
| 27 | interface Props { |
| 28 | data: Promise<LaunchpadsInfo[]> |
| 29 | } |
| 30 | |
| 31 | function getOpacity(percent: number) { |
| 32 | return 0.2 + percent * 0.1 |
nothing calls this directly
no outgoing calls
no test coverage detected