Prettier backfill

This commit is contained in:
Matt Rubens
2025-01-17 14:11:28 -05:00
parent 3bcb4ff8c5
commit 60a0a824b9
174 changed files with 15715 additions and 15428 deletions

View File

@@ -1,16 +1,15 @@
import React from 'react'
import React from "react"
export const CaretIcon = () => (
<svg
width="10"
height="10"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<polyline points="6 9 12 15 18 9" />
</svg>
)
<svg
width="10"
height="10"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round">
<polyline points="6 9 12 15 18 9" />
</svg>
)

View File

@@ -1,12 +1,10 @@
import * as React from 'react';
import * as React from "react"
interface CodeBlockProps {
children?: React.ReactNode;
language?: string;
children?: React.ReactNode
language?: string
}
const CodeBlock: React.FC<CodeBlockProps> = () => (
<div data-testid="mock-code-block">Mocked Code Block</div>
);
const CodeBlock: React.FC<CodeBlockProps> = () => <div data-testid="mock-code-block">Mocked Code Block</div>
export default CodeBlock;
export default CodeBlock

View File

@@ -1,12 +1,12 @@
import * as React from 'react';
import * as React from "react"
interface MarkdownBlockProps {
children?: React.ReactNode;
content?: string;
children?: React.ReactNode
content?: string
}
const MarkdownBlock: React.FC<MarkdownBlockProps> = ({ content }) => (
<div data-testid="mock-markdown-block">{content}</div>
);
<div data-testid="mock-markdown-block">{content}</div>
)
export default MarkdownBlock;
export default MarkdownBlock