chore: sync Figma resources (#14297)

* chore: sync icons

* chore: changesets

* fix: linear component
This commit is contained in:
Frane Polić
2025-12-12 17:27:02 +01:00
committed by GitHub
parent 15dbc43879
commit a43eb11d65
181 changed files with 3838 additions and 143 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@medusajs/icons": patch
---
chore(icons): sync new icons
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"
import ArrowTurnUp from "../arrow-turn-up"
describe("ArrowTurnUp", () => {
it("should render the icon without errors", async () => {
render(<ArrowTurnUp data-testid="icon" />)
const svgElement = screen.getByTestId("icon")
expect(svgElement).toBeInTheDocument()
cleanup()
})
})
@@ -1,11 +1,11 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"
import CircleMinus from "../circle-minus"
import Astro from "../astro"
describe("CircleMinus", () => {
describe("Astro", () => {
it("should render the icon without errors", async () => {
render(<CircleMinus data-testid="icon" />)
render(<Astro data-testid="icon" />)
const svgElement = screen.getByTestId("icon")
@@ -0,0 +1,17 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"
import BloomBadge from "../bloom-badge"
describe("BloomBadge", () => {
it("should render the icon without errors", async () => {
render(<BloomBadge 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 Bloom from "../bloom"
describe("Bloom", () => {
it("should render the icon without errors", async () => {
render(<Bloom 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 ChartActivity from "../chart-activity"
describe("ChartActivity", () => {
it("should render the icon without errors", async () => {
render(<ChartActivity 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 CircleCheckSolid from "../circle-check-solid"
describe("CircleCheckSolid", () => {
it("should render the icon without errors", async () => {
render(<CircleCheckSolid 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 CircleInfoSolid from "../circle-info-solid"
describe("CircleInfoSolid", () => {
it("should render the icon without errors", async () => {
render(<CircleInfoSolid 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 CircleMinusSolid from "../circle-minus-solid"
describe("CircleMinusSolid", () => {
it("should render the icon without errors", async () => {
render(<CircleMinusSolid 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 CircleWarningSolid from "../circle-warning-solid"
describe("CircleWarningSolid", () => {
it("should render the icon without errors", async () => {
render(<CircleWarningSolid 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 CircleXmarkSolid from "../circle-xmark-solid"
describe("CircleXmarkSolid", () => {
it("should render the icon without errors", async () => {
render(<CircleXmarkSolid 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 CodeBranch from "../code-branch"
describe("CodeBranch", () => {
it("should render the icon without errors", async () => {
render(<CodeBranch 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 CodeCompare from "../code-compare"
describe("CodeCompare", () => {
it("should render the icon without errors", async () => {
render(<CodeCompare 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 CodeEditor from "../code-editor"
describe("CodeEditor", () => {
it("should render the icon without errors", async () => {
render(<CodeEditor 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 Code from "../code"
describe("Code", () => {
it("should render the icon without errors", async () => {
render(<Code 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 Collapse from "../collapse"
describe("Collapse", () => {
it("should render the icon without errors", async () => {
render(<Collapse 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 Contentful from "../contentful"
describe("Contentful", () => {
it("should render the icon without errors", async () => {
render(<Contentful 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 CreditCardRefresh from "../credit-card-refresh"
describe("CreditCardRefresh", () => {
it("should render the icon without errors", async () => {
render(<CreditCardRefresh 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 CursorDefaultSolid from "../cursor-default-solid"
describe("CursorDefaultSolid", () => {
it("should render the icon without errors", async () => {
render(<CursorDefaultSolid 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 CursorDefault from "../cursor-default"
describe("CursorDefault", () => {
it("should render the icon without errors", async () => {
render(<CursorDefault 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 EnvelopeContent from "../envelope-content"
describe("EnvelopeContent", () => {
it("should render the icon without errors", async () => {
render(<EnvelopeContent 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 Equals from "../equals"
describe("Equals", () => {
it("should render the icon without errors", async () => {
render(<Equals 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 FaceDisappointed from "../face-disappointed"
describe("FaceDisappointed", () => {
it("should render the icon without errors", async () => {
render(<FaceDisappointed 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 FilePlus from "../file-plus"
describe("FilePlus", () => {
it("should render the icon without errors", async () => {
render(<FilePlus 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 File from "../file"
describe("File", () => {
it("should render the icon without errors", async () => {
render(<File 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 FloppyDisk from "../floppy-disk"
describe("FloppyDisk", () => {
it("should render the icon without errors", async () => {
render(<FloppyDisk 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 Focus from "../focus"
describe("Focus", () => {
it("should render the icon without errors", async () => {
render(<Focus 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 Gap from "../gap"
describe("Gap", () => {
it("should render the icon without errors", async () => {
render(<Gap 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 Globe from "../globe"
describe("Globe", () => {
it("should render the icon without errors", async () => {
render(<Globe 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 GridLayout from "../grid-layout"
describe("GridLayout", () => {
it("should render the icon without errors", async () => {
render(<GridLayout 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 ImageSparkle from "../image-sparkle"
describe("ImageSparkle", () => {
it("should render the icon without errors", async () => {
render(<ImageSparkle 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 Image from "../image"
describe("Image", () => {
it("should render the icon without errors", async () => {
render(<Image 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 Images from "../images"
describe("Images", () => {
it("should render the icon without errors", async () => {
render(<Images 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 Language from "../language"
describe("Language", () => {
it("should render the icon without errors", async () => {
render(<Language 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 LaptopMobile from "../laptop-mobile"
describe("LaptopMobile", () => {
it("should render the icon without errors", async () => {
render(<LaptopMobile 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 Layers3 from "../layers-3"
describe("Layers3", () => {
it("should render the icon without errors", async () => {
render(<Layers3 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 LayoutBottom from "../layout-bottom"
describe("LayoutBottom", () => {
it("should render the icon without errors", async () => {
render(<LayoutBottom 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 LayoutLeftRight from "../layout-left-right"
describe("LayoutLeftRight", () => {
it("should render the icon without errors", async () => {
render(<LayoutLeftRight 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 LayoutLeft from "../layout-left"
describe("LayoutLeft", () => {
it("should render the icon without errors", async () => {
render(<LayoutLeft 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 LayoutRight from "../layout-right"
describe("LayoutRight", () => {
it("should render the icon without errors", async () => {
render(<LayoutRight 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 LayoutTopBottom from "../layout-top-bottom"
describe("LayoutTopBottom", () => {
it("should render the icon without errors", async () => {
render(<LayoutTopBottom 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 LayoutTop from "../layout-top"
describe("LayoutTop", () => {
it("should render the icon without errors", async () => {
render(<LayoutTop 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 Mailbox from "../mailbox"
describe("Mailbox", () => {
it("should render the icon without errors", async () => {
render(<Mailbox 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 MarginBottom from "../margin-bottom"
describe("MarginBottom", () => {
it("should render the icon without errors", async () => {
render(<MarginBottom 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 MarginLeftRight from "../margin-left-right"
describe("MarginLeftRight", () => {
it("should render the icon without errors", async () => {
render(<MarginLeftRight 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 MarginLeft from "../margin-left"
describe("MarginLeft", () => {
it("should render the icon without errors", async () => {
render(<MarginLeft 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 MarginRight from "../margin-right"
describe("MarginRight", () => {
it("should render the icon without errors", async () => {
render(<MarginRight 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 MarginTopBottom from "../margin-top-bottom"
describe("MarginTopBottom", () => {
it("should render the icon without errors", async () => {
render(<MarginTopBottom 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 MarginTop from "../margin-top"
describe("MarginTop", () => {
it("should render the icon without errors", async () => {
render(<MarginTop 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 MediaStopSolid from "../media-stop-solid"
describe("MediaStopSolid", () => {
it("should render the icon without errors", async () => {
render(<MediaStopSolid 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 MessagePlus from "../message-plus"
describe("MessagePlus", () => {
it("should render the icon without errors", async () => {
render(<MessagePlus 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 Microchip from "../microchip"
describe("Microchip", () => {
it("should render the icon without errors", async () => {
render(<Microchip 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 MinusCircle from "../minus-circle"
describe("MinusCircle", () => {
it("should render the icon without errors", async () => {
render(<MinusCircle 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 Palette from "../palette"
describe("Palette", () => {
it("should render the icon without errors", async () => {
render(<Palette 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 PaperPlane from "../paper-plane"
describe("PaperPlane", () => {
it("should render the icon without errors", async () => {
render(<PaperPlane 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 PinTackSolid from "../pin-tack-solid"
describe("PinTackSolid", () => {
it("should render the icon without errors", async () => {
render(<PinTackSolid 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 PinTack from "../pin-tack"
describe("PinTack", () => {
it("should render the icon without errors", async () => {
render(<PinTack 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 Plug from "../plug"
describe("Plug", () => {
it("should render the icon without errors", async () => {
render(<Plug 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 PointerCircleSolid from "../pointer-circle-solid"
describe("PointerCircleSolid", () => {
it("should render the icon without errors", async () => {
render(<PointerCircleSolid 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 Pointer from "../pointer"
describe("Pointer", () => {
it("should render the icon without errors", async () => {
render(<Pointer 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 QueueSolid from "../queue-solid"
describe("QueueSolid", () => {
it("should render the icon without errors", async () => {
render(<QueueSolid 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 Rename from "../rename"
describe("Rename", () => {
it("should render the icon without errors", async () => {
render(<Rename 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 Robot from "../robot"
describe("Robot", () => {
it("should render the icon without errors", async () => {
render(<Robot 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 Sap from "../sap"
describe("Sap", () => {
it("should render the icon without errors", async () => {
render(<Sap 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 ScanText from "../scan-text"
describe("ScanText", () => {
it("should render the icon without errors", async () => {
render(<ScanText 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 Scan from "../scan"
describe("Scan", () => {
it("should render the icon without errors", async () => {
render(<Scan 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 SquareDashedCursor from "../square-dashed-cursor"
describe("SquareDashedCursor", () => {
it("should render the icon without errors", async () => {
render(<SquareDashedCursor 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 StopCircleSolid from "../stop-circle-solid"
describe("StopCircleSolid", () => {
it("should render the icon without errors", async () => {
render(<StopCircleSolid 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 Svelte from "../svelte"
describe("Svelte", () => {
it("should render the icon without errors", async () => {
render(<Svelte 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 TablePen from "../table-pen"
describe("TablePen", () => {
it("should render the icon without errors", async () => {
render(<TablePen 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 Tablet from "../tablet"
describe("Tablet", () => {
it("should render the icon without errors", async () => {
render(<Tablet 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 Tanstack from "../tanstack"
describe("Tanstack", () => {
it("should render the icon without errors", async () => {
render(<Tanstack 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 TelescopeSolid from "../telescope-solid"
describe("TelescopeSolid", () => {
it("should render the icon without errors", async () => {
render(<TelescopeSolid 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 Telescope from "../telescope"
describe("Telescope", () => {
it("should render the icon without errors", async () => {
render(<Telescope 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 Typography from "../typography"
describe("Typography", () => {
it("should render the icon without errors", async () => {
render(<Typography 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 Unfold from "../unfold"
describe("Unfold", () => {
it("should render the icon without errors", async () => {
render(<Unfold 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 Variable from "../variable"
describe("Variable", () => {
it("should render the icon without errors", async () => {
render(<Variable 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 Vite from "../vite"
describe("Vite", () => {
it("should render the icon without errors", async () => {
render(<Vite 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 Wrench from "../wrench"
describe("Wrench", () => {
it("should render the icon without errors", async () => {
render(<Wrench data-testid="icon" />)
const svgElement = screen.getByTestId("icon")
expect(svgElement).toBeInTheDocument()
cleanup()
})
})
@@ -11,10 +11,21 @@ const ArrowDownCircle = React.forwardRef<SVGSVGElement, IconProps>(
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.693 8.249L7.971 10.86a.665.665 0 0 1-.942 0L4.807 8.638a.667.667 0 1 1 .943-.943l1.084 1.084V4.611a.667.667 0 0 1 1.334 0V8.78l1.084-1.084a.667.667 0 1 1 .943.943z"
/>
<g
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
clipPath="url(#a)"
>
<path d="M9.722 8.167 7.5 10.389 5.278 8.167M7.5 10.389V4.61" />
<path d="M7.5 13.945a6.444 6.444 0 1 0 0-12.89 6.444 6.444 0 0 0 0 12.89" />
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h15v15H0z" />
</clipPath>
</defs>
</svg>
)
}
@@ -0,0 +1,33 @@
import * as React from "react"
import type { IconProps } from "../types"
const ArrowTurnUp = 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="M8.167 1.944v9.334c0 .982-.796 1.777-1.778 1.777H2.833"
/>
<path
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="m4.389 5.722 3.778-3.778 3.778 3.778"
/>
</svg>
)
}
)
ArrowTurnUp.displayName = "ArrowTurnUp"
export default ArrowTurnUp
@@ -0,0 +1,55 @@
import * as React from "react"
import type { IconProps } from "../types"
const Astro = 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}
>
<path
fill="url(#a)"
d="M9.497 1.088c.11.137.167.322.28.691l2.456 8.07a10.2 10.2 0 0 0-2.937-.994l-1.6-5.405a.208.208 0 0 0-.399 0l-1.58 5.403c-1.029.179-2.024.515-2.95.995l2.468-8.07c.113-.37.17-.554.28-.69a.9.9 0 0 1 .368-.273C6.045.75 6.238.75 6.624.75h1.763c.386 0 .58 0 .743.066.144.058.27.151.367.272"
/>
<path
fill="#FF5D01"
d="M9.791 10.234c-.405.346-1.213.582-2.144.582-1.143 0-2.1-.355-2.355-.834-.09.274-.111.588-.111.789 0 0-.06.984.625 1.669a.644.644 0 0 1 .643-.644c.61 0 .61.532.609.963v.038c0 .655.4 1.217.97 1.453a1.3 1.3 0 0 1-.134-.578c0-.625.367-.857.793-1.128.339-.215.716-.453.975-.932a1.76 1.76 0 0 0 .13-1.378"
/>
<path
fill="url(#b)"
d="M9.791 10.234c-.405.346-1.213.582-2.144.582-1.143 0-2.1-.355-2.355-.834-.09.274-.111.588-.111.789 0 0-.06.984.625 1.669a.644.644 0 0 1 .643-.644c.61 0 .61.532.609.963v.038c0 .655.4 1.217.97 1.453a1.3 1.3 0 0 1-.134-.578c0-.625.367-.857.793-1.128.339-.215.716-.453.975-.932a1.76 1.76 0 0 0 .13-1.378"
/>
<defs>
<linearGradient
id="a"
x1={10.268}
x2={7.5}
y1={0.322}
y2={9.85}
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#000014" />
<stop offset={1} stopColor="#150426" />
</linearGradient>
<linearGradient
id="b"
x1={11.615}
x2={9.217}
y1={7.417}
y2={12.437}
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#FF1639" />
<stop offset={1} stopColor="#FF1639" stopOpacity={0} />
</linearGradient>
</defs>
</svg>
)
}
)
Astro.displayName = "Astro"
export default Astro
@@ -0,0 +1,48 @@
import * as React from "react"
import type { IconProps } from "../types"
const BloomBadge = 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="#8B5CF6" />
<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"
fillRule="evenodd"
d="M7.5 2.5c.63 0 1.156.564 1.444 1.513.877-.468 1.646-.494 2.092-.048.446.445.418 1.216-.049 2.09.949.289 1.513.814 1.513 1.445 0 .63-.564 1.156-1.513 1.444.467.875.493 1.647.048 2.092s-1.216.419-2.09-.049C8.655 11.936 8.13 12.5 7.5 12.5c-.63 0-1.156-.564-1.444-1.513-.877.467-1.647.493-2.092.048-.446-.446-.418-1.216.049-2.09C3.064 8.655 2.5 8.13 2.5 7.5c0-.63.564-1.156 1.513-1.444-.467-.875-.493-1.647-.048-2.092s1.216-.419 2.09.049C6.345 3.064 6.87 2.5 7.5 2.5m1.563 3.75a.937.937 0 1 0 0 1.875.937.937 0 0 0 0-1.875M6.25 5.625a.937.937 0 1 0 0 1.875.937.937 0 0 0 0-1.875"
clipRule="evenodd"
/>
<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>
)
}
)
BloomBadge.displayName = "BloomBadge"
export default BloomBadge
@@ -0,0 +1,25 @@
import * as React from "react"
import type { IconProps } from "../types"
const Bloom = 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}
>
<path
fill="#ED6AFF"
fillRule="evenodd"
d="M7.5.75c.852 0 1.562.762 1.95 2.043 1.184-.631 2.223-.668 2.825-.066.601.601.563 1.642-.068 2.823 1.281.389 2.043 1.099 2.043 1.95s-.762 1.561-2.043 1.95c.63 1.181.668 2.224.067 2.824-.6.601-1.642.564-2.823-.067-.39 1.28-1.1 2.043-1.95 2.043-.852 0-1.562-.762-1.95-2.043-1.184.63-2.224.667-2.825.066s-.563-1.642.067-2.823C1.513 9.061.75 8.351.75 7.5s.763-1.561 2.043-1.95c-.63-1.181-.667-2.224-.066-2.824.6-.601 1.642-.564 2.823.067C5.94 1.513 6.65.75 7.5.75m2.11 5.063a1.266 1.266 0 1 0 0 2.53 1.266 1.266 0 0 0 0-2.53m-3.797-.844a1.266 1.266 0 1 0 0 2.531 1.266 1.266 0 0 0 0-2.531"
clipRule="evenodd"
/>
</svg>
)
}
)
Bloom.displayName = "Bloom"
export default Bloom
@@ -18,8 +18,8 @@ const BookOpen = React.forwardRef<SVGSVGElement, IconProps>(
strokeWidth={1.5}
clipPath="url(#a)"
>
<path d="M7.5 12.96a.9.9 0 0 0 .44-.118 5.6 5.6 0 0 1 2.791-.751 5.5 5.5 0 0 1 2.018.386c.576.227 1.194-.213 1.194-.833V3.571a.88.88 0 0 0-.431-.765 5.5 5.5 0 0 0-2.792-.767c-1.68 0-2.842.775-3.22 1.05" />
<path d="M7.5 12.96a.9.9 0 0 1-.44-.118 5.6 5.6 0 0 0-2.791-.751 5.5 5.5 0 0 0-2.018.386c-.576.227-1.195-.21-1.195-.829v-8.08c0-.315.161-.6.432-.76A5.5 5.5 0 0 1 4.28 2.04c1.68 0 2.842.775 3.22 1.05z" />
<path d="M7.5 12.879a.9.9 0 0 0 .44-.12 5.6 5.6 0 0 1 2.791-.75c.8 0 1.482.175 2.018.386.576.227 1.194-.213 1.194-.833V3.488a.88.88 0 0 0-.431-.764 5.5 5.5 0 0 0-2.792-.767c-1.68 0-2.842.775-3.22 1.05" />
<path d="M11.941 5.651a5.4 5.4 0 0 0-2.441 0M11.941 8.763a5.4 5.4 0 0 0-2.441 0M7.5 12.879a.9.9 0 0 1-.44-.12 5.6 5.6 0 0 0-2.791-.75 5.5 5.5 0 0 0-2.018.386c-.576.227-1.195-.21-1.195-.83v-8.08c0-.314.161-.6.432-.76a5.5 5.5 0 0 1 2.792-.767c1.68 0 2.842.775 3.22 1.05z" />
</g>
<defs>
<clipPath id="a">
@@ -0,0 +1,26 @@
import * as React from "react"
import type { IconProps } from "../types"
const ChartActivity = 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="M13.944 7.278h-2.041a.89.89 0 0 0-.837.587l-1.464 4.067a.332.332 0 0 1-.627-.007l-2.95-8.85a.332.332 0 0 0-.627-.007L3.934 7.135a.89.89 0 0 1-.837.587H1.056"
/>
</svg>
)
}
)
ChartActivity.displayName = "ChartActivity"
export default ChartActivity
@@ -16,7 +16,7 @@ const ChevronLeftMini = React.forwardRef<SVGSVGElement, IconProps>(
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="M9.722 13.055 4.167 7.5l5.555-5.556"
d="M9.25 3.25 5 7.5l4.25 4.25"
/>
</svg>
)
@@ -11,25 +11,13 @@ const ChevronLeft = React.forwardRef<SVGSVGElement, IconProps>(
ref={ref}
{...props}
>
<g clipPath="url(#a)">
<g clipPath="url(#b)">
<path
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="M9.722 13.055 4.167 7.5l5.555-5.556"
/>
</g>
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h15v15H0z" />
</clipPath>
<clipPath id="b">
<path fill="#fff" d="M-.5-.5h16v16h-16z" />
</clipPath>
</defs>
<path
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="M9.25 3.25 5 7.5l4.25 4.25"
/>
</svg>
)
}
@@ -16,7 +16,7 @@ const ChevronRightMini = React.forwardRef<SVGSVGElement, IconProps>(
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="M5.278 1.944 10.833 7.5l-5.555 5.555"
d="M5.75 11.75 10 7.5 5.75 3.25"
/>
</svg>
)
@@ -16,7 +16,7 @@ const ChevronRight = React.forwardRef<SVGSVGElement, IconProps>(
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="M5.278 1.944 10.833 7.5l-5.555 5.555"
d="M5.75 11.75 10 7.5 5.75 3.25"
/>
</svg>
)
@@ -0,0 +1,23 @@
import * as React from "react"
import type { IconProps } from "../types"
const CircleCheckSolid = 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 1.5c-3.309 0-6 2.691-6 6s2.691 6 6 6 6-2.691 6-6-2.691-6-6-6m2.853 4.45-3.003 4a.75.75 0 0 1-.546.298l-.054.002a.75.75 0 0 1-.53-.219l-1.503-1.5A.75.75 0 1 1 5.779 7.47l.892.89 2.484-3.31a.75.75 0 1 1 1.199.901z"
/>
</svg>
)
}
)
CircleCheckSolid.displayName = "CircleCheckSolid"
export default CircleCheckSolid
@@ -0,0 +1,23 @@
import * as React from "react"
import type { IconProps } from "../types"
const CircleInfoSolid = 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 1.5c-3.309 0-6 2.691-6 6s2.691 6 6 6 6-2.691 6-6-2.691-6-6-6m.75 8.5a.75.75 0 0 1-1.5 0V7a.75.75 0 0 1 1.5 0zM7.5 5.5a.877.877 0 0 1-.875-.875c0-.482.393-.875.875-.875s.875.393.875.875A.877.877 0 0 1 7.5 5.5"
/>
</svg>
)
}
)
CircleInfoSolid.displayName = "CircleInfoSolid"
export default CircleInfoSolid
@@ -1,6 +1,6 @@
import * as React from "react"
import type { IconProps } from "../types"
const CircleMinus = React.forwardRef<SVGSVGElement, IconProps>(
const CircleMinusSolid = React.forwardRef<SVGSVGElement, IconProps>(
({ color = "currentColor", ...props }, ref) => {
return (
<svg
@@ -19,5 +19,5 @@ const CircleMinus = React.forwardRef<SVGSVGElement, IconProps>(
)
}
)
CircleMinus.displayName = "CircleMinus"
export default CircleMinus
CircleMinusSolid.displayName = "CircleMinusSolid"
export default CircleMinusSolid
@@ -0,0 +1,23 @@
import * as React from "react"
import type { IconProps } from "../types"
const CircleWarningSolid = 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 1.5c-3.309 0-6 2.691-6 6s2.691 6 6 6 6-2.691 6-6-2.691-6-6-6M6.75 5a.75.75 0 0 1 1.5 0v3a.75.75 0 0 1-1.5 0zm.75 6.25a.877.877 0 0 1-.875-.875c0-.482.393-.875.875-.875s.875.393.875.875a.877.877 0 0 1-.875.875"
/>
</svg>
)
}
)
CircleWarningSolid.displayName = "CircleWarningSolid"
export default CircleWarningSolid
@@ -0,0 +1,23 @@
import * as React from "react"
import type { IconProps } from "../types"
const CircleXmarkSolid = 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 1.5c-3.309 0-6 2.691-6 6s2.691 6 6 6 6-2.691 6-6-2.691-6-6-6m2.53 7.47a.75.75 0 0 1-1.06 1.061L7.5 8.561l-1.47 1.47a.75.75 0 0 1-1.06 0 .75.75 0 0 1 0-1.061L6.44 7.5 4.97 6.03a.75.75 0 1 1 1.061-1.061l1.47 1.47 1.47-1.47a.75.75 0 1 1 1.061 1.061L8.562 7.5l1.47 1.47z"
/>
</svg>
)
}
)
CircleXmarkSolid.displayName = "CircleXmarkSolid"
export default CircleXmarkSolid
@@ -11,14 +11,10 @@ const ClockSolid = React.forwardRef<SVGSVGElement, IconProps>(
ref={ref}
{...props}
>
<g fill={color} clipPath="url(#a)">
<path d="M14.167 3.278a.66.66 0 0 1-.472-.196l-1.777-1.778a.667.667 0 0 1 .943-.943l1.778 1.778a.667.667 0 0 1-.472 1.139M.833 3.278a.667.667 0 0 1-.471-1.139L2.14.362a.667.667 0 1 1 .943.943L1.305 3.083c-.13.13-.3.196-.47.196zM12.342 11.399a6.2 6.2 0 0 0 1.38-3.899A6.23 6.23 0 0 0 7.5 1.278 6.23 6.23 0 0 0 1.278 7.5a6.2 6.2 0 0 0 1.38 3.899l-1.185 1.185a.667.667 0 0 0 .943.943L3.6 12.342a6.2 6.2 0 0 0 3.899 1.38 6.2 6.2 0 0 0 3.9-1.38l1.185 1.185a.665.665 0 0 0 .942 0 .667.667 0 0 0 0-.943zm-1.835-1.986a.665.665 0 0 1-.92.204L7.143 8.062a.67.67 0 0 1-.309-.563V4.61a.667.667 0 0 1 1.334 0v2.523l2.136 1.36c.31.197.4.609.203.92" />
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h15v15H0z" />
</clipPath>
</defs>
<path
fill={color}
d="M7.5 1.5c-3.309 0-6 2.691-6 6s2.691 6 6 6 6-2.691 6-6-2.691-6-6-6m2.564 8.244a.75.75 0 0 1-1.058.07l-2-1.75A.75.75 0 0 1 6.75 7.5V4.75a.75.75 0 0 1 1.5 0v2.41l1.744 1.526a.75.75 0 0 1 .07 1.058"
/>
</svg>
)
}
@@ -0,0 +1,33 @@
import * as React from "react"
import type { IconProps } from "../types"
const CodeBranch = 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 4.61v5.779M11.278 4.61v.89c0 .982-.796 1.778-1.778 1.778h-4c-.982 0-1.778.795-1.778 1.777M3.722 4.611a1.778 1.778 0 1 0 0-3.555 1.778 1.778 0 0 0 0 3.555"
/>
<path
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="M11.278 4.611a1.778 1.778 0 1 0 0-3.555 1.778 1.778 0 0 0 0 3.555M3.722 13.944a1.778 1.778 0 1 0 0-3.555 1.778 1.778 0 0 0 0 3.555"
/>
</svg>
)
}
)
CodeBranch.displayName = "CodeBranch"
export default CodeBranch
@@ -0,0 +1,40 @@
import * as React from "react"
import type { IconProps } from "../types"
const CodeCompare = 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.779c0 .982.796 1.777 1.778 1.777h3.111"
/>
<path
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="m5.722 10.167 2 2-2 2M12.167 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>
)
}
)
CodeCompare.displayName = "CodeCompare"
export default CodeCompare
@@ -0,0 +1,26 @@
import * as React from "react"
import type { IconProps } from "../types"
const CodeEditor = 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="M2.833 13.056h9.334c.982 0 1.777-.796 1.777-1.778V3.722c0-.982-.796-1.777-1.777-1.777H2.833c-.981 0-1.777.795-1.777 1.777v7.556c0 .982.796 1.778 1.777 1.778M4.167 1.944v11.111M9.056 8.611h2.666M7.722 6.39h2.445M7.722 10.834H9.5M6.389 4.167h1.333"
/>
</svg>
)
}
)
CodeEditor.displayName = "CodeEditor"
export default CodeEditor
@@ -0,0 +1,33 @@
import * as React from "react"
import type { IconProps } from "../types"
const Code = 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
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
clipPath="url(#a)"
>
<path d="m4.167 10.611-3.111-3.11 3.11-3.112M10.833 10.611l3.111-3.11-3.11-3.112M6.167 13.055l2.666-11.11" />
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h15v15H0z" />
</clipPath>
</defs>
</svg>
)
}
)
Code.displayName = "Code"
export default Code

Some files were not shown because too many files have changed in this diff Show More