Add viewBox prop to the svg element for the wen and mobile packages. The viewBox prop will make the countdown timer responsive and it will adjust its size according to the element outside.
Fix for #193. This is fix for the issue where types for the hook are referenced by the shared package, which is not exported. To solve the problem now we copy the types from the shared package and add them to each package when bundling the code. This is not the best solution but it is the simplest. Once we have a good way to bundle types from monorepo this can be changed.
Move types close to the web and mobile packages since TypeScript can not reexport submodules. Issue https://github.com/microsoft/TypeScript/issues/8305