-
-
Notifications
You must be signed in to change notification settings - Fork 574
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(docs) add SQLiteCloud to Thanks section
- Loading branch information
Showing
8 changed files
with
84 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
import SVGTheme from '@site/src/components/SVGTheme'; | ||
import Light from '@site/static/img/browserstack-light.svg'; | ||
import Dark from '@site/static/img/browserstack-dark.svg'; | ||
import styles from './styles.module.css'; | ||
|
||
type BrowserStackProps = { | ||
width: number; | ||
height: number; | ||
}; | ||
|
||
export default function BrowserStack({ width, height }: BrowserStackProps) { | ||
return ( | ||
<> | ||
<Light className={styles.light} width={width} height={height} role="img"/> | ||
<Dark className={styles.dark} width={width} height={height} role="img"/> | ||
</> | ||
); | ||
return <SVGTheme width={width} height={height} Dark={Dark} Light={Light} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import SVGTheme from '@site/src/components/SVGTheme'; | ||
import Light from '@site/static/img/sqlitecloud-light.svg'; | ||
import Dark from '@site/static/img/sqlitecloud-dark.svg'; | ||
|
||
type SQLiteCloudProps = { | ||
width: number; | ||
height: number; | ||
}; | ||
|
||
export default function SQLiteCloud({ width, height }: SQLiteCloudProps) { | ||
return <SVGTheme width={width} height={height} Dark={Dark} Light={Light} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import type { ComponentType, SVGProps } from 'react'; | ||
|
||
|
||
import styles from './styles.module.css'; | ||
|
||
type SVGComponent = ComponentType<SVGProps<SVGSVGElement>> & { title?: string; }; | ||
|
||
type SVGThemeProps = { | ||
width: number; | ||
height: number; | ||
Light: SVGComponent; | ||
Dark: SVGComponent; | ||
}; | ||
|
||
export default function SVGTheme({ width, height, Dark, Light }: SVGThemeProps) { | ||
return ( | ||
<> | ||
<Light className={styles.light} width={width} height={height} role="img"/> | ||
<Dark className={styles.dark} width={width} height={height} role="img"/> | ||
</> | ||
); | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.