1
This commit is contained in:
6
src/components/bs-icons/tab/icon.svg
Normal file
6
src/components/bs-icons/tab/icon.svg
Normal file
@@ -0,0 +1,6 @@
|
||||
<svg t="1713778219916" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
||||
p-id="59322" width="16" height="16">
|
||||
<path
|
||||
d="M496.141549 5.350309c0.959181 0.639454 1.918361 1.151017 2.877542 1.662579 18.863883 10.423095 37.53593 21.038026 56.207977 31.716902l111.64861 64.648766 214.344869 123.222722c19.439391 11.126494 45.081484 20.462517 46.616173 46.296445 0.703399 12.405401 0.511563 24.938693 0.319726 37.344094l-0.191836 18.608102 0.575509 258.786899 0.383672 163.700138a33.187645 33.187645 0 0 1-16.370014 28.583579c-0.959181 0.639454-1.918361 1.151017-2.877542 1.66258a3623.78393 3623.78393 0 0 1-55.504578 32.867918l-111.840446 64.265094-213.833306 124.181902c-19.375446 11.254385-40.541362 28.967251-63.817476 17.265249a528.380565 528.380565 0 0 1-32.420301-18.416266l-16.050287-9.527859-224.384292-128.849914-141.958714-81.530343a33.251591 33.251591 0 0 1-15.858451-22.76455l-0.511563-5.755083-0.127891-59.469191-0.639453-257.827719L32.40975 274.368466c0-18.480211 15.155052-32.164519 32.995809-32.995809 16.050287-0.703399 29.926432 12.597237 32.548192 27.88018l0.447617 5.115629 0.127891 59.469191 0.639454 257.763774-0.639454 143.685238 36.129132 19.119665 223.553002 128.402296 122.455377 71.36303 35.809406-20.718299 223.041439-129.297532 123.414557-71.235138-0.063945-41.116871-0.639454-257.827718 0.767345-139.4009-36.320969-23.212168L603.122148 142.832847 462.889958 62.325631a32.995809 32.995809 0 1 1 33.251591-56.911377zM480.027317 384.546333a127.890733 127.890733 0 1 1 0 255.781467 127.890733 127.890733 0 0 1 0-255.781467zM217.915259 131.962135a32.995809 32.995809 0 0 1 4.987738 53.969889l-4.795902 3.389105-73.089554 42.395778a32.995809 32.995809 0 0 1-38.175384-53.522272l4.859848-3.45305 73.089554-42.395778A32.995809 32.995809 0 0 1 217.851313 131.962135zM313.769363 60.982778l8.760516 1.151016a33.1237 33.1237 0 0 1 10.231258 4.795903l4.348285 3.644886 5.115629 6.650318a24.42713 24.42713 0 0 1 3.964613 12.213565 24.874748 24.874748 0 0 1-0.639453 13.236691 24.682912 24.682912 0 0 1-5.882974 11.190439 24.938693 24.938693 0 0 1-5.755083 6.202701L330.395159 122.37033l-4.220395 2.429924a32.803973 32.803973 0 0 1-10.870712 3.964613l-5.755083 0.447617-8.824461-1.151017a33.1237 33.1237 0 0 1-10.231258-4.859847l-4.348285-3.644886-5.115629-6.586373a24.42713 24.42713 0 0 1-3.964613-12.27751 29.478814 29.478814 0 0 1 6.522427-24.363185 24.938693 24.938693 0 0 1 5.563247-6.202701l3.516995-2.302033 4.476176-2.493869a32.803973 32.803973 0 0 1 16.625795-4.412231z"
|
||||
fill="currentColor" p-id="59323"></path>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
10
src/components/bs-icons/tab/index.tsx
Normal file
10
src/components/bs-icons/tab/index.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import React, { forwardRef } from "react";
|
||||
import { ReactComponent as Tab } from "./icon.svg";
|
||||
|
||||
export const TabIcon = forwardRef<
|
||||
SVGSVGElement & { className: any },
|
||||
React.PropsWithChildren<{ className?: string }>
|
||||
>(({ className, ...props }, ref) => {
|
||||
const _className = 'transition text-gray-950 ' + (className || '')
|
||||
return <Tab ref={ref} {...props} className={_className} />;
|
||||
});
|
||||
Reference in New Issue
Block a user