(library: Library)
| 19 | } |
| 20 | |
| 21 | export function getLibraryLabel(library: Library): string { |
| 22 | switch (library) { |
| 23 | case 'react-aria': |
| 24 | return 'React Aria'; |
| 25 | default: |
| 26 | return 'React Spectrum'; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | export function getLibraryIcon(library: Library): React.ReactNode { |
| 31 | switch (library) { |
no outgoing calls
no test coverage detected