tailwindlabs / heroicons

A set of free MIT-licensed high-quality SVG icons for UI development.
https://heroicons.com
MIT License
21.22k stars 1.27k forks source link

PlusCircleIcon does not display properly on mobile devices. #306

Closed ken505 closed 3 years ago

ken505 commented 3 years ago

PlusCircleIcon The development environment is mac, Next.js, firebase, and the deployment destination is vercel. A part of the code is as follows. import { PlusCircleIcon } from "@heroicons/react/outline"; <PlusCircleIcon className="h-10 w-10 ml-3 cursor-pointer hover:opacity-60 dark:hover:opacity-5" disabled={inputName.length > 0 ? false : true} type="button" onClick={() => post()} /> Does anyone know of a solution to a similar problem?