(light: string, dark: string)
| 294 | const getPanelDynamicStyles = () => { |
| 295 | const { colors } = tokens |
| 296 | const t = (light: string, dark: string) => |
| 297 | theme() === 'dark' ? dark : light |
| 298 | if (panelWidth() < secondBreakpoint) { |
| 299 | return css` |
| 300 | flex-direction: column; |
no outgoing calls
no test coverage detected