Skip to content

Commit 4f997b8

Browse files
committed
types-codemod
1 parent 069655a commit 4f997b8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+68
-35
lines changed

site/src/components/Conditionals/ChooseOne.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import {
33
type FC,
44
type PropsWithChildren,
55
type ReactNode,
6+
type JSX,
67
} from "react";
78

89
export interface CondProps {

site/src/components/Icons/CoderIcon.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import SvgIcon, { type SvgIconProps } from "@mui/material/SvgIcon";
2+
import type { JSX } from "react";
23

34
/**
45
* CoderIcon represents the cloud with brackets Coder brand icon. It does not

site/src/components/Icons/DockerIcon.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import SvgIcon, { type SvgIconProps } from "@mui/material/SvgIcon";
2+
import type { JSX } from "react";
23

34
export const DockerIcon = (props: SvgIconProps): JSX.Element => (
45
<SvgIcon {...props} viewBox="0 0 32 32">

site/src/components/Icons/EditSquare.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import SvgIcon, { type SvgIconProps } from "@mui/material/SvgIcon";
2+
import type { JSX } from "react";
23

34
export const EditSquare = (props: SvgIconProps): JSX.Element => (
45
<SvgIcon {...props} viewBox="0 0 48 48">

site/src/components/Icons/ErrorIcon.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import SvgIcon, { type SvgIconProps } from "@mui/material/SvgIcon";
2+
import type { JSX } from "react";
23

34
export const ErrorIcon = (props: SvgIconProps): JSX.Element => (
45
<SvgIcon {...props} viewBox="0 0 24 24">

site/src/components/Icons/FileCopyIcon.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import SvgIcon, { type SvgIconProps } from "@mui/material/SvgIcon";
2+
import type { JSX } from "react";
23

34
export const FileCopyIcon = (props: SvgIconProps): JSX.Element => (
45
<SvgIcon {...props} viewBox="0 0 20 20">

site/src/components/Icons/GitIcon.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import SvgIcon, { type SvgIconProps } from "@mui/material/SvgIcon";
2+
import type { JSX } from "react";
23

34
export const GitIcon = (props: SvgIconProps): JSX.Element => (
45
<SvgIcon {...props} viewBox="0 0 96 96">

site/src/components/Icons/GitlabIcon.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import SvgIcon, { type SvgIconProps } from "@mui/material/SvgIcon";
2+
import type { JSX } from "react";
23

34
export const GitlabIcon = (props: SvgIconProps): JSX.Element => (
45
<SvgIcon {...props} viewBox="0 0 194 186">

site/src/components/Icons/JetBrainsIcon.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import SvgIcon, { type SvgIconProps } from "@mui/material/SvgIcon";
2+
import type { JSX } from "react";
23

34
export const JetBrainsIcon = (props: SvgIconProps): JSX.Element => (
45
<SvgIcon {...props} viewBox="0 0 100 100">

site/src/components/Icons/MarkdownIcon.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import SvgIcon, { type SvgIconProps } from "@mui/material/SvgIcon";
2+
import type { JSX } from "react";
23

34
export const MarkdownIcon = (props: SvgIconProps): JSX.Element => (
45
<SvgIcon {...props} viewBox="0 0 32 32">

0 commit comments

Comments
 (0)