Skip to content

Commit

Permalink
docs: remove remaining react imports. (kysely-org#1057)
Browse files Browse the repository at this point in the history
  • Loading branch information
igalklebanov authored and thecodrr committed Sep 3, 2024
1 parent 4df7097 commit 7ab875f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions site/src/components/Playground.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import * as React from 'react'
import { gray } from '@radix-ui/colors'

export function Playground({
code,
setupCode = exampleSetup,
Expand Down
3 changes: 2 additions & 1 deletion site/src/components/SectionFeatures/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type { SVGProps } from 'react'
import clsx from 'clsx'
import styles from './styles.module.css'
import { gray } from '@radix-ui/colors'
Expand Down Expand Up @@ -72,7 +73,7 @@ const FeatureList: FeatureItem[] = [
},
]

function TickIcon(props: React.SVGProps<SVGSVGElement>) {
function TickIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
Expand Down

0 comments on commit 7ab875f

Please sign in to comment.