diff --git a/app/src/assets/images/labware/opentrons_evotip_short_adapter.png b/app/src/assets/images/labware/opentrons_evotip_short_adapter.png new file mode 100644 index 000000000000..88cd791a8f7c Binary files /dev/null and b/app/src/assets/images/labware/opentrons_evotip_short_adapter.png differ diff --git a/app/src/assets/images/labware/opentrons_evotip_tall_adapter.png b/app/src/assets/images/labware/opentrons_evotip_tall_adapter.png new file mode 100644 index 000000000000..06fe13c3f7c4 Binary files /dev/null and b/app/src/assets/images/labware/opentrons_evotip_tall_adapter.png differ diff --git a/app/src/organisms/Desktop/Labware/LabwareDetails/labware-images.ts b/app/src/organisms/Desktop/Labware/LabwareDetails/labware-images.ts index 4ec150339626..92e7408f5694 100644 --- a/app/src/organisms/Desktop/Labware/LabwareDetails/labware-images.ts +++ b/app/src/organisms/Desktop/Labware/LabwareDetails/labware-images.ts @@ -60,6 +60,8 @@ import flat_bottom_aluminum from '/app/assets/images/labware/flat_bottom_aluminu import opentrons_96_aluminumblock_side_view from '/app/assets/images/labware/opentrons_96_aluminumblock_side_view.jpg' import opentrons_96_deep_well_temp_mod_adapter_img from '/app/assets/images/labware/opentrons_96_deep_well_temp_mod_adapter.png' import opentrons_flex_deck_riser_img from '/app/assets/images/labware/opentrons_flex_deck_riser.png' +import opentrons_evotip_short_adapter_img from '/app/assets/images/labware/opentrons_evotip_short_adapter.png' +import opentrons_evotip_tall_adapter_img from '/app/assets/images/labware/opentrons_evotip_tall_adapter.png' export const labwareImages: Record = { agilent_1_reservoir_290ml: [agilent_1_reservoir_290ml_side_view], @@ -257,4 +259,6 @@ export const labwareImages: Record = { opentrons_96_deep_well_temp_mod_adapter_img, ], opentrons_flex_deck_riser: [opentrons_flex_deck_riser_img], + evotip_flex_tall_adapter: [opentrons_evotip_short_adapter_img], + evotip_flex_short_adapter: [opentrons_evotip_tall_adapter_img], } diff --git a/labware-library/src/components/labware-ui/labware-images.ts b/labware-library/src/components/labware-ui/labware-images.ts index 384dcfa0ad16..cbe30e0e5b2d 100644 --- a/labware-library/src/components/labware-ui/labware-images.ts +++ b/labware-library/src/components/labware-ui/labware-images.ts @@ -477,4 +477,12 @@ export const labwareImages: Record = { opentrons_flex_deck_riser: [ new URL('../../images/opentrons_flex_deck_riser.png', import.meta.url).href, ], + evotip_flex_tall_adapter: [ + new URL('../../images/opentrons_evotip_tall_adapter.png', import.meta.url) + .href, + ], + evotip_flex_short_adapter: [ + new URL('../../images/opentrons_evotip_short_adapter.png', import.meta.url) + .href, + ], } diff --git a/labware-library/src/images/opentrons_evotip_short_adapter.png b/labware-library/src/images/opentrons_evotip_short_adapter.png new file mode 100644 index 000000000000..88cd791a8f7c Binary files /dev/null and b/labware-library/src/images/opentrons_evotip_short_adapter.png differ diff --git a/labware-library/src/images/opentrons_evotip_tall_adapter.png b/labware-library/src/images/opentrons_evotip_tall_adapter.png new file mode 100644 index 000000000000..06fe13c3f7c4 Binary files /dev/null and b/labware-library/src/images/opentrons_evotip_tall_adapter.png differ