curtvict
curtvict
Hey there! Is there a technical reason why the variable Material Symbol fonts aren't provided in `woff` & `woff2` format in this repo? I noticed that they're [here](https://github.com/google/material-design-icons/tree/master/variablefont), but in...
**Font Name** Material Symbols **Link to font source** https://developers.google.com/fonts/docs/material_symbols **Link to font license** https://developers.google.com/fonts/docs/material_symbols#licensing **Additional context** Being able to import these variable icon fonts directly from fontsource would be very...
## Overview I'm taking a stab at adding Material Symbols - Closes #497 Overall the build script fell down in this process, so manual updates were needed. I decided to...
I'm curious if the community would fine this simple hook useful: ```ts import { useEffect } from 'react'; const useDocumentTitle = (title: string) => { useEffect(() => { window.document.title =...
I'm curious if the community would find this change to the call signature of `useScript` at all useful: ```ts function useScript(src: string, shouldLoad: boolean = true, removeOnUnmount: boolean = false):...
Hey! I just wanted to respectfully point out that the v5.5.1 patch might have actually brought along a breaking change, depending on your definition of "breaking change" ;) We use...
I noticed a gap in the default option documentation.
I came across [this post](https://dev.to/dagasatvik10/react-usescrollto-hook-3263) and found it to be highly useful in my project. Perhaps you and/or others would agree?