diff --git a/src/shared/components/BlockEditor/inline/Toolbar.client.js b/src/shared/components/BlockEditor/inline/Toolbar.client.js
index cba1d56..16187d4 100644
--- a/src/shared/components/BlockEditor/inline/Toolbar.client.js
+++ b/src/shared/components/BlockEditor/inline/Toolbar.client.js
@@ -1,7 +1,7 @@
'use client';
import React, { useEffect, useLayoutEffect, useRef, useState } from 'react';
-import { TextColorIcon, HighlighterIcon, Link02Icon } from '@zen/core/shared/icons';
+import { TextColorIcon, HighlighterIcon, Link02Icon, CodeSimpleIcon } from '@zen/core/shared/icons';
import { INLINE_COLORS, INLINE_COLOR_KEYS, markKey } from './types.js';
// Toolbar flottant de formatage. Affiché tant qu'une sélection non-vide
@@ -20,7 +20,7 @@ const SIMPLE_BUTTONS = [
{ type: 'italic', label: 'I', title: 'Italique (Ctrl+I)', className: 'italic' },
{ type: 'underline', label: 'U', title: 'Soulignement (Ctrl+U)', className: 'underline' },
{ type: 'strike', label: 'S', title: 'Barré', className: 'line-through' },
- { type: 'code', label: '>', title: 'Code (Ctrl+E)', className: 'font-mono text-[11px]' },
+ { type: 'code', label: , title: 'Code (Ctrl+E)', className: '' },
];
export default function InlineToolbar({ rect, activeMarks, onToggleMark, onPinChange, usedColors }) {
diff --git a/src/shared/icons/index.js b/src/shared/icons/index.js
index 53a3e64..23bdfeb 100644
--- a/src/shared/icons/index.js
+++ b/src/shared/icons/index.js
@@ -685,4 +685,11 @@ export const Image01Icon = (props) => (
+);
+
+export const CodeSimpleIcon = (props) => (
+
);
\ No newline at end of file