-
{" "}
+
{" "}
{stock_location.name}
diff --git a/packages/design-system/icons/src/components/__tests__/ai-assistent-luminosity.spec.tsx b/packages/design-system/icons/src/components/__tests__/ai-assistent-luminosity.spec.tsx
new file mode 100644
index 0000000000..d163300a2a
--- /dev/null
+++ b/packages/design-system/icons/src/components/__tests__/ai-assistent-luminosity.spec.tsx
@@ -0,0 +1,17 @@
+ import * as React from "react"
+ import { cleanup, render, screen } from "@testing-library/react"
+
+ import AiAssistentLuminosity from "../ai-assistent-luminosity"
+
+ describe("AiAssistentLuminosity", () => {
+ it("should render the icon without errors", async () => {
+ render(
)
+
+
+ const svgElement = screen.getByTestId("icon")
+
+ expect(svgElement).toBeInTheDocument()
+
+ cleanup()
+ })
+ })
\ No newline at end of file
diff --git a/packages/design-system/icons/src/components/__tests__/arrrow-right.spec.tsx b/packages/design-system/icons/src/components/__tests__/arrow-right.spec.tsx
similarity index 69%
rename from packages/design-system/icons/src/components/__tests__/arrrow-right.spec.tsx
rename to packages/design-system/icons/src/components/__tests__/arrow-right.spec.tsx
index 73387d79e4..2e8bbf97c3 100644
--- a/packages/design-system/icons/src/components/__tests__/arrrow-right.spec.tsx
+++ b/packages/design-system/icons/src/components/__tests__/arrow-right.spec.tsx
@@ -1,11 +1,11 @@
import * as React from "react"
import { cleanup, render, screen } from "@testing-library/react"
- import ArrrowRight from "../arrrow-right"
+ import ArrowRight from "../arrow-right"
- describe("ArrrowRight", () => {
+ describe("ArrowRight", () => {
it("should render the icon without errors", async () => {
- render(
)
+ render(
)
const svgElement = screen.getByTestId("icon")
diff --git a/packages/design-system/icons/src/components/__tests__/arrows-reduce-diagonal.spec.tsx b/packages/design-system/icons/src/components/__tests__/arrows-reduce-diagonal.spec.tsx
new file mode 100644
index 0000000000..38781711fd
--- /dev/null
+++ b/packages/design-system/icons/src/components/__tests__/arrows-reduce-diagonal.spec.tsx
@@ -0,0 +1,17 @@
+ import * as React from "react"
+ import { cleanup, render, screen } from "@testing-library/react"
+
+ import ArrowsReduceDiagonal from "../arrows-reduce-diagonal"
+
+ describe("ArrowsReduceDiagonal", () => {
+ it("should render the icon without errors", async () => {
+ render(
)
+
+
+ const svgElement = screen.getByTestId("icon")
+
+ expect(svgElement).toBeInTheDocument()
+
+ cleanup()
+ })
+ })
\ No newline at end of file
diff --git a/packages/design-system/icons/src/components/__tests__/brackets.spec.tsx b/packages/design-system/icons/src/components/__tests__/brackets.spec.tsx
new file mode 100644
index 0000000000..f7134dc695
--- /dev/null
+++ b/packages/design-system/icons/src/components/__tests__/brackets.spec.tsx
@@ -0,0 +1,17 @@
+ import * as React from "react"
+ import { cleanup, render, screen } from "@testing-library/react"
+
+ import Brackets from "../brackets"
+
+ describe("Brackets", () => {
+ it("should render the icon without errors", async () => {
+ render(
)
+
+
+ const svgElement = screen.getByTestId("icon")
+
+ expect(svgElement).toBeInTheDocument()
+
+ cleanup()
+ })
+ })
\ No newline at end of file
diff --git a/packages/design-system/icons/src/components/__tests__/circle-minus.spec.tsx b/packages/design-system/icons/src/components/__tests__/circle-minus.spec.tsx
new file mode 100644
index 0000000000..3585698065
--- /dev/null
+++ b/packages/design-system/icons/src/components/__tests__/circle-minus.spec.tsx
@@ -0,0 +1,17 @@
+ import * as React from "react"
+ import { cleanup, render, screen } from "@testing-library/react"
+
+ import CircleMinus from "../circle-minus"
+
+ describe("CircleMinus", () => {
+ it("should render the icon without errors", async () => {
+ render(
)
+
+
+ const svgElement = screen.getByTestId("icon")
+
+ expect(svgElement).toBeInTheDocument()
+
+ cleanup()
+ })
+ })
\ No newline at end of file
diff --git a/packages/design-system/icons/src/components/__tests__/code-commit.spec.tsx b/packages/design-system/icons/src/components/__tests__/code-commit.spec.tsx
new file mode 100644
index 0000000000..b0decc2690
--- /dev/null
+++ b/packages/design-system/icons/src/components/__tests__/code-commit.spec.tsx
@@ -0,0 +1,17 @@
+ import * as React from "react"
+ import { cleanup, render, screen } from "@testing-library/react"
+
+ import CodeCommit from "../code-commit"
+
+ describe("CodeCommit", () => {
+ it("should render the icon without errors", async () => {
+ render(
)
+
+
+ const svgElement = screen.getByTestId("icon")
+
+ expect(svgElement).toBeInTheDocument()
+
+ cleanup()
+ })
+ })
\ No newline at end of file
diff --git a/packages/design-system/icons/src/components/__tests__/code-merge.spec.tsx b/packages/design-system/icons/src/components/__tests__/code-merge.spec.tsx
new file mode 100644
index 0000000000..4660d58761
--- /dev/null
+++ b/packages/design-system/icons/src/components/__tests__/code-merge.spec.tsx
@@ -0,0 +1,17 @@
+ import * as React from "react"
+ import { cleanup, render, screen } from "@testing-library/react"
+
+ import CodeMerge from "../code-merge"
+
+ describe("CodeMerge", () => {
+ it("should render the icon without errors", async () => {
+ render(
)
+
+
+ const svgElement = screen.getByTestId("icon")
+
+ expect(svgElement).toBeInTheDocument()
+
+ cleanup()
+ })
+ })
\ No newline at end of file
diff --git a/packages/design-system/icons/src/components/__tests__/drop-cap.spec.tsx b/packages/design-system/icons/src/components/__tests__/drop-cap.spec.tsx
new file mode 100644
index 0000000000..408cce8c5a
--- /dev/null
+++ b/packages/design-system/icons/src/components/__tests__/drop-cap.spec.tsx
@@ -0,0 +1,17 @@
+ import * as React from "react"
+ import { cleanup, render, screen } from "@testing-library/react"
+
+ import DropCap from "../drop-cap"
+
+ describe("DropCap", () => {
+ it("should render the icon without errors", async () => {
+ render(
)
+
+
+ const svgElement = screen.getByTestId("icon")
+
+ expect(svgElement).toBeInTheDocument()
+
+ cleanup()
+ })
+ })
\ No newline at end of file
diff --git a/packages/design-system/icons/src/components/__tests__/expand.spec.tsx b/packages/design-system/icons/src/components/__tests__/expand.spec.tsx
new file mode 100644
index 0000000000..2b90f466ee
--- /dev/null
+++ b/packages/design-system/icons/src/components/__tests__/expand.spec.tsx
@@ -0,0 +1,17 @@
+ import * as React from "react"
+ import { cleanup, render, screen } from "@testing-library/react"
+
+ import Expand from "../expand"
+
+ describe("Expand", () => {
+ it("should render the icon without errors", async () => {
+ render(
)
+
+
+ const svgElement = screen.getByTestId("icon")
+
+ expect(svgElement).toBeInTheDocument()
+
+ cleanup()
+ })
+ })
\ No newline at end of file
diff --git a/packages/design-system/icons/src/components/__tests__/party.spec.tsx b/packages/design-system/icons/src/components/__tests__/party.spec.tsx
new file mode 100644
index 0000000000..a9bcd63cb5
--- /dev/null
+++ b/packages/design-system/icons/src/components/__tests__/party.spec.tsx
@@ -0,0 +1,17 @@
+ import * as React from "react"
+ import { cleanup, render, screen } from "@testing-library/react"
+
+ import Party from "../party"
+
+ describe("Party", () => {
+ it("should render the icon without errors", async () => {
+ render(
)
+
+
+ const svgElement = screen.getByTestId("icon")
+
+ expect(svgElement).toBeInTheDocument()
+
+ cleanup()
+ })
+ })
\ No newline at end of file
diff --git a/packages/design-system/icons/src/components/__tests__/reduce.spec.tsx b/packages/design-system/icons/src/components/__tests__/reduce.spec.tsx
new file mode 100644
index 0000000000..ceef9f974d
--- /dev/null
+++ b/packages/design-system/icons/src/components/__tests__/reduce.spec.tsx
@@ -0,0 +1,17 @@
+ import * as React from "react"
+ import { cleanup, render, screen } from "@testing-library/react"
+
+ import Reduce from "../reduce"
+
+ describe("Reduce", () => {
+ it("should render the icon without errors", async () => {
+ render(
)
+
+
+ const svgElement = screen.getByTestId("icon")
+
+ expect(svgElement).toBeInTheDocument()
+
+ cleanup()
+ })
+ })
\ No newline at end of file
diff --git a/packages/design-system/icons/src/components/ai-assistent-luminosity.tsx b/packages/design-system/icons/src/components/ai-assistent-luminosity.tsx
new file mode 100644
index 0000000000..df030ca20f
--- /dev/null
+++ b/packages/design-system/icons/src/components/ai-assistent-luminosity.tsx
@@ -0,0 +1,382 @@
+import * as React from "react"
+import type { IconProps } from "../types"
+const AiAssistentLuminosity = React.forwardRef
(
+ ({ color = "currentColor", ...props }, ref) => {
+ return (
+
+ )
+ }
+)
+AiAssistentLuminosity.displayName = "AiAssistentLuminosity"
+export default AiAssistentLuminosity
diff --git a/packages/design-system/icons/src/components/ai-assistent.tsx b/packages/design-system/icons/src/components/ai-assistent.tsx
index b5f6ae411c..df875c55c3 100644
--- a/packages/design-system/icons/src/components/ai-assistent.tsx
+++ b/packages/design-system/icons/src/components/ai-assistent.tsx
@@ -5,15 +5,15 @@ const AiAssistent = React.forwardRef(
return (
)
diff --git a/packages/design-system/icons/src/components/square-grey-solid.tsx b/packages/design-system/icons/src/components/square-grey-solid.tsx
index 57447ddb2c..7975398e2f 100644
--- a/packages/design-system/icons/src/components/square-grey-solid.tsx
+++ b/packages/design-system/icons/src/components/square-grey-solid.tsx
@@ -11,7 +11,7 @@ const SquareGreySolid = React.forwardRef(
ref={ref}
{...props}
>
-
+
(
>
(
/>
(
return (
-
-
-
-
-
-
-
+
+
+
+
+
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
)
diff --git a/packages/design-system/icons/src/components/verified-badge.tsx b/packages/design-system/icons/src/components/verified-badge.tsx
index 4515c4d5f3..f860f6fdaa 100644
--- a/packages/design-system/icons/src/components/verified-badge.tsx
+++ b/packages/design-system/icons/src/components/verified-badge.tsx
@@ -5,104 +5,50 @@ const VerifiedBadge = React.forwardRef(
return (
-
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
)
diff --git a/packages/design-system/ui-preset/src/theme/extension/theme.ts b/packages/design-system/ui-preset/src/theme/extension/theme.ts
index 9a3bd6e17d..f0c6f2a3a0 100644
--- a/packages/design-system/ui-preset/src/theme/extension/theme.ts
+++ b/packages/design-system/ui-preset/src/theme/extension/theme.ts
@@ -301,6 +301,14 @@ export const theme = {
"muted": {
"DEFAULT": "var(--fg-muted)"
}
+ },
+ "alpha": {
+ "250": {
+ "DEFAULT": "var(--alpha-250)"
+ },
+ "400": {
+ "DEFAULT": "var(--alpha-400)"
+ }
}
}
},
@@ -325,9 +333,9 @@ export const theme = {
"elevation-flyout": "var(--elevation-flyout)",
"elevation-tooltip": "var(--elevation-tooltip)",
"elevation-modal": "var(--elevation-modal)",
- "elevation-commandbar": "var(--elevation-commandbar)",
"elevation-code-block": "var(--elevation-code-block)",
- "buttons-inverted": "var(--buttons-inverted)"
+ "buttons-inverted": "var(--buttons-inverted)",
+ "elevation-commandbar": "var(--elevation-commandbar)"
}
}
}
\ No newline at end of file
diff --git a/packages/design-system/ui-preset/src/theme/tokens/colors.ts b/packages/design-system/ui-preset/src/theme/tokens/colors.ts
index 280e3a883e..210b2769b0 100644
--- a/packages/design-system/ui-preset/src/theme/tokens/colors.ts
+++ b/packages/design-system/ui-preset/src/theme/tokens/colors.ts
@@ -87,7 +87,9 @@ export const colors = {
"--bg-field-component-hover": "rgba(39, 39, 42, 1)",
"--bg-subtle-pressed": "rgba(39, 39, 42, 1)",
"--button-transparent-pressed": "rgba(255, 255, 255, 0.12)",
- "--fg-muted": "rgba(113, 113, 122, 1)"
+ "--fg-muted": "rgba(113, 113, 122, 1)",
+ "--alpha-400": "rgba(255, 255, 255, 0.24)",
+ "--alpha-250": "rgba(255, 255, 255, 0.1)"
},
"light": {
"--tag-neutral-border": "rgba(228, 228, 231, 1)",
@@ -177,6 +179,8 @@ export const colors = {
"--contrast-border-top": "rgba(24, 24, 27, 1)",
"--bg-overlay": "rgba(24, 24, 27, 0.4)",
"--fg-disabled": "rgba(161, 161, 170, 1)",
- "--fg-muted": "rgba(113, 113, 122, 1)"
+ "--fg-muted": "rgba(113, 113, 122, 1)",
+ "--alpha-400": "rgba(24, 24, 27, 0.24)",
+ "--alpha-250": "rgba(24, 24, 27, 0.1)"
}
}
\ No newline at end of file
diff --git a/packages/design-system/ui-preset/src/theme/tokens/effects.ts b/packages/design-system/ui-preset/src/theme/tokens/effects.ts
index 1570f1c4d9..2ce5f5f457 100644
--- a/packages/design-system/ui-preset/src/theme/tokens/effects.ts
+++ b/packages/design-system/ui-preset/src/theme/tokens/effects.ts
@@ -11,7 +11,6 @@ export const effects = {
"--buttons-danger-focus": "0px -1px 0px 0px rgba(255, 255, 255, 0.16), 0px 0px 0px 1px rgba(255, 255, 255, 0.12), 0px 0px 0px 1px rgba(159, 18, 57, 1), 0px 0px 0px 2px rgba(24, 24, 27, 1), 0px 0px 0px 4px rgba(96, 165, 250, 0.8)",
"--details-switch-background": "0px 1px 1px 0px rgba(0, 0, 0, 0.1) inset, 0px 2px 4px 0px rgba(0, 0, 0, 0.1) inset, 0px 0px 0px 0.75px rgba(255, 255, 255, 0.12) inset, 0px 0px 8px 0px rgba(0, 0, 0, 0.1) inset",
"--buttons-inverted-focus": "0px -1px 0px 0px rgba(255, 255, 255, 0.12), 0px 0px 0px 1px rgba(255, 255, 255, 0.12), 0px 0px 0px 1px rgba(82, 82, 91, 1), 0px 0px 0px 2px rgba(24, 24, 27, 1), 0px 0px 0px 4px rgba(96, 165, 250, 0.8)",
- "--elevation-tooltip": "0px -1px 0px 0px rgba(255, 255, 255, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.1), 0px 2px 4px 0px rgba(0, 0, 0, 0.32), 0px 4px 8px 0px rgba(0, 0, 0, 0.32)",
"--elevation-flyout": "0px -1px 0px 0px rgba(255, 255, 255, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.1), 0px 4px 8px 0px rgba(0, 0, 0, 0.32), 0px 8px 16px 0px rgba(0, 0, 0, 0.32)",
"--borders-error": "0px 0px 0px 1px rgba(244, 63, 94, 1), 0px 0px 0px 3px rgba(225, 29, 72, 0.25)",
"--buttons-inverted": "0px -1px 0px 0px rgba(255, 255, 255, 0.12), 0px 0px 0px 1px rgba(255, 255, 255, 0.1), 0px 0px 0px 1px rgba(82, 82, 91, 1), 0px 0px 1px 1.5px rgba(0, 0, 0, 0.24), 0px 2px 2px 0px rgba(0, 0, 0, 0.24)",
@@ -21,8 +20,9 @@ export const effects = {
"--buttons-neutral": "0px -1px 0px 0px rgba(255, 255, 255, 0.06), 0px 0px 0px 1px rgba(255, 255, 255, 0.06), 0px 0px 0px 1px rgba(39, 39, 42, 1), 0px 0px 1px 1.5px rgba(0, 0, 0, 0.24), 0px 2px 2px 0px rgba(0, 0, 0, 0.24)",
"--elevation-code-block": "0px -1px 0px 0px rgba(255, 255, 255, 0.06), 0px 0px 0px 1px rgba(255, 255, 255, 0.06), 0px 0px 0px 1px rgba(39, 39, 42, 1), 0px 1px 2px 0px rgba(0, 0, 0, 0.32), 0px 2px 4px 0px rgba(0, 0, 0, 0.32)",
"--buttons-neutral-focus": "0px -1px 0px 0px rgba(255, 255, 255, 0.06), 0px 0px 0px 1px rgba(255, 255, 255, 0.06), 0px 0px 0px 1px rgba(39, 39, 42, 1), 0px 0px 0px 2px rgba(24, 24, 27, 1), 0px 0px 0px 4px rgba(96, 165, 250, 0.8)",
- "--elevation-commandbar": "0px 0px 0px 1px rgba(39, 39, 42, 1) inset, 0px 0px 0px 1.5px rgba(255, 255, 255, 0.1) inset, 0px 4px 8px 0px rgba(0, 0, 0, 0.32), 0px 8px 16px 0px rgba(0, 0, 0, 0.32)",
- "--elevation-modal": "0px 0px 0px 1px rgba(24, 24, 27, 1) inset, 0px 0px 0px 1.5px rgba(255, 255, 255, 0.06) inset, 0px -1px 0px 0px rgba(255, 255, 255, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.1), 0px 4px 8px 0px rgba(0, 0, 0, 0.32), 0px 8px 16px 0px rgba(0, 0, 0, 0.32)"
+ "--elevation-modal": "0px 0px 0px 1px rgba(24, 24, 27, 1) inset, 0px 0px 0px 1.5px rgba(255, 255, 255, 0.06) inset, 0px -1px 0px 0px rgba(255, 255, 255, 0.04), 0px 0px 0px 1px rgba(255, 255, 255, 0.1), 0px 4px 8px 0px rgba(0, 0, 0, 0.32), 0px 8px 16px 0px rgba(0, 0, 0, 0.32)",
+ "--elevation-commandbar": "0px 0px 0px 0.75px rgba(24, 24, 27, 1) inset, 0px 0px 0px 1.25px rgba(255, 255, 255, 0.1) inset, 0px 4px 8px 0px rgba(0, 0, 0, 0.32), 0px 8px 16px 0px rgba(0, 0, 0, 0.32)",
+ "--elevation-tooltip": "0px -1px 0px 0px rgba(255, 255, 255, 0.04), 0px 2px 4px 0px rgba(0, 0, 0, 0.32), 0px 0px 0px 1px rgba(255, 255, 255, 0.1), 0px 4px 8px 0px rgba(0, 0, 0, 0.32)"
},
"light": {
"--borders-interactive-with-active": "0px 0px 0px 1px rgba(59, 130, 246, 1), 0px 0px 0px 4px rgba(59, 130, 246, 0.2)",
@@ -45,8 +45,8 @@ export const effects = {
"--elevation-flyout": "0px 0px 0px 1px rgba(0, 0, 0, 0.08), 0px 4px 8px 0px rgba(0, 0, 0, 0.08), 0px 8px 16px 0px rgba(0, 0, 0, 0.08)",
"--elevation-tooltip": "0px 0px 0px 1px rgba(0, 0, 0, 0.08), 0px 2px 4px 0px rgba(0, 0, 0, 0.08), 0px 4px 8px 0px rgba(0, 0, 0, 0.08)",
"--elevation-modal": "0px 0px 0px 1px rgba(255, 255, 255, 1) inset, 0px 0px 0px 1.5px rgba(228, 228, 231, 0.6) inset, 0px 0px 0px 1px rgba(0, 0, 0, 0.08), 0px 8px 16px 0px rgba(0, 0, 0, 0.08), 0px 16px 32px 0px rgba(0, 0, 0, 0.08)",
- "--elevation-commandbar": "0px 0px 0px 1px rgba(39, 39, 42, 1) inset, 0px 0px 0px 1.5px rgba(255, 255, 255, 0.3) inset, 0px 8px 16px 0px rgba(0, 0, 0, 0.08), 0px 16px 32px 0px rgba(0, 0, 0, 0.08)",
"--elevation-code-block": "0px 0px 0px 1px rgba(24, 24, 27, 1) inset, 0px 0px 0px 1.5px rgba(255, 255, 255, 0.2) inset",
- "--buttons-inverted": "0px 0.75px 0px 0px rgba(255, 255, 255, 0.2) inset, 0px 1px 2px 0px rgba(0, 0, 0, 0.4), 0px 0px 0px 1px rgba(24, 24, 27, 1)"
+ "--buttons-inverted": "0px 0.75px 0px 0px rgba(255, 255, 255, 0.2) inset, 0px 1px 2px 0px rgba(0, 0, 0, 0.4), 0px 0px 0px 1px rgba(24, 24, 27, 1)",
+ "--elevation-commandbar": "0px 0px 0px 0.75px rgba(39, 39, 42, 1) inset, 0px 0px 0px 1.25px rgba(255, 255, 255, 0.3) inset, 0px 8px 16px 0px rgba(0, 0, 0, 0.08), 0px 16px 32px 0px rgba(0, 0, 0, 0.08)"
}
}
\ No newline at end of file
diff --git a/packages/design-system/ui-preset/src/theme/tokens/typography.ts b/packages/design-system/ui-preset/src/theme/tokens/typography.ts
index 708ac23df3..4f1b91875a 100644
--- a/packages/design-system/ui-preset/src/theme/tokens/typography.ts
+++ b/packages/design-system/ui-preset/src/theme/tokens/typography.ts
@@ -137,24 +137,12 @@ export const typography = {
"fontWeight": "500",
"fontFamily": "Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"
},
- ".code-label": {
- "fontSize": "0.75rem",
- "lineHeight": "1.25rem",
- "fontWeight": "400",
- "fontFamily": "Roboto Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"
- },
".h4-webs": {
"fontSize": "1.5rem",
"lineHeight": "1.875rem",
"fontWeight": "500",
"fontFamily": "Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"
},
- ".code-body": {
- "fontSize": "0.75rem",
- "lineHeight": "1.125rem",
- "fontWeight": "400",
- "fontFamily": "Roboto Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"
- },
".h2-core": {
"fontSize": "1rem",
"lineHeight": "1.5rem",
@@ -190,5 +178,17 @@ export const typography = {
"lineHeight": "1.5rem",
"fontWeight": "500",
"fontFamily": "Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"
+ },
+ ".code-body": {
+ "fontSize": "0.75rem",
+ "lineHeight": "1.125rem",
+ "fontWeight": "400",
+ "fontFamily": "Roboto Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"
+ },
+ ".code-label": {
+ "fontSize": "0.75rem",
+ "lineHeight": "0.9375rem",
+ "fontWeight": "500",
+ "fontFamily": "Roboto Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"
}
}
\ No newline at end of file