VGontier
Results
2
comments of
VGontier
My solution to implement the font inside a NextJs app ```ts // src/layout.tsx const fontCal = localFont({ src: '../assets/fonts/CalSans-SemiBold.woff2', variable: '--font-cal', }); export default async function RootLayout({ children }: {...
I had the same issue and was able to resolve it. If you're using the Chakra-UI `Input` component, use the `as` prop to change the rendered element and combine `InputMask`...