diff --git a/.changeset/happy-crews-arrive.md b/.changeset/happy-crews-arrive.md
new file mode 100644
index 00000000..2b1a8840
--- /dev/null
+++ b/.changeset/happy-crews-arrive.md
@@ -0,0 +1,5 @@
+---
+'@adyen/adyen-web': minor
+---
+
+Add support for the PayMe payment method.
diff --git a/packages/lib/src/components/PayMe/Instructions.scss b/packages/lib/src/components/PayMe/Instructions.scss
new file mode 100644
index 00000000..bbe5527c
--- /dev/null
+++ b/packages/lib/src/components/PayMe/Instructions.scss
@@ -0,0 +1,15 @@
+@import '../../style/index';
+
+.adyen-checkout-payme-instructions {
+ font-size: $font-size-small;
+ text-align: center;
+ color: #5c687c;
+ line-height: 20px;
+
+ &__steps {
+ list-style-position: inside;
+ padding-inline-start: 0;
+ margin: 16px 0;
+ padding-bottom: 8px;
+ }
+}
diff --git a/packages/lib/src/components/PayMe/Instructions.test.tsx b/packages/lib/src/components/PayMe/Instructions.test.tsx
new file mode 100644
index 00000000..dc46bf14
--- /dev/null
+++ b/packages/lib/src/components/PayMe/Instructions.test.tsx
@@ -0,0 +1,25 @@
+import { render, screen } from '@testing-library/preact';
+import { h } from 'preact';
+import Language from '../../language';
+import { Resources } from '../../core/Context/Resources';
+import CoreProvider from '../../core/Context/CoreProvider';
+import Instructions from './Instructions';
+
+describe('Instructions', () => {
+ const customRender = (ui: h.JSX.Element) => {
+ return render(
+ // @ts-ignore ignore
+