-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d766fd9
commit e3ee934
Showing
13 changed files
with
17 additions
and
243 deletions.
There are no files selected for viewing
Binary file not shown.
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,8 +1,8 @@ | ||
import { DrawPreviewFunc } from "@framework/Preview"; | ||
import grid3Dpreview from "./3d-grid.png"; | ||
import previewImg from "./preview.webp"; | ||
|
||
export const preview: DrawPreviewFunc = function (width: number, height: number) { | ||
return ( | ||
<img src={grid3Dpreview} style={{width, height}} className="object-cover object-center" /> | ||
<img src={previewImg} style={{width, height}} className="object-cover object-center" /> | ||
); | ||
}; |
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { DrawPreviewFunc } from "@framework/Preview"; | ||
import previewSvg from "./intersection-preview.svg"; | ||
import previewImg from "./preview.svg"; | ||
|
||
export const preview: DrawPreviewFunc = function (width: number, height: number) { | ||
return <img src={previewSvg} style={{width, height}} /> | ||
return <img src={previewImg} style={{width, height}} /> | ||
}; |
Binary file not shown.
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,8 +1,8 @@ | ||
import { DrawPreviewFunc } from "@framework/Preview"; | ||
import grid3Dpreview from "./map.png"; | ||
import previewImg from "./preview.png"; | ||
|
||
export const preview: DrawPreviewFunc = function (width: number, height: number) { | ||
return ( | ||
<img src={grid3Dpreview} style={{width, height}} className="object-cover object-center" /> | ||
<img src={previewImg} style={{width, height}} className="object-cover object-center" /> | ||
); | ||
}; |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,6 +1,6 @@ | ||
import { DrawPreviewFunc } from "@framework/Preview"; | ||
import previewSvg from "./pvt-preview.svg"; | ||
import previewImg from "./preview.svg"; | ||
|
||
export const preview: DrawPreviewFunc = function (width: number, height: number) { | ||
return <img src={previewSvg} style={{width, height}} /> | ||
return <img src={previewImg} style={{width, height}} /> | ||
}; |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import { DrawPreviewFunc } from "@framework/Preview"; | ||
import previewSvg from "./well-completion-preview.svg"; | ||
|
||
import previewImg from "./preview.svg"; | ||
export const preview: DrawPreviewFunc = function (width: number, height: number) { | ||
return <img src={previewSvg} style={{width, height}} /> | ||
return <img src={previewImg} style={{width, height}} /> | ||
}; | ||
|