我需要制作一个按钮的可重用组件。我必须将其制作为
现在,我不知道1.如何添加这两个图标(主页和右雪佛龙)内的一个可点击的按钮。1.使按钮(作为一个整体点击)和人字形右键点击,使它可以显示更多的选项。1.给他们(图标)不同的颜色。
omtl5h9j1#
你不能给图片添加图标颜色,因为你不能控制图片的内部元素,所以用svg代替.下面是工作输出和示例。请根据您的需要进行更改。
<div class="flex gap-4"> <div class="flex-col gap-4"> <div class="flex w-fit items-center rounded-2xl bg-red-500 p-4"> <svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" /> </svg> <div class="pl-4 text-4xl text-white">Home</div> </div> <div class="mt-4 flex w-fit items-center rounded-2xl bg-red-800 p-4"> <svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" /> </svg> <div class="pl-4 text-4xl text-white">Home</div> </div> </div> <div class="flex-col gap-4"> <div class="flex w-fit items-center rounded-2xl border-2 border-gray-300 p-4"> <svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12 text-cyan-300" fill="none" viewBox="0 0 24 24" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" /> </svg> <div class="pl-4 text-4xl text-cyan-300">Home</div> </div> <div class="mt-4 flex w-fit items-center bg-gray-100 rounded-2xl border-2 border-gray-300 p-4"> <svg xmlns="http://www.w3.org/2000/svg" class="h-12 w-12 text-cyan-300" fill="none" viewBox="0 0 24 24" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6" /> </svg> <div class="pl-4 text-4xl text-cyan-300">Home</div> </div> </div> </div>
46qrfjad2#
你在找这个吗?例如我添加了不同的图标,但是你可以用你的图标替换它们...你也可以使用像react-icons这样的软件包顺风Playground参考:https://play.tailwindcss.com/hTRgWtHhzM
react-icons
<button type="button" className="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center inline-flex items-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"> <span className="text-green-500"> <svg aria-hidden="true" className="w-5 h-5 mr-2 -ml-1" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M3 1a1 1 0 000 2h1.22l.305 1.222a.997.997 0 00.01.042l1.358 5.43-.893.892C3.74 11.846 4.632 14 6.414 14H15a1 1 0 000-2H6.414l1-1H14a1 1 0 00.894-.553l3-6A1 1 0 0017 3H6.28l-.31-1.243A1 1 0 005 1H3zM16 16.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM6.5 18a1.5 1.5 0 100-3 1.5 1.5 0 000 3z"></path></svg> </span> Choose plan <a href="https://google.com" className="text-red-500"> <svg aria-hidden="true" className="w-5 h-5 ml-2 -mr-1" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" ><path fill-rule="evenodd" d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z" clip-rule="evenodd"></path></svg> </a> </button>
2条答案
按热度按时间omtl5h9j1#
你不能给图片添加图标颜色,因为你不能控制图片的内部元素,所以用svg代替.
下面是工作输出和示例。请根据您的需要进行更改。
输出
代码:
额外:
如何获得svg?
转到google material's icon并下载svg,然后在文件中使用它
46qrfjad2#
你在找这个吗?例如我添加了不同的图标,但是你可以用你的图标替换它们...你也可以使用像
react-icons
这样的软件包顺风Playground参考:https://play.tailwindcss.com/hTRgWtHhzM