chore(ui): sync Figma resources (#13088)
**What** - sync latest Figma icons and ui presets
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const WIP = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M7.5 13.945a6.444 6.444 0 1 0 0-12.89 6.444 6.444 0 0 0 0 12.89"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M7.722 3.745v3.977L5.075 10.37c.655.56 1.495.909 2.425.909A3.78 3.78 0 0 0 11.278 7.5c0-2.007-1.578-3.638-3.556-3.755"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
WIP.displayName = "WIP"
|
||||
export default WIP
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import WIP from "../WIP"
|
||||
|
||||
describe("WIP", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<WIP data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BadgeCheck from "../badge-check"
|
||||
|
||||
describe("BadgeCheck", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<BadgeCheck data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import BroomSparkleSolid from "../broom-sparkle-solid"
|
||||
|
||||
describe("BroomSparkleSolid", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<BroomSparkleSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CardSparkle from "../card-sparkle"
|
||||
|
||||
describe("CardSparkle", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<CardSparkle data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import ChefHat from "../chef-hat"
|
||||
|
||||
describe("ChefHat", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<ChefHat data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CircleHalfDottedClock from "../circle-half-dotted-clock"
|
||||
|
||||
describe("CircleHalfDottedClock", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<CircleHalfDottedClock data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CirclePlus from "../circle-plus"
|
||||
|
||||
describe("CirclePlus", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<CirclePlus data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CloudSolid from "../cloud-solid"
|
||||
|
||||
describe("CloudSolid", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<CloudSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import CodePullRequest from "../code-pull-request"
|
||||
|
||||
describe("CodePullRequest", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<CodePullRequest data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import DraftOrders from "../draft orders"
|
||||
|
||||
describe("DraftOrders", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<DraftOrders data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import FaceCrossedOutEyes from "../face-crossed-out-eyes"
|
||||
|
||||
describe("FaceCrossedOutEyes", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<FaceCrossedOutEyes data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import FireSolid from "../fire-solid"
|
||||
|
||||
describe("FireSolid", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<FireSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Fire from "../fire"
|
||||
|
||||
describe("Fire", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Fire data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import FunnelPlus from "../funnel-plus"
|
||||
|
||||
describe("FunnelPlus", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<FunnelPlus data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import GaugeSparkle from "../gauge-sparkle"
|
||||
|
||||
describe("GaugeSparkle", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<GaugeSparkle data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import GhostWorried from "../ghost-worried"
|
||||
|
||||
describe("GhostWorried", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<GhostWorried data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import GiftCards from "../gift cards"
|
||||
|
||||
describe("GiftCards", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<GiftCards data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import IdBadge from "../id-badge"
|
||||
|
||||
describe("IdBadge", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<IdBadge data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Linear from "../linear"
|
||||
|
||||
describe("Linear", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Linear data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import MarkdownSolid from "../markdown-solid"
|
||||
|
||||
describe("MarkdownSolid", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<MarkdownSolid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Meilisearch from "../meilisearch"
|
||||
|
||||
describe("Meilisearch", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Meilisearch data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import MemberBronzeBadge from "../member-bronze-badge"
|
||||
|
||||
describe("MemberBronzeBadge", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<MemberBronzeBadge data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import MemberGoldBadge from "../member-gold-badge"
|
||||
|
||||
describe("MemberGoldBadge", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<MemberGoldBadge data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import MemberSilverBadge from "../member-silver-badge"
|
||||
|
||||
describe("MemberSilverBadge", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<MemberSilverBadge data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import MinusBadge from "../minus-badge"
|
||||
|
||||
describe("MinusBadge", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<MinusBadge data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Pause from "../pause"
|
||||
|
||||
describe("Pause", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Pause data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Paypal from "../paypal"
|
||||
|
||||
describe("Paypal", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Paypal data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Payphone from "../payphone"
|
||||
|
||||
describe("Payphone", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Payphone data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Progress0 from "../progress-0"
|
||||
|
||||
describe("Progress0", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Progress0 data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Progress100 from "../progress-100"
|
||||
|
||||
describe("Progress100", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Progress100 data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Progress15 from "../progress-15"
|
||||
|
||||
describe("Progress15", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Progress15 data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Progress30 from "../progress-30"
|
||||
|
||||
describe("Progress30", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Progress30 data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Progress45 from "../progress-45"
|
||||
|
||||
describe("Progress45", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Progress45 data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Progress60 from "../progress-60"
|
||||
|
||||
describe("Progress60", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Progress60 data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Progress75 from "../progress-75"
|
||||
|
||||
describe("Progress75", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Progress75 data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Progress90 from "../progress-90"
|
||||
|
||||
describe("Progress90", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Progress90 data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Resend from "../resend"
|
||||
|
||||
describe("Resend", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Resend data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Shippo from "../shippo"
|
||||
|
||||
describe("Shippo", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Shippo data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import SidebarLeftFilled from "../sidebar-left-filled"
|
||||
|
||||
describe("SidebarLeftFilled", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<SidebarLeftFilled data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import SidebarRightFilled from "../sidebar-right-filled"
|
||||
|
||||
describe("SidebarRightFilled", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<SidebarRightFilled data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Sparkle2Solid from "../sparkle-2-solid"
|
||||
|
||||
describe("Sparkle2Solid", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Sparkle2Solid data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import StoreCredits from "../store credits"
|
||||
|
||||
describe("StoreCredits", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<StoreCredits data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import Telegram from "../telegram"
|
||||
|
||||
describe("Telegram", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<Telegram data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,17 @@
|
||||
import * as React from "react"
|
||||
import { cleanup, render, screen } from "@testing-library/react"
|
||||
|
||||
import WishLists from "../wish lists"
|
||||
|
||||
describe("WishLists", () => {
|
||||
it("should render the icon without errors", async () => {
|
||||
render(<WishLists data-testid="icon" />)
|
||||
|
||||
|
||||
const svgElement = screen.getByTestId("icon")
|
||||
|
||||
expect(svgElement).toBeInTheDocument()
|
||||
|
||||
cleanup()
|
||||
})
|
||||
})
|
||||
@@ -16,13 +16,14 @@ const AdjustmentsDone = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
fill={color}
|
||||
d="M8.5 2.528h-.778a.75.75 0 1 0 0 1.5h1.08a4 4 0 0 1-.302-1.5M10.695 6.07a4 4 0 0 1-1.21-.94.75.75 0 0 0-.29.592V6.75H1.5a.75.75 0 0 0 0 1.5h7.694v1.028a.75.75 0 0 0 1.5 0zM5.806 1.5a.75.75 0 1 0-1.5 0v1.028H1.5a.75.75 0 0 0 0 1.5h2.806v1.028a.75.75 0 0 0 1.5 0V1.5M12.611 6.75a.75.75 0 0 0 0 1.5h.889a.75.75 0 0 0 0-1.5zM6.972 11.722a.75.75 0 0 1 .75-.75H13.5a.75.75 0 1 1 0 1.5H7.722a.75.75 0 0 1-.75-.75M1.5 10.972a.75.75 0 0 0 0 1.5h2.806V13.5a.75.75 0 0 0 1.5 0V9.944a.75.75 0 1 0-1.5 0v1.028z"
|
||||
/>
|
||||
<circle cx={12.5} cy={2.5} r={2.5} fill="#60A5FA" />
|
||||
<circle cx={12.5} cy={2.5} r={2.5} fill="#2563EB" />
|
||||
<circle
|
||||
cx={12.5}
|
||||
cy={2.5}
|
||||
r={2}
|
||||
r={2.25}
|
||||
stroke={color}
|
||||
strokeOpacity={0.12}
|
||||
strokeOpacity={0.24}
|
||||
strokeWidth={0.5}
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const BadgeCheck = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill={color}
|
||||
d="M14.611 7.5a2.9 2.9 0 0 0-1.302-2.406 2.9 2.9 0 0 0-.78-2.622 2.9 2.9 0 0 0-2.623-.78A2.9 2.9 0 0 0 7.5.388 2.9 2.9 0 0 0 5.094 1.69a2.89 2.89 0 0 0-2.622.78 2.9 2.9 0 0 0-.78 2.623A2.9 2.9 0 0 0 .388 7.5 2.9 2.9 0 0 0 1.69 9.906a2.9 2.9 0 0 0 .78 2.622 2.9 2.9 0 0 0 2.623.78A2.9 2.9 0 0 0 7.5 14.612a2.9 2.9 0 0 0 2.406-1.302 2.9 2.9 0 0 0 2.622-.78c.69-.69.972-1.686.78-2.623A2.9 2.9 0 0 0 14.612 7.5m-3.695-2.037-3.778 4.889a.67.67 0 0 1-.502.258h-.025a.67.67 0 0 1-.496-.22l-2-2.222a.668.668 0 0 1 .992-.893l1.465 1.629 3.29-4.257a.667.667 0 0 1 1.055.815z"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
BadgeCheck.displayName = "BadgeCheck"
|
||||
export default BadgeCheck
|
||||
@@ -12,13 +12,14 @@ const BellAlertDone = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
{...props}
|
||||
>
|
||||
<g clipPath="url(#a)">
|
||||
<circle cx={12.5} cy={2.5} r={2.5} fill="#3B82F6" />
|
||||
<circle cx={12.5} cy={2.5} r={2.5} fill="#2563EB" />
|
||||
<circle
|
||||
cx={12.5}
|
||||
cy={2.5}
|
||||
r={2}
|
||||
r={2.25}
|
||||
stroke={color}
|
||||
strokeOpacity={0.12}
|
||||
strokeOpacity={0.24}
|
||||
strokeWidth={0.5}
|
||||
/>
|
||||
<path
|
||||
fill={color}
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const BroomSparkleSolid = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill={color}
|
||||
d="M8.646 6.77a.625.625 0 0 1-.442-1.067L13.1.807a.625.625 0 1 1 .884.884L9.09 6.587a.62.62 0 0 1-.442.183"
|
||||
/>
|
||||
<path
|
||||
fill={color}
|
||||
d="M7.118 7.485c.87.911 1.899 1.672 3.016 2.268.138-.408.227-.833.237-1.268.024-1.08-.417-2.025-1.312-2.811-1.044-.915-2.451-1.1-3.708-.62.491.882 1.078 1.708 1.767 2.43M6.215 8.348A13 13 0 0 1 4.268 5.68c-.129.104-.261.202-.381.324-1.054 1.066-1.6 1.585-2.513 1.709a.626.626 0 0 0-.537.681c.28 2.79 1.91 4.873 4.358 5.57q.306.086.62.086a2.33 2.33 0 0 0 1.453-.512c.332-.266 1.532-1.281 2.339-2.65a13.2 13.2 0 0 1-3.392-2.541M14.714 9.991l-1.052-.35-.351-1.053c-.114-.34-.677-.34-.79 0l-.352 1.052-1.052.351a.417.417 0 0 0 0 .79l1.052.35.351 1.053a.418.418 0 0 0 .792 0l.35-1.052 1.053-.351a.417.417 0 0 0 0-.79M4.577 2.91l-.788-.263-.263-.789c-.085-.255-.508-.255-.593 0l-.263.79-.788.262a.313.313 0 0 0 0 .593l.788.263.263.789a.312.312 0 0 0 .592 0l.263-.79.788-.262a.313.313 0 0 0 .001-.593M6.875 2.5a.625.625 0 1 0 0-1.25.625.625 0 0 0 0 1.25"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
BroomSparkleSolid.displayName = "BroomSparkleSolid"
|
||||
export default BroomSparkleSolid
|
||||
@@ -0,0 +1,33 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const CardSparkle = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="m7.5 4.61.819 2.071 2.07.819-2.07.818-.819 2.07-.819-2.07-2.07-.818 2.07-.819z"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M11.278 1.056H3.722c-.982 0-1.778.796-1.778 1.777v9.334c0 .982.796 1.778 1.778 1.778h7.556c.982 0 1.778-.796 1.778-1.778V2.833c0-.981-.796-1.777-1.778-1.777"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
CardSparkle.displayName = "CardSparkle"
|
||||
export default CardSparkle
|
||||
@@ -0,0 +1,33 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const ChefHat = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M3.722 11.722h7.556M6.389 10.167v1.555M8.611 10.167v1.555M4.755 3.04a2.64 2.64 0 0 0-1.593-.149 2.675 2.675 0 0 0-2.065 2.13 2.67 2.67 0 0 0 2.625 3.146v4.888c0 .491.398.89.89.89h5.777a.89.89 0 0 0 .889-.89V8.167a2.67 2.67 0 0 0 2.625-3.144 2.675 2.675 0 0 0-2.064-2.132 2.64 2.64 0 0 0-1.594.148"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M4.611 3.945a2.889 2.889 0 1 1 5.778 0"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
ChefHat.displayName = "ChefHat"
|
||||
export default ChefHat
|
||||
@@ -0,0 +1,44 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const CircleHalfDottedClock = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<g clipPath="url(#a)">
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M7.5 3.722V7.5l2.889 2"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M7.5 1.056a6.444 6.444 0 0 1 0 12.889"
|
||||
/>
|
||||
<path
|
||||
fill={color}
|
||||
d="M3.026 12.808a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M1.139 8.25a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M3.026 3.692a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M5.118 14.204a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M1.63 10.716a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M1.63 5.784a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M5.118 2.296a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h15v15H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
CircleHalfDottedClock.displayName = "CircleHalfDottedClock"
|
||||
export default CircleHalfDottedClock
|
||||
@@ -0,0 +1,23 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const CirclePlus = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill={color}
|
||||
d="M7.5.389C3.58.389.389 3.579.389 7.5s3.19 7.111 7.111 7.111 7.111-3.19 7.111-7.111S11.421.389 7.5.389m2.889 7.778H8.167v2.222a.667.667 0 0 1-1.334 0V8.167H4.611a.667.667 0 0 1 0-1.334h2.222V4.611a.667.667 0 0 1 1.334 0v2.222h2.222a.667.667 0 0 1 0 1.334"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
CirclePlus.displayName = "CirclePlus"
|
||||
export default CirclePlus
|
||||
@@ -0,0 +1,23 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const CloudSolid = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill={color}
|
||||
d="M12.084 5.123c-1.355-.535-3.066-.29-4.473.951.222-1.13 2.033-2.569 3.91-2.478-.812-1.388-2.313-2.318-3.995-2.318-2.565 0-4.65 2.093-4.65 4.666q0 .167.014.336a3.33 3.33 0 0 0-1.479 5.627c.622.6 1.434.926 2.28.926h6.934c2.198 0 3.986-1.793 3.986-4a3.98 3.98 0 0 0-2.527-3.71"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
CloudSolid.displayName = "CloudSolid"
|
||||
export default CloudSolid
|
||||
@@ -16,7 +16,7 @@ const CodeCommit = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M.833 7.5h3.959M14.167 7.5h-3.959M7.5 10.209a2.708 2.708 0 1 0 0-5.417 2.708 2.708 0 0 0 0 5.417"
|
||||
d="M7.5 14.167v-3.958M7.5.834v3.958M10.208 7.5a2.708 2.708 0 1 0-5.416 0 2.708 2.708 0 0 0 5.416 0"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const CodePullRequest = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M12.167 10.389V4.61c0-.982-.796-1.778-1.778-1.778H7.278"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="m9.278 4.833-2-2 2-2M2.833 4.61v5.779M12.167 13.944a1.778 1.778 0 1 0 0-3.555 1.778 1.778 0 0 0 0 3.555M2.833 13.944a1.778 1.778 0 1 0 0-3.555 1.778 1.778 0 0 0 0 3.555M2.833 4.61a1.778 1.778 0 1 0 0-3.555 1.778 1.778 0 0 0 0 3.556"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
CodePullRequest.displayName = "CodePullRequest"
|
||||
export default CodePullRequest
|
||||
@@ -11,21 +11,20 @@ const CommandLine = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<g
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
clipPath="url(#a)"
|
||||
>
|
||||
<path d="M11.278 1.944H3.722c-.982 0-1.778.796-1.778 1.778v7.556c0 .981.796 1.777 1.778 1.777h7.556c.982 0 1.778-.796 1.778-1.777V3.722c0-.982-.796-1.778-1.778-1.778M8.167 10.389h2.222" />
|
||||
<path d="m4.611 10.389 2.222-2.222-2.222-2.223" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h15v15H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
d="M11.278 1.944H3.722c-.982 0-1.778.796-1.778 1.778v7.556c0 .981.796 1.777 1.778 1.777h7.556c.982 0 1.778-.796 1.778-1.777V3.722c0-.982-.796-1.778-1.778-1.778M8.167 10.389h2.222"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="m4.611 10.389 2.222-2.222-2.222-2.223"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const DraftOrders = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={20}
|
||||
height={20}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path fill="#10B981" d="M0 0h20v20H0z" />
|
||||
<path fill="url(#a)" fillOpacity={0.2} d="M0 0h20v20H0z" />
|
||||
<path
|
||||
fill="#fff"
|
||||
d="M13.258 16a1 1 0 1 0 0-2.001 1 1 0 0 0 0 2.001M6.753 16a1 1 0 1 0 0-2.002 1 1 0 0 0 0 2.002M3.812 4.694a.75.75 0 0 1 .987-.39l.74.32a1.74 1.74 0 0 1 1.037 1.348l.078.522h2.788l-.877 2.172a1.503 1.503 0 0 0 1.937 1.961l3.029-1.181a3.4 3.4 0 0 0 1.207-.788l.63-.631-.632 3.162a2.26 2.26 0 0 1-2.208 1.81H8.046a2.266 2.266 0 0 1-2.226-1.92l-.554-3.714-.003-.019-.17-1.151a.25.25 0 0 0-.15-.192l-.74-.322a.75.75 0 0 1-.391-.987"
|
||||
/>
|
||||
<path
|
||||
fill="#fff"
|
||||
d="M14.997 4.283a1.01 1.01 0 0 0-1.4-.003l-2.464 2.464q-.165.165-.253.385l-.42 1.042a.501.501 0 0 0 .645.653l1.01-.393q.229-.09.402-.263l2.485-2.485a.99.99 0 0 0-.004-1.4z"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={10}
|
||||
x2={10}
|
||||
y1={0}
|
||||
y2={20}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#fff" />
|
||||
<stop offset={1} stopColor="#fff" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
DraftOrders.displayName = "DraftOrders"
|
||||
export default DraftOrders
|
||||
@@ -13,7 +13,7 @@ const EllipseBlueSolid = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
>
|
||||
<g clipPath="url(#a)" filter="url(#b)">
|
||||
<rect width={10} height={10} x={2.5} y={2.5} fill="#fff" rx={5} />
|
||||
<circle cx={7.5} cy={7.5} r={3} fill="#60A5FA" />
|
||||
<circle cx={7.5} cy={7.5} r={3} fill="#3B82F6" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
|
||||
@@ -13,7 +13,7 @@ const EllipsePurpleSolid = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
>
|
||||
<g clipPath="url(#a)" filter="url(#b)">
|
||||
<rect width={10} height={10} x={2.5} y={2.5} fill="#fff" rx={5} />
|
||||
<circle cx={7.5} cy={7.5} r={3} fill="#A78BFA" />
|
||||
<circle cx={7.5} cy={7.5} r={3} fill="#8B5CF6" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
|
||||
@@ -20,7 +20,7 @@ const ExclamationCircle = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
/>
|
||||
<path
|
||||
strokeWidth={0.9}
|
||||
d="M7.5 10.976a.44.44 0 0 1 0-.878.44.44 0 0 1 0 .878Z"
|
||||
d="M7.5 10.099a.44.44 0 0 1 .44.438.44.44 0 0 1-.44.44.44.44 0 0 1 0-.878Z"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
|
||||
@@ -11,9 +11,15 @@ const Eye = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<g fill={color} clipPath="url(#a)">
|
||||
<path d="M7.5 12.833c-3.558 0-5.725-2.48-6.7-3.96a2.49 2.49 0 0 1 0-2.747c.975-1.48 3.142-3.96 6.7-3.96s5.725 2.48 6.7 3.96a2.49 2.49 0 0 1 0 2.746c-.975 1.48-3.142 3.961-6.7 3.961m0-9.333c-2.934 0-4.76 2.106-5.588 3.36a1.18 1.18 0 0 0 0 1.28C2.74 9.393 4.566 11.5 7.5 11.5s4.76-2.106 5.588-3.36a1.18 1.18 0 0 0 0-1.28C12.26 5.607 10.434 3.5 7.5 3.5" />
|
||||
<path d="M7.5 10.389a2.889 2.889 0 1 0 0-5.778 2.889 2.889 0 0 0 0 5.778" />
|
||||
<g
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
clipPath="url(#a)"
|
||||
>
|
||||
<path d="M1.356 8.506c-.4-.607-.4-1.406 0-2.013.905-1.372 2.9-3.66 6.144-3.66s5.24 2.287 6.144 3.66c.4.607.4 1.406 0 2.013-.905 1.372-2.9 3.66-6.144 3.66S2.26 9.88 1.356 8.507" />
|
||||
<path d="M7.5 9.944a2.444 2.444 0 1 0 0-4.888 2.444 2.444 0 0 0 0 4.888" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const FaceCrossedOutEyes = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill={color}
|
||||
d="M8.389 11.056H6.61a.445.445 0 0 1-.444-.445 1.334 1.334 0 0 1 2.666 0c0 .246-.199.445-.444.445"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M7.5 13.945a6.444 6.444 0 1 0 0-12.89 6.444 6.444 0 0 0 0 12.89M3.722 5.944l2.222 2.223M5.944 5.944 3.722 8.167M9.056 5.944l2.222 2.223M11.278 5.944 9.056 8.167"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
FaceCrossedOutEyes.displayName = "FaceCrossedOutEyes"
|
||||
export default FaceCrossedOutEyes
|
||||
@@ -24,7 +24,7 @@ const FaceSmile = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
strokeWidth={1.5}
|
||||
d="M10.832 9.278a3.78 3.78 0 0 1-3.332 2 3.78 3.78 0 0 1-3.332-2"
|
||||
/>
|
||||
<path d="M6.111 6.611a.389.389 0 1 1-.778 0 .389.389 0 0 1 .778 0ZM9.667 6.611a.389.389 0 1 1-.778 0 .389.389 0 0 1 .778 0Z" />
|
||||
<path d="M5.722 6.222a.389.389 0 1 1 0 .778.389.389 0 0 1 0-.778ZM9.278 6.222a.389.389 0 1 1 0 .778.389.389 0 0 1 0-.778Z" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
|
||||
@@ -11,15 +11,15 @@ const FeaturedBadge = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<circle cx={7.5} cy={7.5} r={7.5} fill="#3B82F6" />
|
||||
<circle cx={7.5} cy={7.5} r={7.5} fill="#2563EB" />
|
||||
<circle cx={7.5} cy={7.5} r={7.5} fill="url(#a)" fillOpacity={0.2} />
|
||||
<circle
|
||||
cx={7.5}
|
||||
cy={7.5}
|
||||
r={7.2}
|
||||
r={7.25}
|
||||
stroke={color}
|
||||
strokeOpacity={0.24}
|
||||
strokeWidth={0.6}
|
||||
strokeWidth={0.5}
|
||||
/>
|
||||
<g clipPath="url(#b)">
|
||||
<path
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const FireSolid = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill={color}
|
||||
d="M11.1 4.316a.647.647 0 0 0-1.002.216 4.2 4.2 0 0 1-.704.975C8.935 1.709 6.414.319 6.297.257A.646.646 0 0 0 5.348.8c-.095 2.35-.85 3.396-1.65 4.503-.683.945-1.388 1.922-1.576 3.618-.154 1.389.26 2.707 1.166 3.71 1.01 1.12 2.528 1.758 4.169 1.758h.049c2.315-.018 4.194-.914 5.154-2.458 1.463-2.351.792-5.625-1.56-7.615m-1.665 7.851c-.394.58-1.078.927-1.83.93h-.019c-1.142 0-2.024-.537-2.422-1.476-.544-1.282-.088-3.086 1.087-4.29a.645.645 0 0 1 1.106.395c.084.987.37 1.114.89 1.346.442.197 1.047.466 1.365 1.282.245.626.181 1.286-.177 1.813"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
FireSolid.displayName = "FireSolid"
|
||||
export default FireSolid
|
||||
@@ -0,0 +1,33 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Fire = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M7.838 13.729c-3.218.014-3.202-3.822-1.13-5.947.254 2.973 2.246 1.83 2.928 3.575.508 1.3-.533 2.366-1.797 2.372z"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M7.5 13.743c1.664-.013 3.604-.534 4.61-2.153 1.248-2.006.74-4.947-1.428-6.782 0 0-.617 1.31-1.864 1.911 0-4.386-2.825-5.893-2.825-5.893-.189 4.614-2.852 4.762-3.23 8.166-.31 2.81 2.01 4.773 4.737 4.751"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Fire.displayName = "Fire"
|
||||
export default Fire
|
||||
@@ -30,7 +30,7 @@ const FolderIllustration = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
strokeLinejoin="round"
|
||||
strokeOpacity={0.15}
|
||||
strokeWidth={0.5}
|
||||
d="M7.034 2.955a.25.25 0 0 0 .196.093h4.387c1.142 0 2.068.926 2.068 2.069v6.066a2.07 2.07 0 0 1-2.068 2.069H3.383a2.07 2.07 0 0 1-2.068-2.069V3.817c0-1.143.926-2.069 2.068-2.069h1.691c.628 0 1.22.285 1.613.774z"
|
||||
d="M3.383 1.748h1.69c.55 0 1.073.218 1.458.6l.156.174.348.432a.25.25 0 0 0 .195.094h4.387c1.142 0 2.068.926 2.068 2.069v6.066a2.07 2.07 0 0 1-2.068 2.068H3.383a2.07 2.07 0 0 1-2.068-2.068V3.817c0-1.143.926-2.069 2.068-2.069"
|
||||
/>
|
||||
<g filter="url(#b)">
|
||||
<path
|
||||
|
||||
@@ -31,7 +31,7 @@ const FolderOpenIllustration = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
strokeLinejoin="round"
|
||||
strokeOpacity={0.15}
|
||||
strokeWidth={0.5}
|
||||
d="M7.034 2.922a.25.25 0 0 0 .196.094h4.387c1.142 0 2.068.926 2.068 2.068v6.067a2.07 2.07 0 0 1-2.068 2.068H3.383a2.07 2.07 0 0 1-2.068-2.068V3.784c0-1.142.926-2.068 2.068-2.068h1.691c.628 0 1.22.284 1.613.773z"
|
||||
d="M3.383 1.716h1.69c.55 0 1.073.218 1.458.6l.156.173.348.433a.25.25 0 0 0 .195.094h4.387c1.142 0 2.068.926 2.068 2.068v6.067a2.07 2.07 0 0 1-2.068 2.068H3.383a2.07 2.07 0 0 1-2.068-2.068V3.783c0-1.142.926-2.068 2.068-2.068"
|
||||
/>
|
||||
<g fillRule="evenodd" clipRule="evenodd" filter="url(#c)">
|
||||
<path
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const FunnelPlus = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M11.278 7.722v4.445M8.833 7.5l4.223-5.556H1.944L6.167 7.5v6.444l2.666-1.333v-.467M13.5 9.944H9.056"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
FunnelPlus.displayName = "FunnelPlus"
|
||||
export default FunnelPlus
|
||||
@@ -0,0 +1,37 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const GaugeSparkle = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill={color}
|
||||
d="m14.391 1.74-.84-.28-.282-.842c-.09-.272-.541-.272-.632 0l-.28.842-.841.28a.334.334 0 0 0 0 .633l.84.28.281.842a.333.333 0 0 0 .631 0l.281-.842.841-.28a.334.334 0 0 0 .001-.633M4.141 10.898l-1.122-.374-.375-1.123c-.121-.362-.721-.362-.843 0l-.374 1.123-1.123.374a.444.444 0 0 0 0 .843l1.123.374.374 1.123a.446.446 0 0 0 .844 0l.375-1.123 1.122-.374a.445.445 0 0 0 0-.843M1.557 3.722a.667.667 0 1 0 0-1.334.667.667 0 0 0 0 1.334"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M7.5 12.167a1.556 1.556 0 1 0-.001-3.112 1.556 1.556 0 0 0 0 3.112"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M11.722 10.389h2.21c.004-.074.012-.148.012-.222A6.444 6.444 0 0 0 1.716 7.323M6.715 9.27 5.328 6.902"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
GaugeSparkle.displayName = "GaugeSparkle"
|
||||
export default GaugeSparkle
|
||||
@@ -0,0 +1,30 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const GhostWorried = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M7.5 13.945c1.278 0 1.36-1.334 2.667-1.334s1.333 1.334 2.889 1.334V6.61a5.555 5.555 0 1 0-11.112 0v7.334c1.556 0 1.584-1.334 2.89-1.334 1.305 0 1.388 1.334 2.666 1.334"
|
||||
/>
|
||||
<path
|
||||
fill={color}
|
||||
d="M4.833 8.389a.889.889 0 1 0 0-1.778.889.889 0 0 0 0 1.778M10.167 8.389a.889.889 0 1 0 0-1.778.889.889 0 0 0 0 1.778M8.389 10.167H6.61a.445.445 0 0 1-.444-.445 1.334 1.334 0 0 1 2.666 0c0 .245-.199.444-.444.444"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
GhostWorried.displayName = "GhostWorried"
|
||||
export default GhostWorried
|
||||
@@ -0,0 +1,46 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const GiftCards = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={20}
|
||||
height={20}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path fill="#F97316" d="M0 0h20v20H0z" />
|
||||
<path fill="url(#a)" fillOpacity={0.2} d="M0 0h20v20H0z" />
|
||||
<path
|
||||
fill="#fff"
|
||||
d="M10 8.5H7.167C5.972 8.5 5 7.491 5 6.25S5.972 4 7.167 4c2.653 0 3.525 3.425 3.562 3.571A.75.75 0 0 1 10 8.5m-2.833-3c-.368 0-.667.336-.667.75s.299.75.667.75h1.75c-.332-.686-.903-1.5-1.75-1.5"
|
||||
/>
|
||||
<path
|
||||
fill="#fff"
|
||||
d="M12.833 8.5H10a.75.75 0 0 1-.729-.929C9.307 7.425 10.18 4 12.833 4 14.028 4 15 5.009 15 6.25s-.972 2.25-2.167 2.25M11.083 7h1.75c.368 0 .667-.336.667-.75s-.299-.75-.667-.75c-.847 0-1.418.814-1.75 1.5"
|
||||
/>
|
||||
<path
|
||||
fill="#fff"
|
||||
d="M15.25 8.5H4.75a.75.75 0 0 1 0-1.5h10.5a.75.75 0 0 1 0 1.5M9.25 10H5v2.75a2.75 2.75 0 0 0 2.75 2.75h1.5zM10.75 10v5.5h1.5A2.75 2.75 0 0 0 15 12.75V10z"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={10}
|
||||
x2={10}
|
||||
y1={0}
|
||||
y2={20}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#fff" />
|
||||
<stop offset={1} stopColor="#fff" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
GiftCards.displayName = "GiftCards"
|
||||
export default GiftCards
|
||||
@@ -1,22 +1,38 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Github = React.forwardRef<SVGSVGElement, Omit<IconProps, "color">>(
|
||||
(props, ref) => {
|
||||
const Github = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
width={20}
|
||||
height={20}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path fill="#000" d="M0 0h20v20H0z" />
|
||||
<path fill="url(#a)" fillOpacity={0.6} d="M0 0h20v20H0z" />
|
||||
<path
|
||||
fill="#1B1F23"
|
||||
fill="#fff"
|
||||
fillRule="evenodd"
|
||||
d="M7.5.917C3.77.917.75 3.937.75 7.667a6.75 6.75 0 0 0 4.615 6.404c.338.059.464-.144.464-.321 0-.16-.008-.692-.008-1.257-1.696.312-2.135-.414-2.27-.793-.076-.194-.405-.793-.692-.954-.236-.126-.573-.439-.008-.447.531-.008.911.49 1.038.692.607 1.02 1.578.734 1.966.557.059-.439.236-.734.43-.903-1.502-.169-3.071-.751-3.071-3.333 0-.734.261-1.341.692-1.814-.068-.169-.304-.86.067-1.789 0 0 .565-.177 1.856.692a6.3 6.3 0 0 1 1.688-.228c.574 0 1.147.076 1.687.228 1.291-.877 1.857-.692 1.857-.692.37.928.135 1.62.067 1.79.43.472.692 1.07.692 1.813 0 2.59-1.578 3.164-3.08 3.333.245.21.456.616.456 1.249 0 .902-.008 1.628-.008 1.856 0 .177.126.388.464.32a6.76 6.76 0 0 0 4.598-6.403c0-3.73-3.02-6.75-6.75-6.75"
|
||||
d="M10 4.148c-3.315 0-6 2.685-6 6a6 6 0 0 0 4.102 5.692c.3.053.413-.127.413-.285 0-.142-.008-.615-.008-1.117-1.507.277-1.897-.368-2.017-.705-.067-.173-.36-.705-.615-.848-.21-.112-.51-.39-.008-.397.473-.008.81.435.923.615.54.907 1.403.652 1.747.495.053-.39.21-.653.383-.803-1.335-.15-2.73-.667-2.73-2.962 0-.653.232-1.193.615-1.613-.06-.15-.27-.765.06-1.59 0 0 .502-.157 1.65.615.48-.135.99-.202 1.5-.202s1.02.067 1.5.202c1.147-.78 1.65-.615 1.65-.615.33.825.12 1.44.06 1.59.383.42.615.953.615 1.613 0 2.302-1.402 2.812-2.738 2.962.218.188.406.548.406 1.11 0 .803-.008 1.448-.008 1.65 0 .158.113.345.412.285A6.01 6.01 0 0 0 16 10.148c0-3.315-2.685-6-6-6"
|
||||
clipRule="evenodd"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={20}
|
||||
x2={0}
|
||||
y1={0}
|
||||
y2={20}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#48EAEB" />
|
||||
<stop offset={0.505} stopColor="#5B53FF" />
|
||||
<stop offset={1} stopColor="#8952FD" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const IdBadge = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill={color}
|
||||
d="M5.072 8.011a1.128 1.128 0 1 0 0-2.256 1.128 1.128 0 0 0 0 2.256M6.886 10.587a.576.576 0 0 0 .36-.779 2.377 2.377 0 0 0-4.347 0 .576.576 0 0 0 .36.779 6.014 6.014 0 0 0 3.627 0"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M11.055 3.533h1.111c.983 0 1.778.796 1.778 1.778v5.778c0 .982-.795 1.777-1.778 1.777H2.833a1.777 1.777 0 0 1-1.778-1.777V5.31c0-.982.796-1.778 1.778-1.778h1.111"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M7.5.867c.613 0 1.11.497 1.11 1.11v2H6.39v-2c0-.613.497-1.11 1.11-1.11M8.833 7.089h2.445M8.833 9.755h2.445"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
IdBadge.displayName = "IdBadge"
|
||||
export default IdBadge
|
||||
@@ -1,4 +1,5 @@
|
||||
// This file is generated automatically.
|
||||
export { default as WIP } from "./WIP"
|
||||
export { default as AcademicCapSolid } from "./academic-cap-solid"
|
||||
export { default as AcademicCap } from "./academic-cap"
|
||||
export { default as AdjustmentsDone } from "./adjustments-done"
|
||||
@@ -40,6 +41,7 @@ export { default as ArrowsPointingOut } from "./arrows-pointing-out"
|
||||
export { default as ArrowsReduceDiagonal } from "./arrows-reduce-diagonal"
|
||||
export { default as AtSymbol } from "./at-symbol"
|
||||
export { default as BackwardSolid } from "./backward-solid"
|
||||
export { default as BadgeCheck } from "./badge-check"
|
||||
export { default as BarsArrowDown } from "./bars-arrow-down"
|
||||
export { default as BarsThree } from "./bars-three"
|
||||
export { default as Beaker } from "./beaker"
|
||||
@@ -53,6 +55,7 @@ export { default as Book } from "./book"
|
||||
export { default as Bookmarks } from "./bookmarks"
|
||||
export { default as BottomToTop } from "./bottom-to-top"
|
||||
export { default as Brackets } from "./brackets"
|
||||
export { default as BroomSparkleSolid } from "./broom-sparkle-solid"
|
||||
export { default as BroomSparkle } from "./broom-sparkle"
|
||||
export { default as BugAntSolid } from "./bug-ant-solid"
|
||||
export { default as Bug } from "./bug"
|
||||
@@ -66,6 +69,7 @@ export { default as CalendarMini } from "./calendar-mini"
|
||||
export { default as CalendarSolid } from "./calendar-solid"
|
||||
export { default as Calendar } from "./calendar"
|
||||
export { default as Camera } from "./camera"
|
||||
export { default as CardSparkle } from "./card-sparkle"
|
||||
export { default as CaretMaximizeDiagonal } from "./caret-maximize-diagonal"
|
||||
export { default as CaretMinimizeDiagonal } from "./caret-minimize-diagonal"
|
||||
export { default as CashSolid } from "./cash-solid"
|
||||
@@ -82,6 +86,7 @@ export { default as CheckCircleSolid } from "./check-circle-solid"
|
||||
export { default as CheckCircle } from "./check-circle"
|
||||
export { default as CheckMini } from "./check-mini"
|
||||
export { default as Check } from "./check"
|
||||
export { default as ChefHat } from "./chef-hat"
|
||||
export { default as ChevronDoubleLeftMiniSolid } from "./chevron-double-left-mini-solid"
|
||||
export { default as ChevronDoubleLeft } from "./chevron-double-left"
|
||||
export { default as ChevronDoubleRightMiniSolid } from "./chevron-double-right-mini-solid"
|
||||
@@ -97,10 +102,12 @@ export { default as ChevronUpMini } from "./chevron-up-mini"
|
||||
export { default as CircleArrowUp } from "./circle-arrow-up"
|
||||
export { default as CircleDottedLine } from "./circle-dotted-line"
|
||||
export { default as CircleFilledSolid } from "./circle-filled-solid"
|
||||
export { default as CircleHalfDottedClock } from "./circle-half-dotted-clock"
|
||||
export { default as CircleHalfSolid } from "./circle-half-solid"
|
||||
export { default as CircleMiniFilledSolid } from "./circle-mini-filled-solid"
|
||||
export { default as CircleMiniSolid } from "./circle-mini-solid"
|
||||
export { default as CircleMinus } from "./circle-minus"
|
||||
export { default as CirclePlus } from "./circle-plus"
|
||||
export { default as CircleQuarterSolid } from "./circle-quarter-solid"
|
||||
export { default as CircleSliders } from "./circle-sliders"
|
||||
export { default as CircleSolid } from "./circle-solid"
|
||||
@@ -114,8 +121,10 @@ export { default as Clock } from "./clock"
|
||||
export { default as CloneDashed } from "./clone-dashed"
|
||||
export { default as CloudArrowDown } from "./cloud-arrow-down"
|
||||
export { default as CloudArrowUp } from "./cloud-arrow-up"
|
||||
export { default as CloudSolid } from "./cloud-solid"
|
||||
export { default as CodeCommit } from "./code-commit"
|
||||
export { default as CodeMerge } from "./code-merge"
|
||||
export { default as CodePullRequest } from "./code-pull-request"
|
||||
export { default as CogSixToothSolid } from "./cog-six-tooth-solid"
|
||||
export { default as CogSixTooth } from "./cog-six-tooth"
|
||||
export { default as CommandLineSolid } from "./command-line-solid"
|
||||
@@ -138,6 +147,7 @@ export { default as DocumentSeries } from "./document-series"
|
||||
export { default as DocumentTextSolid } from "./document-text-solid"
|
||||
export { default as DocumentText } from "./document-text"
|
||||
export { default as DotsSix } from "./dots-six"
|
||||
export { default as DraftOrders } from "./draft orders"
|
||||
export { default as DropCap } from "./drop-cap"
|
||||
export { default as EllipseBlueSolid } from "./ellipse-blue-solid"
|
||||
export { default as EllipseGreenSolid } from "./ellipse-green-solid"
|
||||
@@ -158,10 +168,13 @@ export { default as EyeMini } from "./eye-mini"
|
||||
export { default as EyeSlashMini } from "./eye-slash-mini"
|
||||
export { default as EyeSlash } from "./eye-slash"
|
||||
export { default as Eye } from "./eye"
|
||||
export { default as FaceCrossedOutEyes } from "./face-crossed-out-eyes"
|
||||
export { default as FaceSmile } from "./face-smile"
|
||||
export { default as Facebook } from "./facebook"
|
||||
export { default as FeaturedBadge } from "./featured-badge"
|
||||
export { default as Figma } from "./figma"
|
||||
export { default as FireSolid } from "./fire-solid"
|
||||
export { default as Fire } from "./fire"
|
||||
export { default as FlagMini } from "./flag-mini"
|
||||
export { default as FlyingBox } from "./flying-box"
|
||||
export { default as FolderIllustration } from "./folder-illustration"
|
||||
@@ -169,9 +182,13 @@ export { default as FolderOpenIllustration } from "./folder-open-illustration"
|
||||
export { default as FolderOpen } from "./folder-open"
|
||||
export { default as Folder } from "./folder"
|
||||
export { default as ForwardSolid } from "./forward-solid"
|
||||
export { default as FunnelPlus } from "./funnel-plus"
|
||||
export { default as Funnel } from "./funnel"
|
||||
export { default as GatsbyEx } from "./gatsby-ex"
|
||||
export { default as Gatsby } from "./gatsby"
|
||||
export { default as GaugeSparkle } from "./gauge-sparkle"
|
||||
export { default as GhostWorried } from "./ghost-worried"
|
||||
export { default as GiftCards } from "./gift cards"
|
||||
export { default as GiftSolid } from "./gift-solid"
|
||||
export { default as Gift } from "./gift"
|
||||
export { default as Github } from "./github"
|
||||
@@ -187,6 +204,7 @@ export { default as Heart } from "./heart"
|
||||
export { default as History } from "./history"
|
||||
export { default as HouseStar } from "./house-star"
|
||||
export { default as House } from "./house"
|
||||
export { default as IdBadge } from "./id-badge"
|
||||
export { default as InboxSolid } from "./inbox-solid"
|
||||
export { default as InformationCircleSolid } from "./information-circle-solid"
|
||||
export { default as InformationCircle } from "./information-circle"
|
||||
@@ -202,6 +220,7 @@ export { default as Levels } from "./levels"
|
||||
export { default as Lifebuoy } from "./lifebuoy"
|
||||
export { default as LightBulbSolid } from "./light-bulb-solid"
|
||||
export { default as LightBulb } from "./light-bulb"
|
||||
export { default as Linear } from "./linear"
|
||||
export { default as Link } from "./link"
|
||||
export { default as Linkedin } from "./linkedin"
|
||||
export { default as ListBullet } from "./list-bullet"
|
||||
@@ -216,10 +235,16 @@ export { default as MagnifyingGlassMini } from "./magnifying-glass-mini"
|
||||
export { default as MagnifyingGlass } from "./magnifying-glass"
|
||||
export { default as MapPin } from "./map-pin"
|
||||
export { default as Map } from "./map"
|
||||
export { default as MarkdownSolid } from "./markdown-solid"
|
||||
export { default as Mastercard } from "./mastercard"
|
||||
export { default as MediaPlay } from "./media-play"
|
||||
export { default as Medusa } from "./medusa"
|
||||
export { default as Meilisearch } from "./meilisearch"
|
||||
export { default as MemberBronzeBadge } from "./member-bronze-badge"
|
||||
export { default as MemberGoldBadge } from "./member-gold-badge"
|
||||
export { default as MemberSilverBadge } from "./member-silver-badge"
|
||||
export { default as Meta } from "./meta"
|
||||
export { default as MinusBadge } from "./minus-badge"
|
||||
export { default as MinusMini } from "./minus-mini"
|
||||
export { default as Minus } from "./minus"
|
||||
export { default as MoonSolid } from "./moon-solid"
|
||||
@@ -230,6 +255,9 @@ export { default as OpenRectArrowOut } from "./open-rect-arrow-out"
|
||||
export { default as PaperClip } from "./paper-clip"
|
||||
export { default as Party } from "./party"
|
||||
export { default as PauseSolid } from "./pause-solid"
|
||||
export { default as Pause } from "./pause"
|
||||
export { default as Paypal } from "./paypal"
|
||||
export { default as Payphone } from "./payphone"
|
||||
export { default as PenPlus } from "./pen-plus"
|
||||
export { default as PencilSquareSolid } from "./pencil-square-solid"
|
||||
export { default as PencilSquare } from "./pencil-square"
|
||||
@@ -241,6 +269,14 @@ export { default as PlayMiniSolid } from "./play-mini-solid"
|
||||
export { default as PlaySolid } from "./play-solid"
|
||||
export { default as PlusMini } from "./plus-mini"
|
||||
export { default as Plus } from "./plus"
|
||||
export { default as Progress0 } from "./progress-0"
|
||||
export { default as Progress100 } from "./progress-100"
|
||||
export { default as Progress15 } from "./progress-15"
|
||||
export { default as Progress30 } from "./progress-30"
|
||||
export { default as Progress45 } from "./progress-45"
|
||||
export { default as Progress60 } from "./progress-60"
|
||||
export { default as Progress75 } from "./progress-75"
|
||||
export { default as Progress90 } from "./progress-90"
|
||||
export { default as PuzzleSolid } from "./puzzle-solid"
|
||||
export { default as Puzzle } from "./puzzle"
|
||||
export { default as QuestionMarkCircle } from "./question-mark-circle"
|
||||
@@ -252,6 +288,7 @@ export { default as ReceiptPercent } from "./receipt-percent"
|
||||
export { default as Receipt } from "./receipt"
|
||||
export { default as Reduce } from "./reduce"
|
||||
export { default as ReplaySolid } from "./replay-solid"
|
||||
export { default as Resend } from "./resend"
|
||||
export { default as Resize } from "./resize"
|
||||
export { default as RocketLaunchSolid } from "./rocket-launch-solid"
|
||||
export { default as RocketLaunch } from "./rocket-launch"
|
||||
@@ -266,14 +303,18 @@ export { default as Server } from "./server"
|
||||
export { default as Share } from "./share"
|
||||
export { default as ShieldCheck } from "./shield-check"
|
||||
export { default as Shipbob } from "./shipbob"
|
||||
export { default as Shippo } from "./shippo"
|
||||
export { default as ShoppingBag } from "./shopping-bag"
|
||||
export { default as ShoppingCartSolid } from "./shopping-cart-solid"
|
||||
export { default as ShoppingCart } from "./shopping-cart"
|
||||
export { default as Shopping } from "./shopping"
|
||||
export { default as SidebarLeftFilled } from "./sidebar-left-filled"
|
||||
export { default as SidebarLeft } from "./sidebar-left"
|
||||
export { default as SidebarRightFilled } from "./sidebar-right-filled"
|
||||
export { default as SidebarRight } from "./sidebar-right"
|
||||
export { default as Slack } from "./slack"
|
||||
export { default as Snooze } from "./snooze"
|
||||
export { default as Sparkle2Solid } from "./sparkle-2-solid"
|
||||
export { default as SparklesMiniSolid } from "./sparkles-mini-solid"
|
||||
export { default as SparklesMini } from "./sparkles-mini"
|
||||
export { default as SparklesSolid } from "./sparkles-solid"
|
||||
@@ -294,6 +335,7 @@ export { default as StackPerspective } from "./stack-perspective"
|
||||
export { default as StarSolid } from "./star-solid"
|
||||
export { default as Star } from "./star"
|
||||
export { default as Stopwatch } from "./stopwatch"
|
||||
export { default as StoreCredits } from "./store credits"
|
||||
export { default as Stripe } from "./stripe"
|
||||
export { default as SunSolid } from "./sun-solid"
|
||||
export { default as Sun } from "./sun"
|
||||
@@ -306,6 +348,7 @@ export { default as Tailwind } from "./tailwind"
|
||||
export { default as Target } from "./target"
|
||||
export { default as TaxExclusive } from "./tax-exclusive"
|
||||
export { default as TaxInclusive } from "./tax-inclusive"
|
||||
export { default as Telegram } from "./telegram"
|
||||
export { default as TextHighlight } from "./text-highlight"
|
||||
export { default as Text } from "./text"
|
||||
export { default as ThumbDown } from "./thumb-down"
|
||||
@@ -337,6 +380,7 @@ export { default as Visa } from "./visa"
|
||||
export { default as WandSparkle } from "./wand-sparkle"
|
||||
export { default as Webshipper } from "./webshipper"
|
||||
export { default as Window } from "./window"
|
||||
export { default as WishLists } from "./wish lists"
|
||||
export { default as XCircleSolid } from "./x-circle-solid"
|
||||
export { default as XCircle } from "./x-circle"
|
||||
export { default as XMarkMini } from "./x-mark-mini"
|
||||
|
||||
@@ -18,7 +18,7 @@ const Key = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
strokeWidth={1.5}
|
||||
d="m1.345 13.497.158-2.53L6.739 5.73a3.6 3.6 0 0 1-.128-.897 3.556 3.556 0 1 1 3.556 3.556c-.322 0-.629-.057-.926-.137L7.5 9.944h-2v2l-1.462 1.559z"
|
||||
/>
|
||||
<path d="M10.611 4.778a.389.389 0 1 0 0-.778.389.389 0 0 0 0 .778Z" />
|
||||
<path d="M10.222 4.389a.389.389 0 1 0 .778 0 .389.389 0 0 0-.778 0Z" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Linear = React.forwardRef<SVGSVGElement, Omit<IconProps, "color">>(
|
||||
(props, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<g clipPath="url(#a)">
|
||||
<path
|
||||
fill="#222326"
|
||||
d="M.915 9.056c-.03-.128.123-.21.216-.116l4.93 4.93c.092.092.011.245-.117.215a6.77 6.77 0 0 1-5.029-5.03M.75 7.08a.13.13 0 0 0 .04.103l7.027 7.028a.13.13 0 0 0 .103.039q.48-.03.94-.125a.131.131 0 0 0 .064-.223L1.098 6.076a.131.131 0 0 0-.223.064Q.78 6.6.75 7.08m.568-2.32a.13.13 0 0 0 .029.149l8.744 8.744c.04.04.098.051.149.028a7 7 0 0 0 .7-.362.133.133 0 0 0 .024-.208L1.89 4.035a.133.133 0 0 0-.208.025 7 7 0 0 0-.363.7m1.14-1.57a.133.133 0 0 1-.005-.183 6.756 6.756 0 1 1 9.54 9.54.133.133 0 0 1-.183-.006z"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M.75.75h13.5v13.5H.75z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Linear.displayName = "Linear"
|
||||
export default Linear
|
||||
@@ -18,14 +18,14 @@ const Loader = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
strokeWidth={1.5}
|
||||
clipPath="url(#a)"
|
||||
>
|
||||
<path d="M7.5 1.056v2.222" />
|
||||
<path d="m12.057 2.943-1.571 1.571" opacity={0.88} />
|
||||
<path d="M13.944 7.5h-2.222" opacity={0.75} />
|
||||
<path d="m12.057 12.057-1.571-1.571" opacity={0.63} />
|
||||
<path d="M7.5 13.945v-2.223" opacity={0.5} />
|
||||
<path d="m2.943 12.057 1.571-1.571" opacity={0.38} />
|
||||
<path d="M1.056 7.5h2.222" opacity={0.25} />
|
||||
<path d="m2.943 2.943 1.571 1.571" opacity={0.13} />
|
||||
<path d="m2.943 2.943 1.571 1.571" />
|
||||
<path d="M1.055 7.5h2.223" opacity={0.88} />
|
||||
<path d="m2.943 12.057 1.571-1.572" opacity={0.75} />
|
||||
<path d="M7.5 13.945v-2.222" opacity={0.63} />
|
||||
<path d="m12.057 12.057-1.572-1.571" opacity={0.5} />
|
||||
<path d="M13.945 7.5h-2.222" opacity={0.38} />
|
||||
<path d="m12.057 2.943-1.572 1.571" opacity={0.25} />
|
||||
<path d="M7.5 1.055v2.222" opacity={0.13} />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const MarkdownSolid = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill={color}
|
||||
d="M12.708 2.5H2.292A2.294 2.294 0 0 0 0 4.792v5.416A2.294 2.294 0 0 0 2.292 12.5h10.416A2.294 2.294 0 0 0 15 10.208V4.792A2.294 2.294 0 0 0 12.708 2.5M7.917 9.375a.625.625 0 0 1-1.25 0V7.041l-.963 1.256c-.236.308-.756.308-.991 0L3.75 7.04v2.334a.625.625 0 0 1-1.25 0v-3.75c0-.345.28-.625.625-.625h.328c.195 0 .379.09.496.245l1.26 1.644 1.259-1.644A.63.63 0 0 1 6.963 5h.329c.345 0 .625.28.625.625zm5.025-1.017-1.459 1.459a.623.623 0 0 1-.883 0L9.142 8.358a.625.625 0 1 1 .884-.884l.392.392V5.625a.625.625 0 0 1 1.25 0v2.24l.391-.39a.625.625 0 1 1 .884.883z"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
MarkdownSolid.displayName = "MarkdownSolid"
|
||||
export default MarkdownSolid
|
||||
@@ -1,25 +1,40 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Mastercard = React.forwardRef<SVGSVGElement, Omit<IconProps, "color">>(
|
||||
(props, ref) => {
|
||||
const Mastercard = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
width={20}
|
||||
height={20}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path fill="#FF5A00" d="M9.524 3.815h-4.06v7.37h4.06z" />
|
||||
<path fill="#F4F4F5" d="M0 0h20v20H0z" />
|
||||
<path fill="url(#a)" fillOpacity={0.2} d="M0 0h20v20H0z" />
|
||||
<path fill="#FF5A00" d="M11.889 6.56H8.1v6.879h3.789z" />
|
||||
<path
|
||||
fill="#EB001B"
|
||||
d="M5.735 7.5c0-1.497.696-2.826 1.765-3.685a4.6 4.6 0 0 0-2.861-1.002C2.075 2.813 0 4.909 0 7.5s2.075 4.688 4.639 4.688A4.6 4.6 0 0 0 7.5 11.185 4.7 4.7 0 0 1 5.735 7.5"
|
||||
d="M8.352 10c0-1.397.65-2.638 1.648-3.44a4.28 4.28 0 0 0-2.67-.935C4.935 5.625 3 7.582 3 10s1.936 4.375 4.33 4.375c1.01 0 1.936-.352 2.67-.936A4.38 4.38 0 0 1 8.352 10"
|
||||
/>
|
||||
<path
|
||||
fill="#F79E1B"
|
||||
d="M15 7.5c0 2.591-2.075 4.688-4.639 4.688A4.6 4.6 0 0 1 7.5 11.185 4.68 4.68 0 0 0 9.265 7.5 4.72 4.72 0 0 0 7.5 3.815a4.58 4.58 0 0 1 2.86-1.002c2.565 0 4.64 2.11 4.64 4.687"
|
||||
d="M17 10c0 2.418-1.936 4.375-4.33 4.375a4.28 4.28 0 0 1-2.67-.936A4.37 4.37 0 0 0 11.648 10c0-1.397-.65-2.638-1.648-3.44a4.27 4.27 0 0 1 2.67-.935C15.063 5.625 17 7.595 17 10"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={10}
|
||||
x2={10}
|
||||
y1={0}
|
||||
y2={20}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#fff" />
|
||||
<stop offset={1} stopColor="#fff" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1,20 +1,35 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Medusa = React.forwardRef<SVGSVGElement, Omit<IconProps, "color">>(
|
||||
(props, ref) => {
|
||||
const Medusa = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
width={20}
|
||||
height={20}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path fill={color} d="M0 0h20v20H0z" />
|
||||
<path fill="url(#a)" fillOpacity={0.2} d="M0 0h20v20H0z" />
|
||||
<path
|
||||
fill="#18181B"
|
||||
d="M12.184 2.941 9.127 1.183a3.22 3.22 0 0 0-3.226 0L2.83 2.94a3.25 3.25 0 0 0-1.606 2.786V9.26c0 1.153.62 2.209 1.606 2.786l3.057 1.772c1 .577 2.226.577 3.226 0l3.057-1.772a3.2 3.2 0 0 0 1.606-2.786V5.727c.028-1.14-.592-2.209-1.592-2.786m-4.677 7.697A3.14 3.14 0 0 1 4.365 7.5a3.14 3.14 0 0 1 3.142-3.138c1.733 0 3.155 1.407 3.155 3.138a3.145 3.145 0 0 1-3.155 3.138"
|
||||
fill="#fff"
|
||||
d="m14.163 5.948-2.717-1.563a2.87 2.87 0 0 0-2.868 0l-2.73 1.563a2.89 2.89 0 0 0-1.427 2.476v3.14c0 1.025.551 1.963 1.428 2.476l2.717 1.575c.889.513 1.978.513 2.867 0l2.718-1.575a2.85 2.85 0 0 0 1.427-2.477V8.424c.025-1.013-.526-1.963-1.415-2.476m-4.157 6.841A2.793 2.793 0 0 1 7.214 10a2.793 2.793 0 0 1 2.792-2.789c1.54 0 2.805 1.25 2.805 2.789a2.796 2.796 0 0 1-2.805 2.789"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={10}
|
||||
x2={10}
|
||||
y1={0}
|
||||
y2={20}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#fff" />
|
||||
<stop offset={1} stopColor="#fff" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Meilisearch = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={20}
|
||||
height={20}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path fill="#FF4E62" d="M0 0h20v20H0z" />
|
||||
<path fill="url(#a)" fillOpacity={0.2} d="M0 0h20v20H0z" />
|
||||
<path
|
||||
fill="#fff"
|
||||
d="m3 14.082 2.587-6.619a2.43 2.43 0 0 1 2.264-1.546H9.41l-2.588 6.62a2.43 2.43 0 0 1-2.264 1.545zM6.795 14.082l2.587-6.619a2.435 2.435 0 0 1 2.267-1.546h1.558l-2.587 6.62a2.43 2.43 0 0 1-2.264 1.545H6.795M10.59 14.082l2.588-6.619a2.43 2.43 0 0 1 2.264-1.546H17l-2.587 6.62a2.43 2.43 0 0 1-2.264 1.545z"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={10}
|
||||
x2={10}
|
||||
y1={0}
|
||||
y2={20}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#fff" />
|
||||
<stop offset={1} stopColor="#fff" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Meilisearch.displayName = "Meilisearch"
|
||||
export default Meilisearch
|
||||
@@ -0,0 +1,58 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const MemberBronzeBadge = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill="#CD7F32"
|
||||
d="M15 7.5a3.06 3.06 0 0 0-1.373-2.538 3.06 3.06 0 0 0-.824-2.765 3.06 3.06 0 0 0-2.765-.824A3.06 3.06 0 0 0 7.5 0a3.06 3.06 0 0 0-2.538 1.373 3.05 3.05 0 0 0-2.765.824 3.06 3.06 0 0 0-.824 2.765A3.06 3.06 0 0 0 0 7.5c0 1.03.533 1.98 1.373 2.538a3.06 3.06 0 0 0 .824 2.765 3.06 3.06 0 0 0 2.765.824A3.06 3.06 0 0 0 7.5 15c1.03 0 1.98-.533 2.538-1.373a3.06 3.06 0 0 0 2.765-.824 3.06 3.06 0 0 0 .824-2.765A3.06 3.06 0 0 0 15 7.5"
|
||||
/>
|
||||
<path
|
||||
fill="url(#a)"
|
||||
fillOpacity={0.2}
|
||||
d="M15 7.5a3.06 3.06 0 0 0-1.373-2.538 3.06 3.06 0 0 0-.824-2.765 3.06 3.06 0 0 0-2.765-.824A3.06 3.06 0 0 0 7.5 0a3.06 3.06 0 0 0-2.538 1.373 3.05 3.05 0 0 0-2.765.824 3.06 3.06 0 0 0-.824 2.765A3.06 3.06 0 0 0 0 7.5c0 1.03.533 1.98 1.373 2.538a3.06 3.06 0 0 0 .824 2.765 3.06 3.06 0 0 0 2.765.824A3.06 3.06 0 0 0 7.5 15c1.03 0 1.98-.533 2.538-1.373a3.06 3.06 0 0 0 2.765-.824 3.06 3.06 0 0 0 .824-2.765A3.06 3.06 0 0 0 15 7.5"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeOpacity={0.24}
|
||||
strokeWidth={0.5}
|
||||
d="M7.5.25a2.81 2.81 0 0 1 2.33 1.262l.093.14.165-.034a2.81 2.81 0 0 1 2.539.755c.665.666.94 1.63.755 2.54l-.034.164.14.094A2.81 2.81 0 0 1 14.75 7.5c0 .942-.489 1.818-1.262 2.33l-.14.093.034.165a2.81 2.81 0 0 1-.755 2.539 2.81 2.81 0 0 1-2.54.755l-.164-.034-.094.14A2.81 2.81 0 0 1 7.5 14.75a2.8 2.8 0 0 1-2.33-1.262l-.092-.14-.166.034a2.81 2.81 0 0 1-2.539-.755 2.81 2.81 0 0 1-.755-2.54l.034-.164-.14-.094A2.81 2.81 0 0 1 .25 7.5c0-.943.489-1.818 1.262-2.33l.14-.093-.034-.165a2.81 2.81 0 0 1 .755-2.539 2.8 2.8 0 0 1 2.54-.755l.164.034.094-.14A2.81 2.81 0 0 1 7.5.25Z"
|
||||
/>
|
||||
<path
|
||||
fill={color}
|
||||
fillOpacity={0.24}
|
||||
d="M11.308 5.157a.44.44 0 0 0-.485-.012l-1.546.958L7.88 3.8c-.162-.267-.598-.267-.759 0L5.724 6.103l-1.546-.958a.444.444 0 0 0-.67.465l.5 2.648c.094.493.522.85 1.02.85h4.944a1.04 1.04 0 0 0 1.02-.85l.5-2.648a.45.45 0 0 0-.184-.453M10.463 9.705H4.536c-.245 0-.444.2-.444.447s.199.448.444.448h5.927c.246 0 .445-.2.445-.448 0-.247-.2-.447-.445-.447"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeOpacity={0.24}
|
||||
strokeWidth={0.571}
|
||||
d="M4.536 9.99h5.927c.086 0 .16.072.16.163a.16.16 0 0 1-.16.16H4.536a.16.16 0 0 1-.158-.16.16.16 0 0 1 .158-.162ZM7.5 3.887c.07 0 .116.03.135.062L9.033 6.25l.15.247.245-.152 1.545-.958v.001a.158.158 0 0 1 .239.168l-.5 2.65a.754.754 0 0 1-.738.616H5.027a.755.755 0 0 1-.738-.617l-.5-2.649-.003-.048a.16.16 0 0 1 .068-.117.16.16 0 0 1 .173-.004l1.546.958.245.152.15-.247 1.397-2.302c.019-.031.065-.062.135-.062Z"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={7.5}
|
||||
x2={7.5}
|
||||
y1={0}
|
||||
y2={15}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#fff" />
|
||||
<stop offset={1} stopColor="#fff" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
MemberBronzeBadge.displayName = "MemberBronzeBadge"
|
||||
export default MemberBronzeBadge
|
||||
@@ -0,0 +1,58 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const MemberGoldBadge = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill="#D4AF37"
|
||||
d="M15 7.5a3.06 3.06 0 0 0-1.373-2.538 3.06 3.06 0 0 0-.824-2.765 3.06 3.06 0 0 0-2.765-.824A3.06 3.06 0 0 0 7.5 0a3.06 3.06 0 0 0-2.538 1.373 3.05 3.05 0 0 0-2.765.824 3.06 3.06 0 0 0-.824 2.765A3.06 3.06 0 0 0 0 7.5c0 1.03.533 1.98 1.373 2.538a3.06 3.06 0 0 0 .824 2.765 3.06 3.06 0 0 0 2.765.824A3.06 3.06 0 0 0 7.5 15c1.03 0 1.98-.533 2.538-1.373a3.06 3.06 0 0 0 2.765-.824 3.06 3.06 0 0 0 .824-2.765A3.06 3.06 0 0 0 15 7.5"
|
||||
/>
|
||||
<path
|
||||
fill="url(#a)"
|
||||
fillOpacity={0.2}
|
||||
d="M15 7.5a3.06 3.06 0 0 0-1.373-2.538 3.06 3.06 0 0 0-.824-2.765 3.06 3.06 0 0 0-2.765-.824A3.06 3.06 0 0 0 7.5 0a3.06 3.06 0 0 0-2.538 1.373 3.05 3.05 0 0 0-2.765.824 3.06 3.06 0 0 0-.824 2.765A3.06 3.06 0 0 0 0 7.5c0 1.03.533 1.98 1.373 2.538a3.06 3.06 0 0 0 .824 2.765 3.06 3.06 0 0 0 2.765.824A3.06 3.06 0 0 0 7.5 15c1.03 0 1.98-.533 2.538-1.373a3.06 3.06 0 0 0 2.765-.824 3.06 3.06 0 0 0 .824-2.765A3.06 3.06 0 0 0 15 7.5"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeOpacity={0.24}
|
||||
strokeWidth={0.5}
|
||||
d="M7.5.25a2.81 2.81 0 0 1 2.33 1.262l.093.14.165-.034a2.81 2.81 0 0 1 2.539.755c.665.666.94 1.63.755 2.54l-.034.164.14.094A2.81 2.81 0 0 1 14.75 7.5c0 .942-.489 1.818-1.262 2.33l-.14.093.034.165a2.81 2.81 0 0 1-.755 2.539 2.81 2.81 0 0 1-2.54.755l-.164-.034-.094.14A2.81 2.81 0 0 1 7.5 14.75a2.8 2.8 0 0 1-2.33-1.262l-.092-.14-.166.034a2.81 2.81 0 0 1-2.539-.755 2.81 2.81 0 0 1-.755-2.54l.034-.164-.14-.094A2.81 2.81 0 0 1 .25 7.5c0-.943.489-1.818 1.262-2.33l.14-.093-.034-.165a2.81 2.81 0 0 1 .755-2.539 2.8 2.8 0 0 1 2.54-.755l.164.034.094-.14A2.81 2.81 0 0 1 7.5.25Z"
|
||||
/>
|
||||
<path
|
||||
fill={color}
|
||||
fillOpacity={0.24}
|
||||
d="M11.308 5.157a.44.44 0 0 0-.485-.012l-1.546.958L7.88 3.8c-.162-.267-.598-.267-.759 0L5.724 6.103l-1.546-.958a.444.444 0 0 0-.67.465l.5 2.648c.094.493.522.85 1.02.85h4.944a1.04 1.04 0 0 0 1.02-.85l.5-2.648a.45.45 0 0 0-.184-.453M10.463 9.705H4.536c-.245 0-.444.2-.444.447s.199.448.444.448h5.927c.246 0 .445-.2.445-.448 0-.247-.2-.447-.445-.447"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeOpacity={0.24}
|
||||
strokeWidth={0.571}
|
||||
d="M4.536 9.99h5.927c.086 0 .16.072.16.163a.16.16 0 0 1-.16.16H4.536a.16.16 0 0 1-.158-.16.16.16 0 0 1 .158-.162ZM7.5 3.887c.07 0 .116.03.135.062L9.033 6.25l.15.247.245-.152 1.545-.958v.001a.158.158 0 0 1 .239.168l-.5 2.65a.754.754 0 0 1-.738.616H5.027a.755.755 0 0 1-.738-.617l-.5-2.649-.003-.048a.16.16 0 0 1 .068-.117.16.16 0 0 1 .173-.004l1.546.958.245.152.15-.247 1.397-2.302c.019-.031.065-.062.135-.062Z"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={7.5}
|
||||
x2={7.5}
|
||||
y1={0}
|
||||
y2={15}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#fff" />
|
||||
<stop offset={1} stopColor="#fff" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
MemberGoldBadge.displayName = "MemberGoldBadge"
|
||||
export default MemberGoldBadge
|
||||
@@ -0,0 +1,58 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const MemberSilverBadge = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
fill="silver"
|
||||
d="M15 7.5a3.06 3.06 0 0 0-1.373-2.538 3.06 3.06 0 0 0-.824-2.765 3.06 3.06 0 0 0-2.765-.824A3.06 3.06 0 0 0 7.5 0a3.06 3.06 0 0 0-2.538 1.373 3.05 3.05 0 0 0-2.765.824 3.06 3.06 0 0 0-.824 2.765A3.06 3.06 0 0 0 0 7.5c0 1.03.533 1.98 1.373 2.538a3.06 3.06 0 0 0 .824 2.765 3.06 3.06 0 0 0 2.765.824A3.06 3.06 0 0 0 7.5 15c1.03 0 1.98-.533 2.538-1.373a3.06 3.06 0 0 0 2.765-.824 3.06 3.06 0 0 0 .824-2.765A3.06 3.06 0 0 0 15 7.5"
|
||||
/>
|
||||
<path
|
||||
fill="url(#a)"
|
||||
fillOpacity={0.2}
|
||||
d="M15 7.5a3.06 3.06 0 0 0-1.373-2.538 3.06 3.06 0 0 0-.824-2.765 3.06 3.06 0 0 0-2.765-.824A3.06 3.06 0 0 0 7.5 0a3.06 3.06 0 0 0-2.538 1.373 3.05 3.05 0 0 0-2.765.824 3.06 3.06 0 0 0-.824 2.765A3.06 3.06 0 0 0 0 7.5c0 1.03.533 1.98 1.373 2.538a3.06 3.06 0 0 0 .824 2.765 3.06 3.06 0 0 0 2.765.824A3.06 3.06 0 0 0 7.5 15c1.03 0 1.98-.533 2.538-1.373a3.06 3.06 0 0 0 2.765-.824 3.06 3.06 0 0 0 .824-2.765A3.06 3.06 0 0 0 15 7.5"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeOpacity={0.24}
|
||||
strokeWidth={0.5}
|
||||
d="M7.5.25a2.81 2.81 0 0 1 2.33 1.262l.093.14.165-.034a2.81 2.81 0 0 1 2.539.755c.665.666.94 1.63.755 2.54l-.034.164.14.094A2.81 2.81 0 0 1 14.75 7.5c0 .942-.489 1.818-1.262 2.33l-.14.093.034.165a2.81 2.81 0 0 1-.755 2.539 2.81 2.81 0 0 1-2.54.755l-.164-.034-.094.14A2.81 2.81 0 0 1 7.5 14.75a2.8 2.8 0 0 1-2.33-1.262l-.092-.14-.166.034a2.81 2.81 0 0 1-2.539-.755 2.81 2.81 0 0 1-.755-2.54l.034-.164-.14-.094A2.81 2.81 0 0 1 .25 7.5c0-.943.489-1.818 1.262-2.33l.14-.093-.034-.165a2.81 2.81 0 0 1 .755-2.539 2.8 2.8 0 0 1 2.54-.755l.164.034.094-.14A2.81 2.81 0 0 1 7.5.25Z"
|
||||
/>
|
||||
<path
|
||||
fill={color}
|
||||
fillOpacity={0.24}
|
||||
d="M11.308 5.157a.44.44 0 0 0-.485-.012l-1.546.958L7.88 3.8c-.162-.267-.598-.267-.759 0L5.724 6.103l-1.546-.958a.444.444 0 0 0-.67.465l.5 2.648c.094.493.522.85 1.02.85h4.944a1.04 1.04 0 0 0 1.02-.85l.5-2.648a.45.45 0 0 0-.184-.453M10.463 9.705H4.536c-.245 0-.444.2-.444.447s.199.448.444.448h5.927c.246 0 .445-.2.445-.448 0-.247-.2-.447-.445-.447"
|
||||
/>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeOpacity={0.24}
|
||||
strokeWidth={0.571}
|
||||
d="M4.536 9.99h5.927c.086 0 .16.072.16.163a.16.16 0 0 1-.16.16H4.536a.16.16 0 0 1-.158-.16.16.16 0 0 1 .158-.162ZM7.5 3.887c.07 0 .116.03.135.062L9.033 6.25l.15.247.245-.152 1.545-.958v.001a.158.158 0 0 1 .239.168l-.5 2.65a.754.754 0 0 1-.738.616H5.027a.755.755 0 0 1-.738-.617l-.5-2.649-.003-.048a.16.16 0 0 1 .068-.117.16.16 0 0 1 .173-.004l1.546.958.245.152.15-.247 1.397-2.302c.019-.031.065-.062.135-.062Z"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={7.5}
|
||||
x2={7.5}
|
||||
y1={0}
|
||||
y2={15}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopOpacity={0} />
|
||||
<stop offset={1} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
MemberSilverBadge.displayName = "MemberSilverBadge"
|
||||
export default MemberSilverBadge
|
||||
@@ -0,0 +1,46 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const MinusBadge = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<circle cx={7.5} cy={7.5} r={7.5} fill="#E11D48" />
|
||||
<circle cx={7.5} cy={7.5} r={7.5} fill="url(#a)" fillOpacity={0.2} />
|
||||
<circle
|
||||
cx={7.5}
|
||||
cy={7.5}
|
||||
r={7.25}
|
||||
stroke={color}
|
||||
strokeOpacity={0.24}
|
||||
strokeWidth={0.5}
|
||||
/>
|
||||
<path
|
||||
fill="#fff"
|
||||
d="M10.547 8.25H4.453c-.388 0-.703-.336-.703-.75s.315-.75.703-.75h6.094c.388 0 .703.336.703.75s-.315.75-.703.75"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={7.5}
|
||||
x2={7.5}
|
||||
y1={0}
|
||||
y2={15}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#fff" />
|
||||
<stop offset={1} stopColor="#fff" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
MinusBadge.displayName = "MinusBadge"
|
||||
export default MinusBadge
|
||||
@@ -0,0 +1,26 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Pause = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
stroke={color}
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={1.5}
|
||||
d="M4.167 1.944H2.833a.89.89 0 0 0-.889.89v9.333c0 .49.398.888.89.888h1.333c.49 0 .889-.397.889-.888V2.833a.89.89 0 0 0-.89-.889M12.167 1.944h-1.334a.89.89 0 0 0-.889.89v9.333c0 .49.398.888.89.888h1.333c.49 0 .889-.397.889-.888V2.833a.89.89 0 0 0-.89-.889"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Pause.displayName = "Pause"
|
||||
export default Pause
|
||||
@@ -0,0 +1,46 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Paypal = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={20}
|
||||
height={20}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path fill="#F4F4F5" d="M0 0h20v20H0z" />
|
||||
<path fill="url(#a)" fillOpacity={0.2} d="M0 0h20v20H0z" />
|
||||
<path
|
||||
fill="#002991"
|
||||
d="M13.516 6.76c0 1.486-1.372 3.24-3.448 3.24H8.07l-.098.62-.466 2.98H5.02L6.515 4h4.025c1.356 0 2.422.755 2.815 1.805.113.306.168.63.16.955"
|
||||
/>
|
||||
<path
|
||||
fill="#60CDFF"
|
||||
d="M14.948 9.52a3.44 3.44 0 0 1-3.402 2.88h-1.388L9.58 16H7.11l.395-2.4.466-2.98.098-.62h2c2.072 0 3.446-1.753 3.446-3.24 1.02.527 1.615 1.59 1.432 2.76"
|
||||
/>
|
||||
<path
|
||||
fill="#008CFF"
|
||||
d="M13.515 6.76a3.3 3.3 0 0 0-1.51-.36H8.633L8.069 10h1.999c2.073 0 3.447-1.754 3.447-3.24"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={10}
|
||||
x2={10}
|
||||
y1={0}
|
||||
y2={20}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#fff" />
|
||||
<stop offset={1} stopColor="#fff" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Paypal.displayName = "Paypal"
|
||||
export default Paypal
|
||||
@@ -0,0 +1,41 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Payphone = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={20}
|
||||
height={20}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path fill="#FF6E00" d="M0 0h20v20H0z" />
|
||||
<path fill="url(#a)" fillOpacity={0.2} d="M0 0h20v20H0z" />
|
||||
<path
|
||||
fill="#fff"
|
||||
stroke="#fff"
|
||||
strokeLinejoin="round"
|
||||
strokeWidth={0.035}
|
||||
d="M4.47 10.449c.903.71 2.069 1.099 3.283 1.099a1.25 1.25 0 0 0-.984-1.215 4.16 4.16 0 0 1-1.62-.752c-.577-.455-.931-1.015-1.025-1.614a.146.146 0 0 1 .168-.168c.482.077 1.389.172 3.51.172 1.057.007 1.239.35 1.582 1.21l.024.064c-.3.805-.871 2.474-1.067 3.99.36.049.728.08 1.099.105.105-.802.329-1.666.56-2.405.227.739.459 1.617.563 2.426.371-.007.736-.032 1.103-.067-.189-1.53-.77-3.237-1.075-4.046.018-.042.025-.066.029-.066.339-.854.521-1.197 1.575-1.204 2.159 0 3.062-.095 3.538-.179a.125.125 0 0 1 .143.144c-.087.605-.447 1.18-1.028 1.638a4.1 4.1 0 0 1-1.621.752c-.574.13-.984.627-.984 1.215 1.215 0 2.38-.389 3.284-1.1C16.479 9.704 17 8.707 17 7.646v-.147a1 1 0 0 0-.021-.182c-.105-.48-.62-.766-1.18-.65-.332.066-1.025.206-3.611.206-1.219.007-1.8.427-2.188 1.05-.389-.627-.976-1.043-2.191-1.05-2.583 0-3.276-.14-3.609-.207-.556-.112-1.074.175-1.179.655A.8.8 0 0 0 3 7.502v.147c0 1.06.525 2.054 1.473 2.803z"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={10}
|
||||
x2={10}
|
||||
y1={0}
|
||||
y2={20}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#fff" />
|
||||
<stop offset={1} stopColor="#fff" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Payphone.displayName = "Payphone"
|
||||
export default Payphone
|
||||
@@ -0,0 +1,27 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Progress0 = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<g clipPath="url(#a)">
|
||||
<circle cx={7.5} cy={7.5} r={6.36} stroke={color} strokeWidth={1.5} />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h15v15H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Progress0.displayName = "Progress0"
|
||||
export default Progress0
|
||||
@@ -0,0 +1,31 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Progress100 = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<g clipPath="url(#a)">
|
||||
<circle cx={7.5} cy={7.5} r={6.36} stroke={color} strokeWidth={1.5} />
|
||||
<path
|
||||
fill={color}
|
||||
d="M11.61 7.5a4.11 4.11 0 1 1-8.22 0 4.11 4.11 0 0 1 8.22 0m-5.754 0a1.644 1.644 0 1 0 3.288 0 1.644 1.644 0 0 0-3.288 0"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h15v15H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Progress100.displayName = "Progress100"
|
||||
export default Progress100
|
||||
@@ -0,0 +1,31 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Progress15 = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<g clipPath="url(#a)">
|
||||
<circle cx={7.5} cy={7.5} r={6.36} stroke={color} strokeWidth={1.5} />
|
||||
<path
|
||||
fill={color}
|
||||
d="M7.5 3.39a4.11 4.11 0 0 1 3.325 1.694L8.83 6.534a1.64 1.64 0 0 0-1.33-.678z"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h15v15H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Progress15.displayName = "Progress15"
|
||||
export default Progress15
|
||||
@@ -0,0 +1,31 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Progress30 = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<g clipPath="url(#a)">
|
||||
<circle cx={7.5} cy={7.5} r={6.36} stroke={color} strokeWidth={1.5} />
|
||||
<path
|
||||
fill={color}
|
||||
d="M7.5 3.39a4.11 4.11 0 0 1 3.909 5.38l-2.346-.762A1.644 1.644 0 0 0 7.5 5.856z"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h15v15H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Progress30.displayName = "Progress30"
|
||||
export default Progress30
|
||||
@@ -0,0 +1,31 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Progress45 = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<g clipPath="url(#a)">
|
||||
<circle cx={7.5} cy={7.5} r={6.36} stroke={color} strokeWidth={1.5} />
|
||||
<path
|
||||
fill={color}
|
||||
d="M7.5 3.39a4.11 4.11 0 0 1 1.27 8.019l-.762-2.345A1.644 1.644 0 0 0 7.5 5.856z"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h15v15H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Progress45.displayName = "Progress45"
|
||||
export default Progress45
|
||||
@@ -0,0 +1,31 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Progress60 = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<g clipPath="url(#a)">
|
||||
<circle cx={7.5} cy={7.5} r={6.36} stroke={color} strokeWidth={1.5} />
|
||||
<path
|
||||
fill={color}
|
||||
d="M7.5 3.39a4.11 4.11 0 1 1-2.416 7.435l1.45-1.995A1.644 1.644 0 1 0 7.5 5.856z"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h15v15H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Progress60.displayName = "Progress60"
|
||||
export default Progress60
|
||||
@@ -0,0 +1,31 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Progress75 = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<g clipPath="url(#a)">
|
||||
<circle cx={7.5} cy={7.5} r={6.36} stroke={color} strokeWidth={1.5} />
|
||||
<path
|
||||
fill={color}
|
||||
d="M7.5 3.39A4.11 4.11 0 1 1 3.39 7.5h2.466A1.644 1.644 0 1 0 7.5 5.856z"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h15v15H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Progress75.displayName = "Progress75"
|
||||
export default Progress75
|
||||
@@ -0,0 +1,31 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Progress90 = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={15}
|
||||
height={15}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<g clipPath="url(#a)">
|
||||
<circle cx={7.5} cy={7.5} r={6.36} stroke={color} strokeWidth={1.5} />
|
||||
<path
|
||||
fill={color}
|
||||
d="M7.5 3.39a4.11 4.11 0 1 1-2.416.785l1.45 1.995a1.644 1.644 0 1 0 .966-.314z"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="a">
|
||||
<path fill="#fff" d="M0 0h15v15H0z" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Progress90.displayName = "Progress90"
|
||||
export default Progress90
|
||||
@@ -0,0 +1,38 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Resend = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={20}
|
||||
height={20}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path fill="#0F0F0F" d="M0 0h20v20H0z" />
|
||||
<path fill="url(#a)" fillOpacity={0.2} d="M0 0h20v20H0z" />
|
||||
<path
|
||||
fill="#fff"
|
||||
d="m15.172 15.8-2.687-4.657c.12-.06.18-.06.299-.12.597-.357 1.074-.775 1.432-1.372a3.76 3.76 0 0 0 .538-1.97q0-1.076-.538-1.97c-.358-.598-.835-1.016-1.432-1.374S11.53 3.8 10.754 3.8H5.5v11.94h2.448v-4.298h1.91l2.388 4.298zM7.948 6.068h2.388c.358 0 .716.06 1.015.24.298.119.477.357.656.596.06.24.18.538.18.836q0 .448-.18.896c-.119.238-.298.477-.537.597-.239.119-.478.179-.776.179H7.948z"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={10}
|
||||
x2={10}
|
||||
y1={0}
|
||||
y2={20}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#fff" />
|
||||
<stop offset={1} stopColor="#fff" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Resend.displayName = "Resend"
|
||||
export default Resend
|
||||
@@ -0,0 +1,40 @@
|
||||
import * as React from "react"
|
||||
import type { IconProps } from "../types"
|
||||
const Shippo = React.forwardRef<SVGSVGElement, IconProps>(
|
||||
({ color = "currentColor", ...props }, ref) => {
|
||||
return (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={20}
|
||||
height={20}
|
||||
fill="none"
|
||||
ref={ref}
|
||||
{...props}
|
||||
>
|
||||
<path fill="#1B1D1D" d="M0 0h20v20H0z" />
|
||||
<path fill="url(#a)" fillOpacity={0.2} d="M0 0h20v20H0z" />
|
||||
<path
|
||||
fill="#fff"
|
||||
fillRule="evenodd"
|
||||
d="M15.087 6.808c.324.26.573.599.729.99.141.345.204.724.178 1.1a2.22 2.22 0 0 1-1.108 1.762q-.266.14-.55.252a7 7 0 0 0-.513.25c-.39.204-.762.43-1.134.665-.405.256-.799.524-1.193.806-.286.201-1.26 1.673-1.747 2.42 2.223-.096 4.104-1.728 4.58-3.97l.063-.03q.05-.022.104-.044.016-.008.034-.015.217-.084.423-.2.045-.03.09-.056c-.335 2.665-2.42 4.732-5.012 4.97-2.59.238-4.996-1.42-5.777-3.985-.777-2.565.272-5.346 2.525-6.688 2.256-1.342 5.111-.885 6.866 1.1h-.067q-.223-.001-.439.038a3 3 0 0 0-.308.07c-1.428-1.327-3.465-1.673-5.223-.885-1.759.785-2.911 2.558-2.952 4.536.58-.19 1.587-.532 1.702-.658.25-.264.499-.532.733-.81a3 3 0 0 0 .197-.257.5.5 0 0 0 .044-.097q.058-.15.153-.271a1.5 1.5 0 0 1-.078-.253.8.8 0 0 1-.067-.2 2 2 0 0 1-.045-.547c.011-.149.056-.376.242-.376a.36.36 0 0 1 .17.078c.19.127.365.28.525.446h.019l.598-.07q.374-.056.747-.041.163.016.32.07a2.89 2.89 0 0 0 .97.164 2.33 2.33 0 0 0 1.179-.35l.141-.062q.106-.05.208-.093a3 3 0 0 1 .744-.235q.373-.06.747-.01c.428.059.833.23 1.175.497zM9.801 8.541a.5.5 0 0 0 .569-.023c.16-.126.219-.35.148-.542a.51.51 0 0 0-.468-.339.48.48 0 0 0-.446.279l.011-.037s-.011.03-.026.063c0-.007.007-.019.011-.026 0 .011-.007.022-.011.037-.04.12-.022.07 0 .015 0 0-.015.041-.019.063a.5.5 0 0 0 .227.513z"
|
||||
clipRule="evenodd"
|
||||
/>
|
||||
<defs>
|
||||
<linearGradient
|
||||
id="a"
|
||||
x1={10}
|
||||
x2={10}
|
||||
y1={0}
|
||||
y2={20}
|
||||
gradientUnits="userSpaceOnUse"
|
||||
>
|
||||
<stop stopColor="#fff" />
|
||||
<stop offset={1} stopColor="#fff" stopOpacity={0} />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
)
|
||||
Shippo.displayName = "Shippo"
|
||||
export default Shippo
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user