Thijs-Jan
Thijs-Jan
I was busy working on tests for this feature, and whilst most of them are just the same as for the 'regular' `useTranslation` hook, some involve functionality of the `DynamicNamespaces`...
It would be helpful if you could [show formatted code with backticks](https://docs.github.com/en/github/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks) like this: \`\`\` // code goes here \`\`\` Does your network request actually go through? Do you actually...
I'd also be a big supporter of this! An option would also be to allow passing `children` props to icons, enabling one to pass both `` and ``.
I believe attributes such as `aria-labelledby`, `title` etc already work, as additional props just get passed to the SVG element: ```js import { Trash } from "react-feather"; const Component =...
That might be a problem indeed. The list of allowed attributes and types can be found here: https://github.com/feathericons/react-feather/blob/c9698fa53e4bd577cdeffce18b054b97a3d765fc/src/index.d.ts#L4-L7 and here: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/1349b640d4d07f40aa7c1c6931f18e3fbf667f3a/types/react/index.d.ts#L2341-L2607 Unfortunately, this library doesn't seem to be actively maintained,...
I'm already using it myself in React 17 without problems, I really think it's just a peerDependency issue (with NPM 7 handling those differently). Installing with NPM flag `---legacy-peerd-deps` fixes...
@erikras I was wondering if you could have a look at this?
Thanks for the response! Our project at the moment doesn't use Apollo-client in favour of a slightly more lightweight solution, but perhaps this might still change. `apollo-link-token-refresh` does seem to...
This is quite an old issue, but for anyone coming here from a search engine: the solution is to use relative paths. So: ```js // DO NOT import img from...
I had a similar issue which I've struggled with for a few hours. Not entirely sure if it's the same, and also not entirely sure whether it was a bug...