()
| 423 | const resolvedActiveProps: () => Omit<Solid.ComponentProps<'a'>, 'style'> & { |
| 424 | style?: Solid.JSX.CSSProperties |
| 425 | } = () => |
| 426 | isActive() ? (functionalUpdate(local.activeProps as any, {}) ?? {}) : {} |
| 427 | |
| 428 | // Get the inactive props |
| 429 | const resolvedInactiveProps: () => Omit< |
no test coverage detected